/* 헤더 영역 */
.header-area {
    height: 8rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
}
.header-area .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 148rem;
}
.header-area .logo {
    width: 14.4rem;
}
.header-area ul {
    gap: 4.8rem;
}
.header-area ul li a {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #000;
}
.header-area ul li a.active {
    font-weight: 700;
    color: #19397A;
}
.header-area ul li a.apply {
    color: #fff;
    background-color: #19397a;
    padding: 1.4rem 3rem 1rem 3rem;
    text-align: center;
    line-height: 1.2;
    width: 21.8rem;
    margin-left: 1.2rem;
    transition: .3s;
    border-radius: 4rem;
    border: .2rem solid #005EB2;
}
.header-area ul li a.apply:hover {
    background-color: #fff;
    color: #19397a;
}
.header-area .menu-btn {
    display: none;
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/ico_menu.svg)no-repeat center/cover;
    cursor: pointer;
}
.header-area .close-btn {
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/ico_close.svg)no-repeat center/cover;
    cursor: pointer;
}
header.active {
    background-color: #fff;
}
.header-area.active .logo {
    filter: brightness(0);
}
.header-area.active ul li a {
    color: #000;
}
.header-area.active ul li a.active {
    color: #19397A;
}
.header-area.active ul li a.apply {
    color: #fff;
    background-color: #2BC2FF;
    border-color: #2BC2FF;
}
.header-area.active ul li a.apply:hover {
    background-color: #fff;
    color: #19397a;
    border-color: #005EB2;
}
.header-area.active .menu-btn {
    filter: brightness(0);
}

/* 사이드바 */
.side-area {
    z-index: 10;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    transition: 0.3s;
}
.side-area.active {
    right: 0;
}
.side-area .header-area .wrap {
    justify-content: space-between;
}
.side-area .logo-box {
    padding: 4.8rem 4rem 4.4rem;
}
.side-area .logo-box a {
    width: 17.7rem;
}
.side-area .middle-box {
    margin-top: 14rem;
    height: 100%;
}
.side-area .middle-box ul {
    gap: 4.8rem;
}
.side-area .middle-box ul li a {
    font-size: 2rem;
    font-weight: 500;
    display: block;
    text-align: center;
    margin-top: 1.2rem;
}
.side-area .middle-box ul li a.active {
    color: #19397A;
    font-weight: 700;
}
.side-area .middle-box ul li .apply {
    font-size: 2rem;
    color: #000;
    background-color: #fff;
    padding: 1.6rem 3rem 1.2rem 3rem;
    border-radius: 4rem;
}
.side-area .obj-1 {
    bottom: 1.5rem;
    height: 20%;
    right: 0;
}

/* 플로팅 버튼 */
.floating {
    height: 6rem;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    font-size: 1.8rem;
    border-top: 1px solid #fff;
}

@media (max-width: 1279px) {

    .header-area {
        height: 6.8rem;
    }
    .header-area .logo {
        width: 16.8rem;
    }
    .header-area ul {
        display: none;
    }
    .header-area .menu-btn {
        display: block;
    }
    .floating.active {
        visibility: visible;
        opacity: 1;
    }

}

@media (max-width: 799px) {

    .header-area {
        height: 5.6rem;
    }
    .header-area .logo {
        width: 11.2rem; 
    }
    .header-area .close-btn,
    .header-area .menu-btn {
        width: 2.4rem;
        height: 2.4rem;
    }

}
/* //헤더 영역 */


/* ------------------------------------------------------------------------------- */


/* 메인 비주얼 영역 */
.main-visual-area {
    overflow: hidden;
    padding-top: 17rem;
    height: 175.4rem;
    background: linear-gradient(180deg, #2BC2FF 35%, #fff 100%);
}
.main-visual-area .wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.main-visual-area .title-1 {
    max-width: 58.8rem;
    margin-bottom: 3.2rem;
}
.main-visual-area .title-2 {
    max-width: 84em;
}
.main-visual-area .grid-box {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    margin-top: 8rem;
}
.main-visual-area .grid-box .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 1.2rem;
    border: .2rem solid #005EB2;
    border-bottom-width: .6rem;
    padding: 2rem 2.4rem;
    gap: 1.2rem;
}
.main-visual-area .grid-box .item h2 {
    color: #282828;
    white-space: nowrap;
}
.main-visual-area .grid-box .item h3 {
    color: #19397A;
    /* font-family: "GmarketSansLight"; */
    white-space: nowrap;
}
.main-visual-area .grid-box .item h3 p {
    padding-right: .4rem;
  
}

.main-visual-area .link-btn-box {
    bottom: 12rem;
    width: 100%;
    max-width: 72rem;
}
.main-visual-area .link-btn-box .link-btn {
    overflow: hidden;
}
.main-visual-area .link-btn-box .link-btn:hover p:first-child {
    display: none;
}
.main-visual-area .link-btn-box .link-btn:hover p:last-child {
    display: block;
}
.main-visual-area .link-btn-box .link-btn::before {
    position: absolute;
    content: '';
    background-color: #2BC2FF;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: .3s;
}
.main-visual-area .link-btn-box .link-btn:hover::before {
    height: 100%;
}
.main-visual-area .visual {
    width: 100%;
    height: 100%;
}
.visual .img-box {
    width: 100%;
    bottom: 0;
}
.main-visual-area .kv-01 {
    width: 83%;
}
.main-visual-area .kv-02 {
    left: 0%;
    top: 26.5%;
    width: 11%;
}
.main-visual-area .kv-03 {
    left: 12%;
    top: 30.5%;
    width: 9%;
}
.main-visual-area .kv-04 {
    right: 0%;
    top: 26.5%;
    width: 11%;
}
.main-visual-area .kv-05 {
    right: 12%;
    top: 30.5%;
    width: 9%;
}
.main-visual-area .kv-03 img,
.main-visual-area .kv-05 img {
    animation-delay: .3s;
}

@media (max-width: 1279px) {
    .main-visual-area {
        height: 108rem;
        padding-top: 12rem;
    }
    .main-visual-area .title-1 {
        max-width: 24rem;
        margin-bottom: 2rem;
    }
    .main-visual-area .title-2 {
        max-width: 47.7rem;
    }
    .main-visual-area .grid-box {
        margin-top: 4.8rem;
        gap: 1.2rem;
        grid-template-columns: repeat(4, 16.4rem);
    }
    .main-visual-area .grid-box .item {
        padding: 1.2rem;
        border-radius: .8rem;
        border-bottom-width: .4rem;
    }
    .main-visual-area .grid-box .item h2 {
        font-size: 1.6rem;
    }
    .main-visual-area .grid-box .item h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }
    .main-visual-area .link-btn-box {
        max-width: 47rem;
        bottom: 7.2rem;
    }
    .link-btn p,
    .link-btn p span {
        font-size: 2rem;
    }
}
@media (max-width: 799px) {
    .main-visual-area {
        height: 98rem;
        padding-top: 8.4rem;
    }
    .main-visual-area .title-1 {
        max-width: 25.7rem;
        margin-bottom: 1.2rem;
    }
    .main-visual-area .title-2 {
        max-width: 26.5rem;
    }
    .main-visual-area .grid-box {
        margin-top: 3.4rem;
        gap: 1.2rem;
        grid-template-columns: repeat(2, 15rem);
        justify-content: center;
    }
    .main-visual-area .grid-box .item h2 {
        font-size: 1.5rem;
    }
    .main-visual-area .grid-box .item h3 {
        font-size: 1.4rem;
    }
    .main-visual-area .link-btn-box {
        max-width: 20.2rem;
    }
    .link-btn {
        height: 7.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .link-btn p,
    .link-btn p span {
        font-size: 1.6rem;
    }
    .main-visual-area .kv-01 {
        top: auto;
        bottom: 30%;
    }
    .main-visual-area .kv-02 {
        top: auto;
        bottom: 32%;
    }
    .main-visual-area .kv-03 {
        top: auto;
        bottom: 30%;
    }
    .main-visual-area .kv-04 {
        top: auto;
        bottom: 30%;
    }
    .main-visual-area .kv-05 {
        top: auto;
        bottom: 32%;
    }
    .main-visual-area .link-btn-box {
        bottom: 6.8rem;
    }
}

@media (max-width: 400px) {
    .main-visual-area .visual {
        width: 230%;
        left: -65%;
    }
}

/* @media (min-width: 801px) and (max-width: 1279px) and (min-height: 700px) and (max-height: 800px) {
    .main-visual-area .visual {
        width: 58vh;
    }
} */

/* //메인 비주얼 영역 */


/* ------------------------------------------------------------------------------- */


/* BENEFIT 영역 */
.benefit-area .wrap {
    max-width: 108rem;
}
.benefit-area .cont {
    gap: 4.5rem;
}
.benefit-area .cont .cont-box {
    padding-top: 6rem;
}
.benefit-area .cont .cont-box h2 {
    padding: 1.8rem;
    width: 100%;
    max-width: 48rem;
    border-radius: 10rem;
}
.benefit-area .cont .cont-box .item-box {
    padding: 10rem 5rem 4rem 5rem;
    border: .2rem solid #000;
    border-bottom-width: .6rem;
    border-radius: 2rem;
    gap: 2.4rem;
}
.benefit-area .cont .cont-box .item-box .dot-list li {
    font-family: "GmarketSansMedium";
}
.benefit-area .cont .cont-box .item-box .item-box-wrap {
    gap: 2rem;
}
.benefit-area .cont .cont-box .item-box .item {
    padding: 2.8rem;
    border-radius: 1.2rem;
    position: relative;
}
.benefit-area .cont .cont-box .item-box .item .img-box {
    width: 10rem;
}
.benefit-area .obj-1 {
    left: 5%;
    top: 5%;
    width: 89.5%;
}
.benefit-area .obj-2 {
    top: 22%;
    width: 6.7%;
    left: 10%;
}
.benefit-area .obj-3 {
    top: 23%;
    width: 6%;
    right: 11%;
}
.benefit-area .obj-3 img {
    animation-delay: 1.5s;
}

@media (max-width: 1279px) {
    .benefit-area .cont .cont-box h2 {
        font-size: 2.6rem;
        padding-top: 2.4rem;
        padding-bottom: 1.6rem;
    }
    .benefit-area .cont .cont-box .item-box .item-box-wrap {
        gap: 2.4rem;
    }
    .benefit-area .cont .cont-box .item-box {
        padding: 8rem 2.8rem 4rem 2.8rem;
        gap: 2rem;
    }
    .benefit-area .cont .cont-box-1 .item-box .item {
        /* height: 24.8rem; */
        padding: 2.4rem 2.4rem;
    }
    .benefit-area .cont .cont-box .item-box .item .img-box {
        margin-top: auto;
        width: 8rem;
    }
    .benefit-area .cont .cont-box h2 p {
        font-size: 1.8rem;
    }
    .benefit-area .cont .cont-box .item-box .item h3,
    .benefit-area .cont .cont-box .item-box .item h3 span {
        font-size: 1.9rem;
    }
    .benefit-area .cont .cont-box .item-box .item h3 p {
        font-size: 1.4rem;
    }
}

@media (max-width: 799px) {
    .benefit-area .cont .cont-box {
        padding-top: 3.5rem;
    }
    .benefit-area .cont .cont-box h2 {
        font-size: 1.8rem;
        padding-top: 1.6rem;
        padding-bottom: 1rem;
        border-radius: 2rem;
        max-width: 26rem;
    }
    .benefit-area .cont .cont-box .item-box .item-box-wrap {
        gap: 2rem;
        flex-direction: column;
    }
    .benefit-area .cont .cont-box .item-box {
        padding: 6rem 2rem 2rem;
    }
    .benefit-area .cont .cont-box .item-box .item {
        /* height: 23rem; */
        padding: 2.4rem 2rem;
        align-items: flex-start;
        
    }
    .benefit-area .cont .cont-box h2 p {
        font-size: 1.5rem;
    }
    .benefit-area .cont .cont-box .item-box .item h3,
    .benefit-area .cont .cont-box .item-box .item h3 span {
        font-size: 1.6rem;
        word-break: keep-all;
    }
    .benefit-area .cont .cont-box .item-box .item h3 p {
        font-size: 1.2rem;
    }
    .benefit-area .cont .cont-box .item-box .item .img-box {
        width: 6rem;
    }
    .benefit-area .obj-1 {
        top: 9%;
    }
    .benefit-area .obj-2 {
        top: 13%;
    }
    .benefit-area .obj-3 {
        top: 14%;
    }
    .benefit-area .cont .cont-box .item-box .item .img-box {
        position: absolute;
        bottom: 2.4rem;
        right: 2rem;
    }
}



/* ------------------------------------------------------------------------------- */


/* TIME TABLE 영역 */


/* border-spacing이 먹히려면 separate */
.spaced {
  border-collapse: separate;   
  border-spacing: 4px 0px; 
}

.timetable-area {
    background-color: #4CC100;
}
.timetable-box table th,
.timetable-box table td {
    padding: 3.2rem;
    text-align: center;
    border-collapse: collapse;
}
/* .timetable-box table td:not(:last-child),
.timetable-box table td.h-set {
    border-right: .1rem solid #000;
}
.timetable-box table th:not(:last-child) {
    border-right: .1rem solid #fff;
} */
.timetable-box table td.h-set{
    height: 100px;
}
.timetable-box table th{
    background: #0063bc;
    color: #fff;
    font-size: 2.2rem;
    padding: 1.6rem 0 1.2rem 0;
     font-family: "GmarketSansMedium";
}
.timetable-box table td{
    border-bottom: .1rem solid #000;
    font-family: "GmarketSansMedium";
    font-size: 2.0rem;
   background: rgb(255, 255, 255, 0.40);
}
.timetable-box .stiker-box {
    gap: 12px;
    font-size: 2rem;
}
.timetable-box .stiker {
    padding: .4rem 1.2rem 0 1.2rem;
    line-height: 1.5;
    font-size: 1.6rem;
}
.timetable-box .stiker-1 {
    background-color: #00bfff
    /* color: #fff; */
}
.timetable-box .sticker-2 {
    background: #ffdc2e
}
.tb-uni-text-box {
    gap: 2rem;
}
.tb-uni-text-box .tb-uni-text span {
    font-size: 2rem;
}
.timetable-area .obj-1 {
    top: 6.5%;
    left: -10.5%;
    width: 25%;
}
.timetable-area .obj-2 {
    width: 46%;
    right: -17%;
    bottom: -30%;
}

@media (max-width: 1279px) {
    .timetable-box table th,
    .timetable-box table td {
        padding: 1.6rem 0;
    }
    .timetable-box table th {
        font-size: 1.8rem;
    }
    .timetable-box table td,
    .tb-uni-text-box .tb-uni-text span,
    .timetable-box .stiker-box {
        font-size: 1.7rem;
    }
    .timetable-box table td {
        line-height: 1.4;
    }
    .timetable-box .stiker-box {
        line-height: 1.6;
        gap: .8rem;
    }
    .timetable-box table th:not(:last-child), .timetable-box table td:not(:last-child) {
        /* border-right: .4rem solid #4CC100; */
    }
}

@media (max-width: 1000px) {

    .timetable-area .obj-1 {
        top: auto;
        bottom: 0;
    }
    .timetable-area .obj-2 {
        bottom: -17%;
    }
}

@media (max-width: 799px) {
    .timetable-box table th {
        font-size: 1.5rem;
    }
    .timetable-box table th, .timetable-box table td{
        padding: .8rem 0;
    }
    .timetable-box table td,
    .tb-uni-text-box .tb-uni-text span,
    .timetable-box .stiker-box {
        font-size: 1.5rem;
    }
    .timetable-box table td {
        padding: 1.2rem .6rem;
    }
    .timetable-box .stiker {
        font-size: 1.2rem;
        padding: .4rem;
        padding-bottom: 0;
    }
}

@media  (max-width: 600px) {
    .timetable-area .obj-2 {
        bottom: -8%;
    }
    .timetable-box .stiker {
         font-size: 1.0rem;
    }
    .timetable-box table td,
    .tb-uni-text-box .tb-uni-text span,
    .timetable-box .stiker-box {
        font-size: 1.2rem;
    }
}


/* ------------------------------------------------------------------------------- */


/* 특별한 투데이 캘린더 영역 */
.calendar-area {
    background: linear-gradient(180deg,#2BC2FF 0%, #fff 100%);
    padding-bottom: 63.8rem;
}
.calendar-box {
	margin-top: 55px;	
}
.calendar-box .month-box {
    padding: 1.8rem 1rem 1.2rem 1rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}
.calendar-box .week-box {
    overflow: hidden;
}
.calendar-box .week-box li {
    width: 20%;
    height: 5.6rem;
    font-size: 2rem;
	background: #19397A;
    padding-top: .4rem;
}
.calendar-box .date-box > li {
    width: 20%;
    height: 240px;
    position: relative;
}
.calendar-box .date-box > li.possible::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    /* background: #00D4FF;     */
    position: absolute;
    top: 0;
    left: 0;
}
.calendar-box .date-box > li .in {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid #444;
    border-bottom: 1px solid #444;
    padding: 20px 24px 0 24px;

}
.calendar-box .date-box > li:nth-child(5n) .in {
    border-right: none;
}
.calendar-box .date-box > li.possible .in {
    background: transparent;
}
.calendar-box .date-box > li.possible.nopossible .in {
    background: transparent;
    cursor: inherit;
}
.calendar-box .date-box > li .in .date {
    position: relative;
    font-size: 2rem;
    z-index: 9;
    font-family: "GmarketSansMedium";
    width: 2.8rem;
    display: block;
    text-align: center;
    margin-left: -.4rem;
    color: #282828;
}
.calendar-box .date-box > li .in .c999.date{
    color: #000;
}
.calendar-box .date-box > li.possible .in .list-box > li h3 {
    margin-top: 2.8rem;
    font-size: 2rem;
    line-height: 1.4;
    font-family: "GmarketSansBold";
}
.calendar-box .date-box > li.possible .in .list-box > li span {
    display: block;
    color: #282828;
}
.calendar-box .date-box > li.possible .in .list-box > li span.sub-text {
    margin-top: 1rem;
    font-size: 1.6rem;
    font-family: "GmarketSansMedium";
}
.star-stiker::before{
    content: '';
    display: inline-block;
    background: url(../img/ic-star.svg);
    background-size: cover;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 4px;
    left: 15px;
}
.calendar-area .dot-list {
    margin-top: 2.8rem;
}
.calendar-area .obj-box {
    width: 100%;
    /* height: 99.5rem; */
}
.calendar-area .obj-box > .img-box {
    width: 100%;
}
.calendar-area .link-btn-box {
    bottom: 6%;
}
.calendar-area .obj-5 {
    left: 5%;
    top: 5%;
    width: 89.5%;
}
.calendar-area .obj-6 {
    left: 4%;
    top: -7%;
    width: 10.5%;
}
.calendar-area .obj-7 {
    left: 14%;
    top: 2%;
    width: 9%;
}
.calendar-area .obj-8 {
    right: 12%;
    top: 2%;
    width: 9%;
}
.calendar-area .obj-9 {
    right: 2%;
    top: -7%;
    width: 9.5%;
}
.calendar-area .obj-7 img,
.calendar-area .obj-9 img {
    animation-delay: .3s;
}

@media (max-width: 1279px) {
    .calendar-area {
        padding-bottom: 35.5rem;
    }
    .calendar-box .month-box p {
        font-size: 2rem;
    }
    .calendar-box .week-box li {
        height: 4.5rem;
        font-size: 1.5rem;
    }
    .calendar-box .date-box > li {
        height: 13.6rem;
    }
    .calendar-box .date-box > li .in {
        padding: 16px 16px 0 16px;
    }
    .calendar-box .date-box > li .in .date {
        font-size: 1.3rem;
        width: 2.6rem;
        margin-left: 0;
    }
    .calendar-box .date-box > li.possible .in {
        cursor: pointer;
    }
    .calendar-box .date-box > li.possible .in .list-box {
        row-gap: 4px;
    }
    .calendar-box .date-box > li.possible .in .list-box > li h3 {
        font-size: 1.6rem;
        margin-top: 1.6rem;
    }
    .calendar-box .date-box > li.possible .in .list-box > li span {
        display: none;
    }
    .star-stiker::before{
        width: 3rem;
        height: 3rem;
    }
    .calendar-area .dot-list {
        margin-top: 2.4rem;
    }
    .calendar-area .dot-list li,
    .calendar-area .dot-list li span {
        font-size: 1.5rem;
        word-break: keep-all;
    }
}

@media (max-width:799px) {
    .calendar-area {
        padding-bottom: 23rem;
    }
	.calendar-box {
		margin-top: 32px;	
	}
    .calendar-box .week-box li {
        height: 52px;
        font-size: 15px;
    }
    .calendar-box .date-box > li {
        height: 120px;
    }
    .calendar-box .date-box > li .in {
        padding: 16px 8px 0 8px;
    }
    .calendar-box .date-box > li .in .date {
        font-size: 14px;
    }
    .calendar-box .date-box > li.possible .in .list-box {
        margin-top: 4px;
        row-gap: 2px;
    }
    .calendar-box .date-box > li.possible .in .list-box > li h3 {
        margin-top: 12px;
        font-size: 15px;
    }
    .calendar-box .date-box > li.possible .in .list-box > li span.sub-text {
        font-size: 1.3rem;
    }
    .star-stiker::before{
        width: 32px;
        height: 32px;
        left: 4px;
    } 
    .break-date {
        top:50px;
    }
    .cal-text-mo {
        display: block;
    }
    .calendar-area .obj-5 {
        top: 1%;
    }
    .calendar-area .obj-6,
    .calendar-area .obj-9 {
        top: -11%;
    }
    .calendar-area .obj-7,
    .calendar-area .obj-8 {
        top: -8%;
    }
}
@media (max-width:400px) {
	.calendar-box h1 span { 
		display: block;
		margin-left: 0px;
		padding-top: 8px;
	}
    .calendar-box .date-box > li.possible .in .list-box > li h3 {
        font-size: 13px;
    }
    .break-date {
        font-size: 1.3rem;
    }
    .calendar-area .obj-box {
        width: 180%;
        left: -40%;
    }
    .calendar-area .link-btn-box {
        bottom: 4rem;
    }
    .calendar-area .dot-list li,
    .calendar-area .dot-list li span {
        font-size: 1.3rem;

    }
}


/* ------------------------------------------------------------------------------- */


/* 인재 영역 */
.talent-area .link-btn-box .link-btn:hover {
    border-color: #005EB2;
    color: #fff;
}
.talent-area .link-btn-box .link-btn:hover .link-btn-bg {
    background-color: #19397A;
}
.talent-area .obj-1 {
    left: 5%;
    top: 5%;
    width: 89.5%;
}
.talent-area .obj-2 {
    top: 17%;
    width: 6.7%;
    left: 12%;
}
.talent-area .obj-3 {
    top: 65%;
    width: 6%;
    right: 13%;
}
.talent-area .obj-3 img {
    animation-delay: 1.5s;
}

@media (max-width: 1279px) {}
@media (max-width:799px) {
    .talent-area .obj-2 {
        top: 6%;
    }
    .talent-area .obj-3 {
        top: 14%;
    }
    .talent-area h1.title, 
    .talent-area h1.title span, 
    .talent-area h1.title p {
        font-size: 2.8rem;
    }
    .talent-area .title-box .sub-text {
        font-size: 1.5rem;
    }
}
@media (max-width:400px) {
    .title-box .sub-text {
        font-size: 1.5rem;
    }
}

/* ------------------------------------------------------------------------------- */


/* 인사 및 복리제도 영역 */
.welfare-area {
    background-color: #FFBB00;
}
.welfare-area .cont {
    gap: 3.2rem;
}
.welfare-area .cont .cont-box {
    overflow: hidden;
    border: .2rem solid #000;
    border-bottom-width: .6rem;
    border-radius: 2rem;
    height: 25.2rem;
}
.welfare-area .cont .cont-box .default-box {
    padding: 6rem 4rem;
    background-color: #fff;
    gap: 4rem;
}
.welfare-area .cont .cont-box .default-box .txt-box {
    gap: 1.2rem;
}
.welfare-area .cont .cont-box .default-box .txt-box h2 {
    font-family: "cafe24";
}
.welfare-area .cont .cont-box .hover-box {
    display: none;
    background-color: #FFBB00;
    padding: 4rem;
    height: 100%;
}
.welfare-area .cont .cont-box .hover-box-2 {
    background-color: #2BC2FF;
}
.welfare-area .cont .cont-box .hover-box-3 {
    background-color: #4CC100;
}
.welfare-area .cont .cont-box .circle-btn {
    bottom: 2.8rem;
    right: 2.8rem;
}
.welfare-area .cont .cont-box .circle-btn img:last-child {
    display: none;
}
.welfare-area .cont .cont-box:hover .default-box {
    display: none;
}
.welfare-area .cont .cont-box:hover .hover-box {
    display: flex;
    gap: 4rem;
}
.welfare-area .cont .cont-box:hover .hover-box-3 {
    align-items: center;
}
.welfare-area .cont .cont-box:hover .hover-box ul li {
    line-height: 1.6;
    font-size: 2.2rem;
    font-family: "GmarketSansMedium";
}
.welfare-area .cont .cont-box:hover .circle-btn img:first-child {
    display: none;
}
.welfare-area .cont .cont-box:hover .circle-btn img:last-child {
    display: block;
}
.welfare-area .obj-1 {
    top: 6.5%;
    left: -10.5%;
    width: 25%;
}
.welfare-area .obj-2 {
    width: 46%;
    right: -17%;
    top: -27%;
}

@media (max-width: 1279px) {
    .welfare-area .cont .cont-box {
        height: 18.4rem
    }
    .welfare-area .cont .cont-box .default-box {
        padding: 3.2rem 4rem 4.8rem 4rem;
        height: 100%;
    }
    .welfare-area .cont .cont-box .default-box .img-box {
        width: 10rem;
    }
    .welfare-area .cont .cont-box .default-box .txt-box h2 {
        font-size: 2.4rem;
    }
    .welfare-area .cont .cont-box .default-box .txt-box p,
    .welfare-area .cont .cont-box .default-box .txt-box p span {
        font-size: 1.8rem;
    }
    .welfare-area .cont .cont-box .circle-btn {
        width: 3.2rem;
        bottom: 2rem;
        right: 2rem;
    }
    .welfare-area .cont .cont-box:hover .hover-box {
        padding: 2rem 2rem 2rem 4rem;
        gap: 2rem;
    }
    .welfare-area .cont .cont-box:hover .hover-box ul li {
        font-size: 1.5rem;
    }
}

@media (max-width: 1000px) {
    .welfare-area .obj-1 {
        top: 0;
    }
    .welfare-area .obj-2 {
        top: -15%;
    }
}

@media (max-width: 799px) {
    .welfare-area .cont {
        gap: 2rem;
    }
    .welfare-area .cont .cont-box {
        height: 37.6rem;
    }
    .welfare-area .cont .cont-box .default-box {
        flex-direction: column;
        padding: 3.2rem 2rem 4rem 2rem;
    }
    .welfare-area .cont .cont-box:hover .hover-box {
        padding: 2rem;
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .welfare-area .obj-2 {
        top: -5%;
    }
}


/* ------------------------------------------------------------------------------- */


/* link invite 영역 */
.invite-area {
    background: linear-gradient(180deg, #2BC2FF 0%, #fff 100%);
}
.invite-area .wrap {
    gap: 6rem;
    max-width: 166.5rem;
}
.invite-area .slogan {
    width: 28.3rem;
}
.invite-area .title-box {
    margin-bottom: 0;
}
.invite-area .title-box .title {
    font-family: "GmarketSansMedium";
    display: flex;
    align-items: center;
    font-weight: 500;
}
.invite-area .title-box .title p {
    padding-bottom: 1rem;
}
.invite-area .invite-img {
    width: 20rem;
}
.invite-area .link-btn-box {
    width: 100%;
    max-width: 60rem;
}
.invite-area .link-btn-box .link-btn:first-child:hover {
    color: #fff;
}
.invite-area .link-btn-box .link-btn:first-child:hover .link-btn-bg {
    background-color: #005EB2;
}
.invite-area .obj-2 {
    top: 36%;
}
.invite-area .obj-3 {
    bottom: 10%;
    left: 6%;
    width: 10.5%;
}
.invite-area .obj-4 {
    bottom: 5%;
    left: 14%;
    width: 9%;
}
.invite-area .obj-5 {
    bottom: 5%;
    right: 14%;
    width: 9%;
}
.invite-area .obj-6 {
    bottom: 10%;
    right: 6%;
    width: 9.5%;
}
.invite-area .obj-4 img,
.invite-area .obj-6 img {
    animation-delay: .3s;
}

@media (max-width: 1279px) {
    .invite-area .title-box {
        gap: 0;
    }
    .invite-area .title-box > p {
        font-size: 3.2rem;
    }
}

@media (max-width: 1000px) {
    .invite-area .obj-1 {
        top: 30%;
        width: 90%;
    }
    .invite-area .obj-2 {
        width: 90%;
        top: 45%;
    }
    .invite-area .obj-3 {
        bottom: 24%;
        left: 6%;
    }
    .invite-area .obj-4 {
        bottom: 20%;
        left: 16%;
    }
    .invite-area .obj-5 {
        bottom: 20%;
        right: 16%;
    }
    .invite-area .obj-6 {
        bottom: 24%;
        right: 6%;
    }
}

@media (max-width: 799px) {
    .invite-area .wrap {
        gap: 3.2rem;
    }
    .invite-area .slogan {
        width: 14.2rem;
    }
    .invite-area .title-box .title {
        display: block;
    }
    .invite-area .title-box > p {
        font-size: 1.5rem;
    }
    .invite-area .title-box .title p {
        display: inline;
    }
    .invite-area .invite-img {
        width: 10.2rem;
    }
    .invite-area .link-btn-box {
        gap: 1.2rem;
        max-width: 25.4rem;
    }
    .invite-area .link-btn-box .link-btn {
        border-radius: 5rem;
        height: auto;
    }
}

@media (max-width: 600px) {
    .invite-area .obj-3 {
        bottom: 38%;
    }
    .invite-area .obj-4 {
        bottom: 35%;
        left: 17%;
    }
    .invite-area .obj-5 {
        bottom: 35%;
        right: 17%;
    }
    .invite-area .obj-6 {
        bottom: 38%;
    }
}


/* ------------------------------------------------------------------------------- */


/* footer 영역 */
footer {
    padding: 3rem 0;
}
footer img {
    width: 19.6rem;
}

@media (max-width: 1279px) {
    footer {
        padding: 2.4rem 0;
        padding-bottom: 8.4rem;
    }
    footer img {
        width: 14rem;
    }
}

@media (max-width: 799px) {
    footer {
        padding: 1.8rem 0;
        padding-bottom: 7.8rem;
    }
}
/* //footer 영역 */


/* ------------------------------------------------------------------------------- */


/* 모달 영역 */
.modal-area {
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 99;
}
.modal-area.active {
    display: block;
}
.modal-area .modal-box {
    display: none;
}
.modal-area .modal-box.active {
    display: block;
}
.modal-area .modal-box .x-btn {
    width: 24px;
    top: 32px;
    right: 36px;
    filter: brightness(0);
}
/* 대학교 모달 */
.university-modal {
    width: 640px;
    overflow: hidden;
    max-height: 98vh;
    overflow-y: auto;
}
.university-modal .top-area {
    box-sizing: border-box;
    padding: 52px 48px 28px 48px;
}
.university-modal .top-area .top-box .logo-box {
    width: 160px;
    margin-right: 16px;
    filter: brightness(0);
}
.university-modal .top-area .top-box h1 {
    font-size: 22px;
}
.university-modal .top-area .ceo-modal-text-box {
    margin-top: 28px;
}
.university-modal .que .title-box {
    margin-bottom: 20px;
    gap: 12px;
}
.university-modal .que .title-box span.text{
    font-size: 24px;
    color: #19397A;
    font-family: "GmarketSansBold";
}
.university-modal .que .label-type {
    box-sizing: border-box;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
    white-space: nowrap;
}
.university-modal .que .label-type-1 {
    background: #D8EBFE;
    color: #248FFA;
    font-family: "GmarketSansMedium";
}
.university-modal .top-area .ceo-modal-text-box .dot-list li {
    font-family: "GmarketSansMedium";
    font-size: 2rem;
}
.university-modal .top-area .ceo-modal-text-box .dot-list li::before {
    top: 1rem;
}
.university-modal .que .label-type-2 {
    background: #F0E2D4;
    color: #E17729;
}
.university-modal .que .label-type-3 {
    background: #E7ECFF;
    color: #605CFF;
}
.university-modal .que .label-type-4 {
    background: #E7DDFD;
    color: #9769F4;
}

@media (max-width: 1279px) {
    .university-modal {
        overflow: auto;
    }
}

@media (max-width:799px) {
    .modal-area .modal-box .x-btn {
        top: 24px;
        right: 28px;
    }
    .university-modal {
        width: 360px;
    }
    .university-modal .top-area {
        padding: 52px 20px 28px 20px;
        font-size: 1.8rem;
    }
    .university-modal .top-area .top-box .logo-box {
        margin-right: 8px;
    }
    .university-modal .top-area .top-box .logo-box h1 {
        font-size: 17px;
    }
    .university-modal .bottom-area {
        padding: 20px 0;
        font-size: 15px;
    }
    .university-modal .top-area .ceo-modal-text-box .dot-list li {
        font-size: 1.6rem;
    }
}






/****************************/
/* 세부내용 모달 */
.details-cnt-modal {
    width: 800px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 99;
}
.details-cnt-modal .top-area {
    box-sizing: border-box;
    padding: 35px 20px 20px 20px;
}
.details-cnt-modal .top-area .top-box .logo-box {
    width: 112px;
    margin-right: 12px;
}
.details-cnt-modal .top-area .top-box .logo-box h1 {
    font-size: 24px;
}
.details-cnt-modal .top-area .img-area {
    margin-top: 28px;
    height: 700px;
    overflow-y: auto;
    border-radius: 16px;
    box-sizing: border-box;
}
.details-cnt-modal .top-area .img-area .img-box:not(:first-child) {
    margin-top: 12px;
}
.details-cnt-modal .bottom-area {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
}
.details-cnt-modal .bottom-area .down-btn {
    width: 314px;
    height: 52px;
    transition: all 0.3s;
    background: #00A5E3;
    border-radius: 12px;
    box-sizing: border-box;
}
.details-cnt-modal .bottom-area .down-btn:hover {
    background:#034EA2;
}
.details-cnt-modal .bottom-area .down-btn .ico-book {
    margin-right: 12px;
    position: relative;
    top: 2px;
}
.details-cnt-modal .bottom-area .down-btn .ico-book img{
    width: 28px;
}
.details-cnt-modal .bottom-area .down-btn .text {
    font-size: 18px;
}

@media (max-width:1279px) {

}
@media (max-width:799px) {
  /* 세부내용 모달 */
    .details-cnt-modal {
        width: 100%;
        border-radius: 12px;
    }
    .details-cnt-modal .top-area {
        box-sizing: border-box;
        padding: 28px 20px 0 20px;
    }
    .details-cnt-modal .top-area .top-box .logo-box h1 {
        font-size: 18px;
    }
    .details-cnt-modal .top-area .img-area {
        margin-top: 28px;
        height: calc(100vh - 100px);
        overflow-y: auto;
    }
    .details-cnt-modal .top-area .img-area .img-box:not(:first-child) {
        margin-top: 8px;
    }
    .details-cnt-modal .bottom-area .down-btn .ico-book img {
    width: 24px;
    }
    .details-cnt-modal .bottom-area .down-btn .text {
    font-size: 14px;
}
}


/****************************/
.tight-text {
  letter-spacing: -5px; /* 한투 글자 간격 좁힘 */
}
.tight-text-2 {
  letter-spacing: -3px; /* 한투 글자 간격 좁힘 */
}
@media (max-width: 799px) {
    .tight-text {
      letter-spacing: -2px;
    }
    .tight-text-2 {
    letter-spacing: -1px; 
}
}

.only-mobile {
    display: none;
}
@media (max-width:799px) {
    .only-mobile {
        display: block;
    }
}
