/* 기본 */
html,
body {
    font-size: var(--txt-md);
    line-height: 1.2;
    color: var(--c-black-1);
}

/* main-btn */
.main-btn {
  --clr: var(--main-color);
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem 0.7rem 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  font-size: var(--txt-lg);
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.main-btn:hover {
  background-color: #222;
}

.main-btn:hover .button__icon-wrapper {
  color: #222;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.main-btn:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.main-btn:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}





/* main */    
.sec_wrap {
    padding: 6rem 0;
    width: var(--web-width);
    margin: 0 auto;
}

.sec_wrap p {
    font-size: var(--txt-xl);
    color: var(--c-black-1);
}
.notice_wrap{
    background: #F2F6FA;
}
.notice_wrap .sec_wrap{
    padding: 6rem 0 3rem;
    min-height: 612px;
}
.notice_wrap .notice-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.notice_wrap .notice-header .notice-title{
    display: flex;
    flex-direction: column;
}
.notice_wrap .notice-header .notice-title .notice-sub{
    color: var(--main-color);
    font-size: var(--txt-2xl);
    font-weight: 600;
}
.notice_wrap .notice-header .notice-title .notice-main{
    font-size: var(--txt-6xl);
}
.notice_wrap .notice-header .notice-controls{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.notice_wrap .notice-header .notice-controls .tab-menu{
    display: flex;
    gap: 16px;
}
.notice_wrap .notice-header .notice-controls .tab-menu .tab-btn{
    cursor: pointer;
    position: relative;
    font-size: var(--txt-2xl);
    font-weight: 600;
    color: var(--c-black-4);
}
.notice_wrap .notice-header .notice-controls .tab-menu .tab-btn:not(:last-child)::after{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--c-black-4);
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 16px
}
.notice_wrap .notice-header .notice-controls .tab-menu .tab-btn.active{
    color: var(--main-color);
}

.notice_wrap .notice-content .tab-panel{
    display: none;
    gap: 2rem;
    margin-bottom: 2rem;
}
.notice_wrap .notice-content .tab-panel.active{
    display: flex;     

}
.notice_wrap .notice-content .card{
    flex: 0 0 calc(25% - 2rem);
    align-items: flex-start;
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 16px 0px rgba(65, 69, 72, 0.1);
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.notice_wrap .notice-content .card .card-category{
    display: inline-block;
    flex: 0 0 auto;
    background: var(--c-black-8);
    color: var(--c-black-3);
    padding: 6px 8px;
    border-radius: var(--radius-all-xs);
    font-size: var(--txt-lg);
    font-weight: 600;
}
.notice_wrap .notice-content .card .card-title{
    max-height: 62px;
    font-size: var(--txt-2xl);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    height: calc(1.4em*2);
}
.notice_wrap .notice-content .card .card-desc{
    font-size: var(--txt-lg);
    color: var(--c-black-2);
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    height: calc(1.4em*3);
}
.notice_wrap .notice-content .card .card-date{
    font-size: var(--txt-md);
    color: var(--c-black-4);
    margin-top: auto;
}
.notice_wrap .notice-marquee{
    max-width: 1920px;
    overflow: hidden;
    background: transparent;
}
.notice_wrap .notice-marquee .marquee{
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    margin-bottom: -20px;
}

.notice_wrap .notice-marquee .marquee span{
    display: inline-block;
    padding-right: 4rem;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}
.notice_wrap .notice-content .card:hover{
    transform: translateY(-6px);
    box-shadow: 0 4px 20px 0px rgba(65, 69, 72, 0.2);
    cursor: pointer;
}
.notice_wrap .notice-content .card:hover .card-title {
  text-decoration: underline;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.department_wrap{
    background: url(../images/main/department_bg.png) no-repeat;
    background-position: center;
    background-size: cover;
}
.department_wrap .sec_wrap{
    padding: 6rem 0 8rem;
}
.department_wrap .department-header{
    display: flex;
     align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}
.department_wrap .department-header .department-title{
    flex: 0 0 33%;
}
.department_wrap .department-header .department-title .department-sub{
    font-size: var(--txt-4xl);
    font-weight: 600;
}
.department_wrap .department-header .department-title .department-main{
    font-size: var(--txt-6xl);
    color: var(--main-color);
    font-weight: 600;
}
.department_wrap .department-header .department-desc{
    flex: 2 1 auto;
    font-size: var(--txt-2xl);
}
.department_wrap .department-content{
    display: flex;
    flex: wrap;
    gap: 2rem;
    overflow: visible;
}
.department_wrap .department-content .department-card{
    flex: 1 1 calc(33.333% - 2rem);
    min-height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    transition: transform 0.3s;
    position: relative;
}
.department_wrap .department-content .department-card:hover{

}

.department_wrap .department-content .department-card.logis {
  background-image: url('../images/main/department_logis.png');
}
.department_wrap .department-content .department-card.sde {
  background-image: url('../images/main/department_sde.png');
}
.department_wrap .department-content .department-card.ai {
  background-image: url('../images/main/department_ai.png');
}
.department_wrap .department-content .department-card .dept-tit{
    font-size: var(--txt-5xl);
    font-weight: 600;
}
.department_wrap .department-content .department-card .dept-subtit{
    font-size: var(--txt-lg);
    color: #fff;
    line-height: 1.4em;
    height: calc(1.4em*2);
}
.department_wrap .department-content .department-card .default-group{
    position: absolute;
    left: 3rem;
    right: 3rem;
     top: calc(100% - 8rem);
     transition:
    top 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: top, transform;
}
.department_wrap .department-content .department-card .pop-group{
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    right: 3rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.department_wrap .department-content .department-card:hover .default-group{
    top: 3rem;
}



.department_wrap .department-content .department-card:hover .pop-group{
    transform: translateY(0);
    opacity: 1;
}
.department_wrap .department-content .department-card .pop-group .dept-desc{
    font-size: var(--txt-md-1);
    color: #fff;
    line-height: 1.4em;
    height: calc(1.4em*3);
    margin-bottom: 2rem;
}

.department_wrap .department-content .department-card .dept-btns{
    display: flex;
    gap: 1.25rem;
}
.sub-btn{
    cursor: pointer;
    padding: 12px 0px;
    font-size: var(--txt-lg);
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
    width: 100%;
}
.sub-btn.fill.red{
    background: var(--main-color);
    color: #fff;
}
.sub-btn.fill.red:hover{
    background: #a01620;
}
.sub-btn.stroke.white{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.sub-btn.stroke.white:hover{
    background: rgba(255, 255, 255, 0.2);
}
.sub-btn.stroke.black{
    background: transparent;
    border: 1px solid var(--c-black-1);
    color: var(--c-black-1);
}
.sub-btn.stroke.black:hover{
    background: #f3f3f3fa;
}
.sub-btn.fill.black{
    background: var(--c-black-1);
    color: #fff;
}
.sub-btn.fill.black:hover{
    background: #000;
}
.partners_wrap{
    align-content: center;
}
.partners_wrap .sec_wrap{
    position: relative;
    height: 600px;
    padding: 6rem 0 0;
}

.partners_wrap .float-img{
    position: absolute;
    box-shadow: 0 4px 16px 0px rgba(65, 69, 72, 0.1);
    border: 8px solid #fff;
}
.partners_wrap .float-img img{
    display: block;
    width: 100%;
    height: auto;
}
.partners_wrap .float-img.img01{
    top: 60px; left: 60px; width: 480px;
}
.partners_wrap .float-img.img02{
    top: 280px; left: 0px; width: 370px;
}
.partners_wrap .float-img.img03{
    top: 80px; right: 200px; width: 330px;
}
.partners_wrap .float-img.img04{
    top: 250px; right: 0px; width: 390px; z-index: -1;
}
.partners_wrap .partners-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partners_wrap .partners-content .logo{
    display: block;
    margin: 0 auto 3rem;
    
}
.partners_wrap .partners-content .partners-tit{
    background: var(--main-color);
    padding: 6px;
    font-size: var(--txt-6xl);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.partners_wrap .partners-content .partners-subtit{
    font-size: var(--txt-6xl);
    font-weight: 600;
    margin-bottom: 4rem;
}
.partners_wrap .partners-content .btn-group{
    display: inline-flex;
    gap: 20px;
}
.partners_wrap .partners-content .btn-group .sub-btn{
    width: auto;
    min-width: 160px;
}
.partners_wrap .logo-marquee{
    overflow: hidden;
    display: flex;
    width: 100%;
    background-color: #fff;
}
.logo-marquee::-webkit-scrollbar {
    display: none; 
}
.partners_wrap .logo-marquee .logo-list{
    display: flex;
    gap: 4rem;
    margin-right: 4rem;
}
.partners_wrap .logo-marquee:hover .logo-list{
    animation-play-state: paused !important;
}
@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


.promo_wrap .sec_wrap{
    display: flex;
    gap: 50px;
}
.promo_wrap .section-title{
    font-size: var(--txt-5xl);
    font-weight: 600;
    margin-bottom: 2rem;
}
.promo_wrap .promo-video{
    flex: 0 0 calc(40% - 20px);
}
.promo_wrap .promo-video .video-wrapper{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}
.promo_wrap .promo-video .video-wrapper video{
    width: 100%;
    height: 100%;
}
.promo_wrap .promo-video .video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.promo_wrap .sns-section{
    flex: 0 0 calc(60% - 30px);
    overflow: hidden;
}
.promo_wrap .sns-section .sns-slider-wrapper{
    position: relative;
}
.promo_wrap .sns-section .sns-slider-wrapper .sns-slider{
    display: flex;
    gap: 24px;
    justify-content: space-between;
    transition: transform 0.3s ease;
}
.promo_wrap .sns-section .sns-slider-wrapper .sns-slider .sns-card{
    flex: 0 0 calc((100% - 50px) / 3);
    /* width: 295px;
    height: 295px; */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px 0px rgba(65, 69, 72, 0.1);
    cursor: pointer;
}

.promo_wrap .sns-section .sns-slider-wrapper .sns-slider .sns-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo_wrap .sns-section .sns-control{
    position: absolute;
    bottom: -3.6rem;
    right: 0;
    /* padding-top: 1rem; */
    display: flex;
    gap: 1rem;
}
.promo_wrap .sns-section .sns-control .sns-nav{
    width: 48px;
    height: 48px;
    border: 1px solid var(--c-black-6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo_wrap .sns-section .social-icons{
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}
.promo_wrap .sns-section .social-icons .social-icon{
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: var(--main-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.promo_wrap .sns-section .social-icons .social-icon:hover{
    background: #a01620;
}
.promo_wrap .sns-section .social-icons .social-icon img{
    width: 20px;
    height: auto;
}
.quick_wrap{
    background: url(../images/main/quick_wrap_bg.png) center/cover no-repeat;
}
.quick_wrap .sec_wrap{
    display: flex;
    position: relative;
    gap: 6rem;
    padding: 8rem 0 6rem;
    align-items: flex-end;
}
.quick_wrap .quick-left{
    flex: 0 0 calc(40% - 48px);
}
.quick_wrap .quick-left .quick-tit{
    font-size: 80px;
    color: var(--main-color);
    font-weight: 600;
    line-height: 1.0;
    margin-bottom: 20px;
}
.quick_wrap .quick-left .quick-subtit{
    font-size: var(--txt-6xl);
    font-weight: 600;
    margin-bottom: 20px;
}
.quick_wrap .quick-left .quick-desc{
    font-size: var(--txt-lg);
    color: var(--c-black-2);
    line-height: 150%;
    margin-bottom: 3rem;
    text-align: justify;
}
.quick_wrap .quick-right{
    flex: 0 0 calc(60% - 48px);
    z-index: 2;
    position: relative;
}
.quick_wrap .quick-right .icon-menu{
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}
.quick_wrap .quick-right .icon-menu .icon-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}
.quick_wrap .quick-right .icon-menu .icon-item .icon-circle{
    width: 128px;
    height: 128px;
    background-color: #fff;
    border: 1px solid var(--c-black-6);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick_wrap .quick-right .icon-menu .icon-item .icon-circle img{
    width: 54px;
    height: 54px;
}
.quick_wrap .quick-right .icon-menu .icon-item span{
    font-size: var(--txt-xl);
    font-weight: 600;
}
.quick_wrap .quick-right .card-list{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.quick_wrap .quick-right .card-list .card{
    position: relative;
    flex: 1;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px 0px rgba(65, 69, 72, 0.1);
    transition: transform 0.2s;
    padding: 36px;
    cursor: pointer;
}
.quick_wrap .quick-right .card-list .card:hover{
    transform: translateY(-6px);
}

.quick_wrap .quick-right .card-list .card.img01{
    background: url(../images/main/quick_card-img01.png);
    background-size: cover;
    background-position: center;
}
.quick_wrap .quick-right .card-list .card.img02{
    background: url(../images/main/quick_card-img02.png);
    background-size: cover;
    background-position: center;
}
.quick_wrap .quick-right .card-list .card.img03{
    background: url(../images/main/quick_card-img03.png);
    background-size: cover;
    background-position: center;
    color: #fff;
}
.quick_wrap .quick-right .card-list .card .card-content{
    width: 100%;
}
.quick_wrap .quick-right .card-list .card .card-content h4{
    font-size: var(--txt-2xl-1);
    font-weight: 600;
    margin-bottom: 4rem;
}
.circle-btn{
    position: absolute;
    bottom: 36px;
    left: 36px;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.card:hover .circle-btn{
    background: #a01620;
}
.circle-btn .plus-icon{
    transition: transform 0.3s ease;
}
.card:hover .circle-btn .plus-icon{
    transform: rotate(180deg);
}

.quick_wrap .quick-right::after{
    content: '';
    position: absolute;
    bottom: 11rem;
    right: 0;
    width: 277px;
    height: 340px;
    border-top: 20px solid var(--main-color);
    border-right: 20px solid var(--main-color);
    z-index: -1;
}
.quick_wrap .bottom-bar{
    width: 100%;
    height: 30px;
    background: var(--main-color);
}

/*서브 공통*/
.sub_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2.5rem auto 1rem;
}
.sub_tit h3 {
    font-size: var(--txt-2xl-1);
    font-weight: 600;
    color: var(--main-color);
    position: relative;
    padding-left: 1.6rem;
}
.sub_tit h3::before{
    content: "";
    position: absolute;
    top: 8px;
    left: 0px;
    background: url(../images/common/marker.svg) no-repeat;
    background-size: 16px;
    width: 16px;
    height: 16px;
}
.sub_tit h3 span{
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-black-3);
    margin-left: 0.5rem;
}
h4.mini_tit{
    font-size: var(--txt-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
ul.squre li{
    font-size: var(--txt-md-1);
    padding: 0px 0 0 12px;
    margin: 8px 0px 8px 0;
    position: relative;
    text-align: left;
}
ul.squre li:before{
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: 8px;
    left: 0;
    background: var(--c-black-3);
    border-radius: 50%;
}
ul.squre li span{
    color: var(--main-color);
}
/*----------101 사업단장 인사말-----------------*/
.greeting_wrap .greeting_top{
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}
.greeting_wrap .greeting_top .greeting_img_wrap,
.greeting_wrap .greeting_top .greeting_tit_wrap{
    width: 50%;
    position: relative;
}
.greeting_wrap .greeting_top .greeting_img_wrap::before{
    content: url(../images/sub/greeting_deco_corner.svg);
    width: 100px;
    height: auto;
    left: -16px;
    top: -16px;
    position: absolute;
}
.greeting_wrap .greeting_top .greeting_tit_wrap::after{
    content: url(../images/sub/greeting_deco_rec.svg);
    width: 48px;
    height: auto;
    right: 0;
    bottom: -48px;
    position: absolute;
    z-index: 0;
}
.greeting_wrap .greeting_top .greeting_img_wrap{
    box-shadow: 0 8px 24px rgba(66, 66, 66, 0.25);
}
.greeting_wrap .greeting_top .greeting_img_wrap img{
    width:100%;
    height: auto;
}
.greeting_wrap .greeting_top .greeting_tit_wrap{
    background-color: var(--c-black-8);
    height: 230px;
    align-content: center;
    padding-left: 3rem;
    position: relative;
    z-index: -1;
}
.greeting_wrap .greeting_top .greeting_tit_wrap::before{
    content: url(../images/sub/greeting_deco_rise.svg);
    transform: rotate(-90deg);
    position: absolute;
    align-self: anchor-center;
    left: -30px;
    top: 0;
    z-index: -1;
    scale: 1.3;
}
.greeting_wrap .greeting_top .greeting_tit_wrap h2{
    color: var(--main-color);
    font-size: var(--txt-2xl-2);
    line-height: 140%;
    font-weight: 600;
}
.greeting_wrap .greeting_top .greeting_tit_wrap p{
    font-size: var(--txt-xl-1);
    font-weight: 500;
}
.greeting_wrap .greeting_bottom .greeting_txt{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: var(--txt-md-1);
    color: var(--c-black-2);
    text-align: justify;
}
.greeting_wrap .greeting_bottom .greeting_name_wrap{
    margin-top: 1.5rem;
    text-align: right;
}
.greeting_wrap .greeting_bottom .greeting_name_wrap .greeting_position{
    font-size: var(--txt-xl);
    margin-right: 0.5rem;
    font-weight: 500;
}
.greeting_wrap .greeting_bottom .greeting_name_wrap .greeting_name{
    font-size: var(--txt-2xl);
    font-weight: 700;
    letter-spacing: 0.4rem;
    color: var(--main-color-2);
}

.gray_box.sm{
    padding: 1.3rem 2rem;  
}
.gray_box a{
    color: var(--main-color-2);
}

/*--------102 조기취업형 계약학과----------*/
.introduce_wrap .greeting_wrap{
    display: flex;
    gap: 50px;
}
.introduce_wrap .greeting_wrap .deco_cir{
    display: inline-block;         
    animation: deco-spin 10s linear infinite;
    float: right;
    transform-origin: center center;
}
@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.introduce_wrap .greeting_wrap .greeting_img{
    width: 100%;
    height: auto;
}
.introduce_wrap .greeting_wrap .greeting_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.introduce_wrap .greeting_wrap h1{
    position: relative;
    line-height: 150%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.introduce_wrap .greeting_wrap h1::after{
    content:'';
    width: 108%;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    left: -50px;
    bottom: 0;
    z-index: -1;
}
.introduce_wrap .greeting_wrap .greeting_bottom{
    align-content: center;
}

.gray_box{
    padding: 2rem;
    border: 1px solid var(--c-black-5);
    background-color: var(--c-black-9);
    border-radius: 8px;
    display:flex;
    flex-direction: column;
    gap: 0.5rem;
}
.gray_box p{
    font-size: var(--txt-md-1);
    line-height: 160%;
    text-align: justify;
}

.introduce_wrap .center_goal{
    display:flex;
    flex-direction:column;
    gap:2.4rem;
}

.introduce_wrap .center_goal .row{
  display:flex; gap:20px; align-items:stretch;
}
.introduce_wrap .center_goal .row .col-left{
    width:200px;
    display:flex;
    position: relative;
}

.introduce_wrap .center_goal .row .col-right{
    flex:1;
    min-width:0; 
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.introduce_wrap .center_goal .row .col-left .box{
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
  font-size: var(--txt-xl);
  border:1px solid var(--c-black-5);
  border-radius:8px;
  font-weight:600;
  text-align:center;
  padding:2rem 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
}

/* 1줄 오른쪽: 3 캡슐(같은 높이) */
.introduce_wrap .center_goal .row-top .col-right .pills{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  height:100%;
}
.introduce_wrap .center_goal .row-top .col-right .pill{
  border-radius:8px;
  color:#fff;
  font-weight:600;
  text-align:center;
  padding: 1rem;
  line-height:140%;
  font-size:var(--txt-xl-1);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 8px;
}
.introduce_wrap .center_goal .row-top .col-right .pill.red{background:var(--main-color);}
.introduce_wrap .center_goal .row-top .col-right .pill.blue{background:var(--main-color-2);}
.introduce_wrap .center_goal .row-top .col-right .pill.teal{background:var(--main-color-3);}

.introduce_wrap .center_goal .row-middle{
    position: relative;
}
.introduce_wrap .center_goal .row-middle::before{
    content:url('../images/sub/introduce_deco_gray_arrow.png');
    position: absolute;
    top: -37px;
    left: 4%;
    z-index: -10;
}
.introduce_wrap .center_goal .row-middle .col-right .goal{
  display:grid;
  grid-template-columns:100px 1fr; ;
}
.introduce_wrap .center_goal .row-middle .col-right .kpi{
  display:grid;
  grid-template-columns:100px 1fr;
}
.introduce_wrap .center_goal .row-middle .col-right .label{
  background:#fff;
  border:1px solid var(--c-black-5);
  border-right: 0;
  border-top-left-radius:8px;
  border-bottom-left-radius: 8px;
    display:flex;
    align-items:center;
    justify-content:center;
  font-weight:500;
}
.introduce_wrap .center_goal .row-middle .col-right .panel{
  background:var(--c-black-8);
  border:1px solid var(--c-black-5);
  padding: 1.3rem;
  font-weight:400;
    font-size: var(--txt-xl);
    text-align: center;
    line-height: 140%;
}
.introduce_wrap .center_goal .row-middle .col-right .table{
  background:#fff;
  border:1px solid var(--c-black-5);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow:hidden;
}
.introduce_wrap .center_goal .row-middle .col-right .kpi-grid{
  display:grid; grid-template-columns:1fr 1fr 1fr;
}
.introduce_wrap .center_goal .row-middle .col-right .kpi-head{
  background:var(--c-black-8);
  border-bottom:1px solid var(--c-black-5);
  color:var(--c-black-3);
  font-weight:500;
  font-size:var(--txt-md-1);
  text-align:center;
  padding:12px 10px;
}
.introduce_wrap .center_goal .row-middle .col-right .kpi-cell{
  text-align:center;
  padding:1.5rem;
}
.introduce_wrap .center_goal .row-middle .col-right .value{
  font-weight:700;
  font-size:var(--txt-4xl);
  letter-spacing:-.02em;
}
.introduce_wrap .center_goal .row-middle .col-right .unit{
  margin-left:6px;
  font-size: var(--txt-md-1);
  font-weight: 500;
  color: var(--c-black-3);
}

.introduce_wrap .center_goal .row-bottom .col-right .actions{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px; height:100%;
}
.introduce_wrap .center_goal .row-bottom .col-right .action{
  border-radius:8px;
  padding:22px 14px;
  text-align:center;
  font-weight:600;
  background:#fff;
  border:1px solid currentColor;
    font-size:var(--txt-xl);
  display:flex;
  align-items:center;
  justify-content:center;
}
.introduce_wrap .center_goal .row-bottom .col-right .action.red{color:var(--main-color);}
.introduce_wrap .center_goal .row-bottom .col-right .action.blue{color:var(--main-color-2);}
.introduce_wrap .center_goal .row-bottom .col-right .action.teal{color:var(--main-color-3);}

.rise_goal .header{
    background-color: var(--main-color);
    text-align: center;
    position: relative;
    height: 120px;
    align-content: center;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}
.rise_goal .header img{
    /* scale: 1.6; */
    width: 150px;
}
.rise_goal .header::after{
    content: url(../images/sub/introduce_hoseo_logo.svg);
    position: absolute;
    right: -40px;
    align-self: center;
    scale: 0.8;
}
.rise_goal .dot_area {
  display: flex;
  align-items: center;
  position: relative;
  width: calc(6px + 10px * 3 + 6px * 3);
  height: 6px;
  margin: auto;
}
.rise_goal .dot_area::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color-2);
  /* 첫 번째 점 + 나머지 점들은 box-shadow로 복제 */
  box-shadow:
    16px 0 0 var(--main-color-2),
    32px 0 0 var(--main-color-2),
    48px 0 0 var(--main-color-2);
}

.rise_goal .row{
  display:flex;
  gap:24px;
  align-items:stretch; /* equal heights */
  margin-bottom:24px;
}

/* Left label box: width can vary */
.rise_goal .label-box{
  flex:0 0 200px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--c-black-9);
  border:1px solid var(--c-black-6);
  border-radius:8px;
  padding:12px 18px;
}

.rise_goal .label-box .label{
  font-size:var(--txt-xl);
  font-weight:600;
}

/* Right content box grows */
.rise_goal .content-box{
  flex:1 1 auto;
  background:#fff;
  border:1px solid var(--c-black-6);
  border-radius:10px;
  padding:18px;
  display:flex;
  align-items:center;   /* centers the content vertically within equal height */
}

.rise_goal .content-box.pink{
    background-color: #FAEDEE;
}
/* Slogan */
.rise_goal .slogan{
  margin:0 auto;
  font-size:var(--txt-2xl);
  font-weight:700;
  color:var(--main-color);
  text-align: center;
}

/* ===== Qualitative targets (three circles) ===== */
.rise_goal .targets{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  width:100%;
  align-items:center;
  justify-content:flex-start;
}

.rise_goal .target{
  flex:0 1 300px;
  display:flex;
  justify-content:center;
}

.rise_goal .ring{
  width:290px;
  height:290px;
  border-radius:50%;
  background-color: var(--c-black-7);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.rise_goal .ring::after{
  content:attr(data-step);
  position:absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius:50%;
  background:var(--main-color);
  color:#fff;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: var(--txt-md-1);
}

.rise_goal .inner{
  width:256px;
  height:256px;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 1px var(--c-black-5);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:12px;
}

.rise_goal .icon{
  width:64px;
  height:64px;
}
.rise_goal .icon img{
    width: 100%;
    height: auto;
}
.rise_goal h4{
    font-size: var(--txt-lg);
    font-weight: 500;
    line-height: 140%;
}

/* ===== Quantitative KPIs ===== */
.rise_goal .kpi-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
}

.rise_goal .kpi-box {
  background: var(--c-black-8);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  border: 1px solid var(--c-black-6);
  overflow: hidden;
}

.rise_goal .kpi-item {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
}
.rise_goal .kpi-item + .kpi-item {
  border-left: 1px dashed var(--c-black-5);
}

.rise_goal .kpi-label {
  font-size: var(--txt-md);
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 130%;
}
.rise_goal .kpi-number {
  font-size: var(--txt-sm-1);
  font-weight: 500;
  margin-bottom: 4px;
    color: var(--c-black-2);
}
.rise_goal .kpi-number .num{
    font-size: var(--txt-2xl-1);
    font-weight: 700;
    color: var(--c-black-1);
    margin-right: 4px;
}

/* ===== Strategy list ===== */
.rise_goal .strategy{
  display:grid;
  gap:10px;
  width:100%;
}

.rise_goal .strategy .item{
  background:var(--c-black-8);
  border-radius:8px;
  padding:14px 24px;
  border: 1px solid var(--c-black-6);
  font-weight:500;
  font-size: var(--txt-lg);
  line-height: 140%;
}




/*----------103 조직도-----------------*/
.org-wrap{
    text-align: center;
    position: relative;
}
.org-wrap .org-cont{
    position: relative;
}
.org-wrap .org-header{
    position: relative;
    justify-items: center;
    
}
.org-wrap .org-header h1{
    width: 200px;
    height: 60px;
    align-content: center;
    background-color: var(--c-black-1);
    color: #fff;
    font-size: var(--txt-2xl-2);
    font-weight: 500;
    margin: 0 auto;
}
.org-wrap .org-cont .org-sec-1{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1300px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.org-wrap .org-cont .org-sec-1 .org-left{
    width: 50%;
    position: relative;
}
.org-wrap .org-cont .org-sec-1 .org-left::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 24px;
    width: 80%;
    height: 1px;
    background-color: var(--c-black-5);
    z-index: -1;
}
.org-wrap .org-cont .org-sec-1 .org-right::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 24px;
    width: 100%;
    height: 1px;
    background-color: var(--c-black-5);
    z-index: -1;
}

.org-wrap .org-cont .org-sec-2 .org-left::before{
    content: "";
    display: block;
    position: absolute;
    right: -200px;
    top: 30px;
    width: 80%;
    height: 1px;
    background-color: var(--c-black-5);
    z-index: -1;
}
.org-wrap .org-cont .org-sec-1 .org-box{
    width: 250px;
    background-color: var(--c-black-3);
    border: 1px solid var(--c-black-3);

}
.org-wrap .org-cont .org-box h1 span{
    color: #fff;
    font-size: var(--txt-xl-1);
     font-weight: 500;
     line-height: 180%;
}
.org-wrap .org-cont .org-box .org-list{
    background-color: #fff;
}
.org-wrap .org-cont .org-list ul{
    padding: 1rem;
    display:flex;
    flex-direction: column;
    gap: 4px;
    font-size: var(--txt-lg);
}
.org-wrap .org-cont .org-box .org-list li{
    padding: 1rem;
    background-color: #fff;
    border: 1px solid var(--c-black-5);
}
.org-wrap .org-cont .org-box .org-list li.org_no_line{
    background-color: var(--c-black-7);
    border: none;
}
.org-wrap .org-cont .org-sec-1 .org-right{
    width: 50%;
    position: relative;
    display: flex;
    justify-content: end;
}
.org-wrap .org-cont .org-sec-2{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    padding-top: 200px;
    justify-content: center;
}
.org-wrap .org-cont .org-sec-2::before {
    content: "";
    display: block;
    position: absolute;
    left: 49.99%;
    width: 1px;
    height: 107.5%;
    background-color: var(--c-black-5);
    top: 0;
    z-index: -1;
}
.org-wrap .org-cont .org-sec-2 .org-rise-tit{
    width: 200px;
    height: 60px;
    background-color: var(--main-color);
    align-content: center;
}
.org-wrap .org-cont .org-sec-2 .org-rise-tit img {
    height: 42px;
}
.org-wrap .org-cont .org-sec-2 .org-left{
    position: relative;
    margin-top: 150px;
    background: #fff;
}
.org-wrap .org-cont .org-sec-2 .org-right{
    position: relative;
    margin-top: 150px;
}
.org-wrap .org-cont .org-sec-2 .org-list{
    width: 250px;
    border: 1px solid var(--c-black-3);
}
.org-wrap .org-cont .org-sec-2 .org-list li,
.org-wrap .org-cont .org-gray-tit{
    padding: 1rem;
    color: var(--c-black-2);
    font-size: var(--txt-lg);
    font-weight: 500;
    background-color: var(--c-black-7);
}
.org-wrap .org-cont .org-sec-2 .org-gray-tit{
    width: 248px;
}

.org-cont .org-sec-3{
    position: relative;
    padding-top: 100px;
}
.org-cont .org-sec-3::before{
    content: '';
    width: 81%;
    height: 1px;
    background-color: var(--c-black-5);
    position: absolute;
    top: 50px;
    left: 9.5%;
    justify-self: anchor-center;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap{
    display: flex;
    gap: 1rem;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap .box{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 1px 1px var(--c-black-5);
    text-align: left;
    flex: 1;
    position: relative;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap .box:before{
    content: '';
    width: 1px;
    height: 50px;
    background-color: var(--c-black-5);
    position: absolute;
    top: -50px;
    left: 50%;
    justify-self: anchor-center;
}

.org-wrap .org-cont .org-sec-3 .box .org-gray-tit{
    box-shadow: 0 0 1px 1px var(--c-black-5);
    text-align: center;
}
.org-wrap .org-cont .org-list.dot li{
    position: relative;
    padding-left: 0.8rem;
    font-size: var(--txt-md-1);
    line-height: 140%;
}
.org-wrap .org-cont .org-list.dot li:before{
    content:'';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--c-black-3);
    position: absolute;
    top: 9px;
    left: 0;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap .box.highlight{
    background-color: #E0EBF9;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap .box.highlight .org-gray-tit{
    background-color: var(--main-color-2);
    color: #fff;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap .box .dot{
    padding-left: 0;
}
.org-wrap .org-cont .org-sec-3 .org-sec-3-wrap .box .dot::before{
    display: none;
}

/*-------104 찾아오시는길----*/
.embed-container{ position: relative; padding-bottom: 54%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* 상단 헤더 */
.location_wrap .ci-head {
  background: var(--c-black-8);
  border: 1px solid var(--c-black-6);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  padding: 2rem;
}

.location_wrap .ci-head .ci-head__left {
  position: relative;
  padding-right: 2rem;
}

.location_wrap .ci-head .ci-head__left::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 0;
  border-right: 1px dashed var(--c-black-5);
}

.location_wrap .ci-head .ci-title {
  margin: 0;
  font-size: var(--txt-4xl);
  line-height: 1.25;
  font-weight: 400;
}

.location_wrap .ci-head .ci-head__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.location_wrap .ci-head .ci-head__right .ci-addr {
  font-size: var(--txt-lg);
  font-weight: 400;
}

.location_wrap .ci-head .ci-head__right .ci-tel {
  font-size: var(--txt-lg);
  font-weight: 400;
}

.location_wrap .ci-head .ci-head__right .ci-tel .divider {
  margin-left: 26px;
}

/* 하단 카드 영역 */
.location_wrap .ci-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location_wrap .ci-cards .ci-card {
  background: #fff;
  border: 1px solid var(--c-black-6);
  border-radius: 14px;
  padding: 2rem;
  font-size: var(--txt-md);
}

.location_wrap .ci-cards .ci-card .ci-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.location_wrap .ci-cards .ci-card .ci-card__head .ci-ico {
  width: 40px;
  height: auto;
}

.location_wrap .ci-cards .ci-card .ci-card__head .ci-card__title {
  font-size: var(--txt-xl);
  font-weight: 600;
  color: var(--c-black-1);
}

.location_wrap .ci-cards .ci-card .ci-card__dash {
  border-bottom: 2px dashed var(--c-black-6);
  margin: 1.5rem 0;
}

.location_wrap .ci-cards .ci-card .ci-card__body {
  font-size: var(--txt-md);
  color: var(--c-black-2);
  line-height: 1.75;
  font-weight: 400;
}

.location_wrap .ci-cards .ci-card .ci-card__body .ci-ul.two-col li {
    display: inline-flex;
    width: 100%;
    position: relative;
    padding-left: 8px;
}
.location_wrap .ci-cards .ci-card .ci-card__body .ci-ul.two-col li::before{
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--c-black-4);
    left: 0;
    top: 10px;
}



/* 셔틀버스 카드 */
.location_wrap .ci-cards .ci-card.ci-card--shuttle .ci-card__body {
  display: grid;
  grid-template-columns: 90px 1fr;
  row-gap: 1rem;
}

.location_wrap .ci-cards .ci-card.ci-card--shuttle .ci-card__body .ci-subtit {
  grid-column: 1/2;
  margin: 0;
  font-size: var(--txt-md-1);
  font-weight: 600;
}

.location_wrap .ci-cards .ci-card.ci-card--shuttle .ci-card__body .ci-para {
  grid-column: 2/3;
  margin: 0;
  color: var(--c-black-2);
  font-weight: 400;
}

.location_wrap .ci-cards .ci-card.ci-card--shuttle .ci-card__body .ci-ol {
  grid-column: 2/3;
  margin: 0;
  color: var(--c-black-2);
  font-weight: 400;
}

.location_wrap .ci-cards .ci-card.ci-card--shuttle .ci-card__body .ci-ol li{
    list-style: auto;
    margin-left: 1rem;
}


/* 통학버스 카드 */
.location_wrap .ci-cards .ci-card.ci-card .ci-card__body .ci-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 16px;
}


.location_wrap .ci-cards .ci-card.ci-card .ci-card__body .ci-note {
  margin-top: 12px;
  color: var(--c-black-4);
  font-size: var(--txt-sm-1);
  font-weight: 400;
}


/*------과정안내 - 목적 및 배경-----*/
.background_hero_wrap {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
}

.background_hero_wrap .layer {
    position: absolute;
}

.background_hero_wrap .layer.layer-text {
    z-index: 1;
    width: clamp(320px, 90%, 1180px);
    right: 0;
    bottom: 0;
    background: var(--c-black-8);
    padding: 4rem 2rem 3rem 10rem;
}
.background_hero_wrap .layer.layer-text p {
    font-size: var(--txt-lg);
    color: var(--c-black-2);
    line-height: 150%;
    text-align: justify;
}

.background_hero_wrap .layer.layer-red {
    z-index: 2;
    left: 0;
    bottom: 46px;
    width: 255px;
    height: 400px;
    background: var(--main-color);
    overflow: hidden;
}
.background_hero_wrap .layer.layer-red::before {
    content: "";
    position: absolute;
    left: -173px;
    top: -118px;
    width: 200px;
    height: 200px;
    border: 80px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.background_hero_wrap .seal {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 2rem;
    top: 2rem;
}
.background_hero_wrap .title {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    font-size: var(--txt-2xl-2);
    font-weight: 600;
    color: #fff;
}

.background_hero_wrap .layer.layer-photo {
    z-index: 3;
    right: 0;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
}
.background_hero_wrap .layer.layer-photo .photo_frame {
    width: clamp(320px, 100%, 1087px);
    aspect-ratio: 1087/245;
    box-shadow: 0 18px 32px rgba(0,0,0,.12);
}
.background_hero_wrap .layer.layer-photo .photo_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.year_grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:1rem;
  align-items:start;
}

.year_head{
  grid-row:1;
  color:#fff;
  font-weight:600;
  text-align:center;
  padding:16px 10px;
  border-radius:8px;
  font-size: var(--txt-xl-1);
  box-shadow:0 10px 24px rgba(0,0,0,.08) inset;
}
.year_head[data-theme="teal"]{background:var(--main-color-3)}
.year_head[data-theme="blue"]{background:var(--main-color-2)}

.year_body{
  background:#E6F6F7;
  border-radius:8px;
  color: var(--main-color-3);
  padding:16px;
  box-shadow:0 10px 20px rgba(0,0,0,.04) inset;
}
.body-1{grid-row:2;grid-column:1}
.term{
    margin:0 0 12px;
    color:var(--main-color-3);
    font-weight:500;
    text-align:center;
    font-size: var(--txt-lg);
}
.credit{
  background:#fff;
  border:1px solid var(--c-black-6);
  border-radius:8px;
  padding:12px 16px;
  text-align:center;
  font-weight:600;
  color:var(--main-color-3);
  font-size: var(--txt-xl);
}

.year_merge{
  grid-row:2;
  grid-column:2 / 4;
  min-width:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 20px;
  padding:16px;
  background:#E7EEF6;
  border-radius:8px;
  box-shadow:0 10px 20px rgba(0,0,0,.04) inset;
}
.year_merge .col .term{
    margin:0;
    text-align:center;
    font-weight:500;
    color:var(--main-color-2);

}
.year_merge .credit{
    grid-column: 1 / -1; 
    justify-self: center;
    width: 100%;
    color: var(--main-color-2);
}

.bottom_row{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  background:var(--c-black-8);
  border-radius:12px;
  padding:16px;
}


.left_box{
  display:flex;
  align-items: center;
  gap: 1rem;
}
.pill_card{
  background:#fff;
  border:1px solid var(--c-black-6);
  border-radius:8px;
  padding:16px 24px;
  font-weight:600;
  color:var(--c-black-2);
  width: 382px;
  text-align: center;
}
.ring_badge{
  width:94px;
  height:94px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  line-height:1.2;
  border:1px solid var(--main-color);
  color:var(--main-color);
  background:#F9E8E9;
  font-weight:700;

}


.schedule_card{
  background:var(--c-black-9);
  border:1px solid var(--c-black-6);
  border-radius:8px;overflow:hidden
}


.schedule_card .thead{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  background:#f3f5f7;
  border-bottom:1px dashed var(--c-black-5);
}
.schedule_card .thead span{
  padding:12px 10px;
  text-align:center;
  font-weight:400;
  color:var(--c-black-3);
}

.schedule_card .thead .fri{
     background: linear-gradient(to right, transparent 40%, #0D50A0 40%);
     color: #fff;
}
.schedule_card .thead .sat{
    background:var(--main-color-2);
    color:#fff;
}

/* 내용 행 */
.schedule_card .tbody{
  display:grid;grid-template-columns:repeat(6,1fr);
}
.schedule_card .tbody span{
  padding:16px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:var(--c-black-2);
}
.schedule_card .tbody .work{
  grid-column:1 / 5;
  background:#fff;
  border-right:1px dashed var(--c-black-5);
}
.schedule_card .tbody .classnote{
  grid-column:5 / 7;
  background:#fff;
}


/*--------기대효과------*/
.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Effect Card */
.effect-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.effect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

/* .effect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00A5AB, #0D50A0);
} */

/* Icon Container */
.icon-container {
    text-align: center;
    margin-bottom: 24px;
}

.icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.icon-economy {
    background: linear-gradient(135deg, #00A5AB, #00C4CC);
}

.icon-growth {
    background: linear-gradient(135deg, #0D50A0, #1976D2);
}

.icon-cooperation {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}



.content h2 {
    font-size: var(--txt-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.content p {
    font-size: var(--txt-md-1);
    line-height: 140%;
    color: var(--c-black-3);
    text-align: center;
}


/*------301 수시/정시 모집공고-----------*/
.recruitment_wrap{
    display: none;
}
table .bullets.col2 ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem; 
}

table .bullets li{
    position: relative;
    padding-left: 12px;
    margin: 2px 0;
    color: var(--c-black-2);
    text-align: left;
}
table .bullets li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--c-black-2);
    transform: translateY(-50%);
}
.color_box.pink{
    padding: 1rem;
    background: #FBF3F4;
    border-radius: 0;
    border: none;
}


/*------302 학사일정-----------*/
.schedule_wrap .schedule_box_group{
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--c-black-1);
}
.schedule_wrap .schedule_box_group .schedule_box{
    display: flex;
}
.schedule_wrap .schedule_box_group .schedule_month{
    width: 20%;
    text-align: center;
    align-content: center;
    background: var(--c-black-7);
    font-size: var(--txt-xl);
    font-weight: 600;
    border-bottom: 1px solid var(--c-black-5);
}
.schedule_wrap .schedule_box_group .schedule_desc_wrap{
    width: 80%;
}
.schedule_wrap .schedule_box_group .schedule_desc_wrap .schedule_desc{
    display: flex;
    border-bottom: 1px solid var(--c-black-5);
    padding: 1rem 0 1rem 2rem;
    line-height: 140%;
    font-size: var(--txt-md-1);
    color: var(--c-black-2);
}
.schedule_wrap .schedule_box_group .schedule_desc_wrap .date{
    color: var(--main-color-2);
    width: 300px;
    font-weight: 500;
}
.board_top_k select{
    width: 200px !important;
}

/*-----과정안내 - 조기취업형 계약학과 - 학과소개 - 물류유통학과-----*/
.sub_container .department_wrap{
    background: none;
}
.department_wrap .hero{
    display: flex;
    gap:50px;
    align-items:stretch;
    background:#fff;
    border-radius:16px;
    box-shadow:0 4px 24px rgba(0,0,0,.08);
    position: relative;
}
.department_wrap .hero .hero__left{
    width: 60%;
    padding: 4rem 0 4rem 4rem;
}
.department_wrap .hero__title{
    display:flex;
    align-items:center;
    gap: 1rem;
    margin-bottom:2rem;
}
.department_wrap .hero__desc{
    text-align: justify;
}
.department_wrap .title__icon img{
  width:56px;
  height:auto;
}

.department_wrap .title__text h1{
    font-size:var(--txt-4xl);
    font-weight:700;
}
.department_wrap .title__text .sub{
    margin-top: 4px;
    color:var(--c-black-4);
    font-size:var(--txt-lg);
    background: none;
}
.department_wrap .hero__desc p{
    margin: 8px 0;
    color: var(--c-black-2);
    line-height: 150%;
    font-size: var(--txt-lg);
}
.department_wrap .hero__right{
    width: 40%;
    position: relative;
    place-items: center;
    height: auto;
}
.department_wrap .hero__right .hero_img{
    position: absolute;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    border-radius: 16px;
    box-shadow:0 4px 24px rgba(0,0,0,.08);
    top: -28px;
}
.department_wrap .hero__right .hero_img.logis{
    background: url(../images/sub/logis_img.png) no-repeat;
    background-size: cover;
}
.department_wrap .hero__right .hero_img.sde{
    background: url(../images/sub/sde_img.png) no-repeat;
    background-size: cover;
}
.department_wrap .hero__right .hero_img.ai{
    background: url(../images/sub/ai_img.png) no-repeat;
    background-size: cover;
}

.department_wrap .hero_img::before{
    content: url(../images/sub/logis_deco.svg);
    position: absolute;
    left: -70px;
    bottom: 70px;
}

.department_wrap .features{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:24px;
}
.department_wrap .features .feat{
    background-color: #fff;
    border: 1px solid var(--c-black-5);
    border-radius: 16px;
    padding: 2rem;
}
.department_wrap .features .feat .feat__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.department_wrap .features .feat .feat__head .feat__icon img{
    width: auto;
    height: 40px;
}
.department_wrap .features .feat .feat__head .feat__no{
    font-size: var(--txt-2xl);
    color: var(--c-black-5);
    font-weight: 600;
}
.department_wrap .features .feat h3{
    font-size: var(--txt-2xl);
    font-weight: 700;
    margin-bottom: 8px;
}
.department_wrap .features .feat p{
    font-size: var(--txt-md);
    color: var(--c-black-2);
}
.department_wrap .chips{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.department_wrap .chips .chip{
    background-color: #fff;
    border: 1px solid var(--c-black-5);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: var(--txt-md-1);
}
.department_wrap .curri_wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.department_wrap .curri_wrap .curri_item{
    display: flex;
    flex-direction: column;
}
.department_wrap .curri_wrap .curri_item .curri_head{
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    text-align: center;
    padding: 0.8rem;
}
.department_wrap .curri_wrap .curri_item .curri_head.first{
    background-color: var(--main-color-3);
}
.department_wrap .curri_wrap .curri_item .curri_head.second{
    background-color: var(--main-color-2);
}
.department_wrap .curri_wrap .curri_item .curri_head.third{
    background-color: #5DBCD9;
}
.department_wrap .curri_wrap .curri_item .curri_head h4{
    font-size: var(--txt-xl);
    color: #fff;
    font-weight: 500;
}
.department_wrap .curri_wrap .curri_item .curri_body{
    border-bottom-left-radius: 16px;   
    border-bottom-right-radius: 16px;
    border: 1px solid var(--c-black-5);
    padding: 1rem 2rem;
    height: -webkit-fill-available;
}
.department_wrap .curri_wrap .curri_item .curri_body p{
    position: relative;
    padding-left: 12px;
    color: var(--c-black-2);
    line-height: 160%;
} 
.department_wrap .curri_wrap .curri_item .curri_body p::before{
    content:'';
    width: 3px;
    height: 3px;
    background: var(--c-black-2);
    left: 0px;
    top: 9px;
    position: absolute;
}
/*-------기자재대여신청------*/
#search_pop {
    width: 688px;
    /* height: 917px; */
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0 auto;
    overflow-y: auto;
    position: fixed;
    top: 0;
    margin-top: 2%;
    left: 0;
    right: 0;
    z-index: 99999999999999;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3); 
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
}
#search_pop .tit {
    overflow: hidden;
    font-size: 1.375rem;
    font-weight: 600;
    text-align: center;
}
#search_pop .tit span {
    float: right;
    cursor: pointer;
    font-size: 1.125rem;
}
#search_pop .t_search {
    display: flex;
}
#search_pop .t_search_wrap {
    width: 100%;
    background: #f1f1f1;
    padding: 20px;
    margin: 1rem 0;
}
#search_pop .t_search_wrap .top_wrap {
    display: flex;
    gap: 0.5rem;
}
#search_pop .t_search_wrap .top_wrap .view_sel {
    width: 25%;
}
#search_pop .t_search_wrap .top_wrap .view_sel select {
    width: 100%;
}
#search_pop .t_search_wrap .search_wrap {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
#search_pop .t_search_wrap .search_wrap .search_group {
    width: 100%;
}
#search_pop .t_search_wrap .search_wrap .search_group input#schText {
    width: calc(100% - 40px);
}
#search_pop .t_search_wrap .t_search input.sell_form {
    padding: 0px 15px;
    width: calc(100% - 29px);
    height: 40px;
    border: 1px solid #ccc;
    border-right: none;
    color: #999;
    box-sizing: border-box;
}
#search_pop .t_search span.img {
    width: auto;
    height: 40px;
    border: 1px solid #ccc;
    border-left: none;
    box-sizing: border-box;
    float: right;
    text-align: center;
    padding-top: 8px;
    background: #fff;
    padding-right: 10px;
}
#search_pop .t_search_wrap p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.925rem;
}
#search_pop .btn_search {
    float: left;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-block;
    cursor: pointer;
    padding: 4px 0 0 7px;
    box-sizing: border-box;
    margin-top: 17px;
}
#search_pop .btn_search:hover {
    background-color: #000;
}
#search_pop .product_list {gap: 20px;}
#search_pop .product_list .product {
}
#search_pop .product_list .product .txt h6 {
    font-size: 0.825rem;
    margin-bottom: 0.125rem;
    word-break: break-all;
}
#search_pop .product_list .product .txt h7 {
    max-height: 18px;
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h7 span {
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h8 {
    max-height: 18px;
    font-size: 0.825rem;
}
#search_pop .product_list .product .txt h8 span {
    font-size: 0.825rem;
}
#search_pop .product_list .product .img img {
    max-width: 70%;
    max-height: 70%;
}
#search_pop .product_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 30px 0;
}
#search_pop .product_btn .btn_normal_b{
    background: #757575;
    color: #fff;
    border: none;
}
#search_pop .product_btn input.btn {height: 38px; font-size: 1rem; line-height: 140%;}
.product_list_check{
    padding: 0.5rem;
}
.product_list .new_product{
    position: relative;
    border-top: none;
}
.product_list .new_product tr th{
    border-right: 1px solid var(--c-black-5);
    font-size: 1.075rem;
    text-shadow: #000 0px 0px 0.75px;
    padding: 14px;
    font-weight: 400;
}
.product_list .new_product tr td .input_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_list .new_product tr td .input_wrap input[type="checkbox"]{
    display: none;
}
.product_list .new_product tr td .input_wrap input[type="checkbox"] + label{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
}

.equipment_100{
    width: 100%;
}

/* 참여기업 현황 - 인쇄 */
/* ---------------------- window popup ------------------------*/
#window_popup {padding: 20px; width: 820px; min-width: 820px; max-width: 820px; max-height: 740px;}
#window_popup table {width: 780px;}
#window_popup table .no_bold{width: 100%;}
#window_popup table td {padding: 8px 10px !important;}
.print_top {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--c-black-4);
    padding-bottom: 0.5em;
}
.print_top .left {
    display: flex;
    gap: 1em;
}
.print_top .left .img {
    max-width: 70px;
}
.print_top .left .img img{
    width: 180px;
}
.print_top .left .txt {
    display: flex;
    align-items: flex-end;
}
.print_top .left .txt p {
    font-size: 12px;
}
.print_top .right {
    display: flex;
    align-items: flex-end;
    font-size: 36px;
}
.print_center {
    margin: 20px 0;
    min-height: 65vh;
}
.print_center h6 {
    font-size: 20px;
    margin-bottom: 16px;
}
.print_center .wrap {
    display: flex;
    flex-wrap: wrap;
}
.pop_print .print_tb tr {
    border-bottom: 1px solid var(--c-black-5);
    border-left: 1px solid var(--c-black-5);
}
.pop_print .print_tb th {
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid var(--c-black-5);
}
.pop_print .print_tb td {
    border-right: 1px solid var(--c-black-5);
    font-size: 14px;
}
.print_bottom .bottom_txt {
    margin: 30px 0;
}
.print_bottom .bottom_txt p {
    font-size: 12px;
}
.print_bottom .bottom_txt p span {font-weight: 600;font-size: 14px;}
.window_popup_print{
    padding-bottom: 2rem;
}
.window_popup_print .btn{
    width: auto !important;
}
.window_popup_print .btn.btn_normal{
    background: var(--c-black-3);
}


/*---------교육시설 - 캠퍼스 소개-----------*/
.tab_link.tab_campus{
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 0 auto 2rem;
  justify-content: center;
}
.campus_wrap{
    display: none;
}

.campus_wrap .campus_img{
	text-align: center;
}
.campus_wrap .campus_img img{
    width: 100%;
    min-width: 600px;
}
.campus_detail_grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.campus_detail_grid .campus_detail{
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--c-black-5);
    padding: 1rem;
    border-radius: 8px;

}
.campus_detail .head{
    display: flex;
    gap: 12px;
    cursor: pointer;
}
.campus_detail .head .num{
    font-weight: 600;
}
.campus_detail .head h4{
    font-weight: 400;
}
.campus_detail .floor_list{
    display: none;
}
#campusLayer .layer__floors{
    display: flex;          
  flex-direction: column;
  border: 1px solid var(--c-black-5);
}
#campusLayer .layer__floors .floor_item{
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--c-black-5);
  padding: 8px 12px;
  box-sizing: border-box;
}
#campusLayer .layer__floors .floor_item:first-child{
  border-top: none;
}
#campusLayer .layer__floors .floor_item .badge{
  color: var(--main-color);
}
#campusLayer .layer__floors .floor_item .room{
  color: var(--c-black-3);
}

#campusLayer[hidden] { display: none; }
#campusLayer {
   position: fixed;
  inset: 0;
  height: 100dvh;
  display: grid;       
  place-items: center;
  z-index: 9999;
}
.layer__dim { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.layer__panel {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 560px;
  width: 92%;
  max-height: min(80vh, calc(100vh - 32px));
  overflow: auto;
-webkit-overflow-scrolling: touch;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.layer__close {
    position: absolute;
    top: 20px; right:20px;
    border: 0;
    background: #eee;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
.layer__head .layer__num{
    font-weight: 600;
}
.layer__head .layer__title{
    font-weight: 400;
    margin-top: 4px;
    font-size: var(--txt-lg);
}


/*----------mypage-----------------*/
.mypage_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2rem;
}

.mypage_list .list {
    width: calc((100% - 4rem) /3);
    border: 1px #ddd solid;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-radius: 10px;
    /* margin-bottom: 1.5rem; */
    /*margin-right: 1.875rem;*/
    background: #f6f6f6;
}
.mypage_list .list.bg_no {
    padding: 1rem 0;
    background: none;
    border: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
}
.mypage_list .list .tit {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--main-color);
}
.mypage_list .list ul {
    margin-top: 1rem;
}
.mypage_list .list ul li {
    border-top: 1px #ddd dotted;
    padding: 10px;
    position: relative;
}
.mypage_list .list ul li:after {
    font-family: 'Material Icons Outlined';
    content: 'chevron_right';
    font-size: 1rem;
    position: absolute;
    top: 10px;
    right: 0;
    color: #999;    
}
.mypage_list .list ul li a:hover {
    color: var(--main-color);
    font-weight: 600;
}
.mypage_list .list.info {
    /* width: calc((100% - 2rem) /2); */
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.mypage_list .list.info .button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.7rem;
}
.mypage_list .list.info .button a{
    font-size: 1rem;
    color: var(--main-color-2);
    font-weight: 600;
    border: 1px solid var(--main-color-2);
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.mypage_list .list.info .button a:hover{
    background: var(--main-color-2);
    color: #fff;
}
.mypage_list .list.info .tit {
    color: #fff;
    background: var(--main-color);
    padding: 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    max-height: 60px;
}
.mypage_list .list.info ul {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px #ddd solid;
    width: 100%;
    margin: 1rem;
}
.mypage_list .list.info  ul li {
}
.mypage_list .list.info  ul li::after {
    display: none;
}
.mypage_list .list.info  ul li:first-child {
    border-top: none;
}
.mypage_list .list.info  ul li span {
    float: right;
    font-weight: 500;
    max-width: 280px;
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;
}
.mypage_list .info_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 1rem;
    width: 100%;
}
.mypage_list .user_photo {
    width: 200px;
    text-align: center;
}

.mypage_list .list .user_info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background: #f6f6f6;
}
.mypage_list .list .user_info .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    width: 100%;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.mypage_list .list .user_info .top .txt p{
    font-size: 1.125rem;
}
.mypage_list .list .user_info .top .txt p span{
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--main-color-2);
}

.mypage_list .list .user_info .info {
    text-align: center;
    height: 50%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1.5rem;
}
.mypage_list .list .user_info .info .no {
    font-size: var(--txt-3xl);
    font-weight: 600;
    color: var(--main-color);
}
.mypage_list .list .user_info .info .info_tit {
    font-size: var(--txt-md);
    font-weight: 500;
    width: 100%;
    background: var(--sub-color-3);
    border-radius: var(--radius-all-md);
    padding: 0.5rem;
}
.sub_tit .myspan{
    font-size: 1.375rem;
    color: #333;
    font-weight: 500;
    margin-left: 0;
}
.my_cont{
    margin-top: 3rem;
}
.my_flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.my_flex .form-control{
    max-width: 180px;
}

button.subpage_btn{
    font-size: var(--txt-lg);
    background: var(--main-color);
    padding: 0.5rem 1.5rem;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}
button.subpage_btn:hover{
    box-shadow: 0 0 0 1px var(--main-color) inset;
    background: #fff;
    color: var(--main-color);
}
button.subpage_btn.black{
    background: var(--c-black-2);
    color: #fff;
}
button.subpage_btn.black:hover{
    box-shadow: 0 0 0 1px var(--c-black-2) inset;
    background: #fff;
    color: var(--c-black-22);
}
span.st-pend{
    color: var(--main-color);
    font-weight: 600;
}
span.st-done{
    color: var(--c-black-4);
    font-weight: 600;
}

/*----------참여기업 모집-----------------*/
.goal_top {
    display: grid;
    grid-template-columns: 150px 1fr; /* 왼쪽 고정 200px, 오른쪽 남는 공간 */
    align-items: stretch; /* 세로 정렬 */
    /* padding: 1.5rem; */
    border-radius: 8px;    
}
.goal_top .img_area {
    background: var(--main-color);
    padding: 2rem;
    border-top-left-radius: 8px;    
    border-bottom-left-radius: 8px;    
    /* margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px #ffffff50 solid; */
}
.goal_top .txt_area {
    background: var(--c-black-8);
    padding: 2rem;
    font-size: var(--txt-2xl-2);
    border-top-right-radius: 8px;    
    border-bottom-right-radius: 8px; 
    /* color: #fff; */
    font-weight: 300;
    /* margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px #ffffff50 solid; */
}
.goal_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.goal_item {
    border: 1px solid var(--c-black-5);
    border-radius: 16px;
    padding: 1rem;
}

.goal_tit {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 1rem;
}
.goal_tit h3 {
    font-size: var(--txt-2xl);
    font-weight: 700;
}
.goal_num {
    font-size: var(--txt-2xl);
    color: var(--c-black-5);
    font-weight: 600;
}
.goal_text {
    background: var(--c-black-8);
    border-radius: 10px;
    padding: 20px;
    height: calc(100% - 50px);
}
.goal_text p {
    font-size: var(--txt-md);
    color: var(--c-black-2);
    margin-bottom: 1rem;
}
.goal_text .tag {
    display: block;
    width: 110px;
    padding: 5px 5px;
    background: var(--main-color-3);
    font-size: var(--txt-md);
    color: #fff;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 10px;
    margin-left: -20px;
}
.goal_text .tag.other {
    background: var(--main-color-2);
}
/* 참여 신청 절차 */
.recruit_tab{
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}
.recruit_tab:before {
    content: '';
    display: block;
    width: 85%;
    height: 1px;
    background-color: #FAEDEE;
    position: absolute;
    top: 15%;
    left: 50%;
	transform: translateX(-50%);
    z-index: 1;
}
.recruit_tab li{
    width: calc((100% - 0rem) /7);
    text-align:center;
    font-size: var(--txt-xl);
    font-weight: 600;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;

}
.recruit_tab li span {
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: #FAEDEE;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--txt-lg);
    font-weight: 600;
    color: var(--main-color);

}
/*----------------------------------------1800--------------------------------*/

@media screen and (max-width:1800px) {
   .footer .wrapper{
        width: 100%;
    }


}
/*----------------------------------------1600--------------------------------*/

@media screen and (max-width:1600px) {
    .sec_wrap{
        width: 100%;
        padding: 4rem 2rem !important;
    }
    .quick_wrap .quick-right::after{
        bottom: 9rem;
    }
    .quick_wrap .sec_wrap{
        gap: 4rem;
    }
    .quick_wrap .quick-left{
        flex: 0 0 calc(40% - 32px);
    }
    .quick_wrap .quick-right{
        flex: 0 0 calc(60% - 32px);
    }
    .quick_wrap .quick-right .icon-menu .icon-item .icon-circle{
        width: 118px;
        height: 118px;
    }
    .partners_wrap .float-img.img01{
        top: 30px;
        left: 110px;
        width: 430px;;
    }
    .partners_wrap .float-img.img02{
        top: 280px; left: 50px; width: 320px;
    }
    .partners_wrap .float-img.img03{
        top: 50px; right: 230px; width: 280px;
    }
    .partners_wrap .float-img.img04{
        top: 220px; right: 50px; width: 340px; z-index: -1;
    }
}


/*----------------------------------------1500--------------------------------*/

@media screen and (max-width:1500px) {
    .quick_wrap .sec_wrap{
        gap: 3rem;
    }
    .quick_wrap .quick-left{
        flex: 0 0 calc(40% - 21px);
    }
    .quick_wrap .quick-right{
        flex: 0 0 calc(60% - 21px);
    }
    .quick_wrap .quick-right .icon-menu{
        gap: 2rem;
    }
    .quick_wrap .quick-right .card-list{
        gap: 1.5rem;
    }

}

/*----------------------------------------1400--------------------------------*/

@media screen and (max-width:1400px) {
    /* 메인 */
    .sec_wrap{
        width: 100%;
        padding: 6rem 2rem;
    }
    .partners_wrap .float-img.img01{
        width: 380px;
    }
    .partners_wrap .float-img.img02{
        top: 220px;
        width: 290px;
    }
    .partners_wrap .float-img.img03{
        right: 250px;
        width: 250px;
    }
    .partners_wrap .float-img.img04{
        top: 168px;
        right: 80px;
        width: 310px;
    }
    .quick_wrap .quick-left .quick-tit{
        font-size: 70px;
    }
    .quick_wrap .quick-left .quick-subtit{
        font-size: 44px;
    }
    .department_wrap .department-content .department-card .default-group{
        left: 2.2rem;
        bottom: 2.2rem;
        right: 2.2rem;
    }
    .department_wrap .department-content .department-card .pop-group{
        left: 2.2rem;
        bottom: 2.2rem;
        right: 2.2rem;
    }
    .department_wrap .department-content .department-card:hover .default-group{
        top: 2.2rem;
    }
   
}   



