@charset "utf-8";


/* 인디케이션 indicator */
#indicator {
    position: fixed;
    top: 50%;
    left:23px;
    transform: translateY(-50%);
    z-index: 98;
}
#indicator ul {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:15px;
    position: relative;
}
#indicator ul li {
    position: relative;
    font-size:12px;
    font-weight:400;
    letter-spacing:-0.94px;
    line-height:116%;
    color:#626262;
    border:1px solid #aaa;
    background-color:#fff;
    border-radius:999px;
    padding:8px 10px;
    margin-left:15px;
    width:fit-content;
    cursor: pointer;
}
#indicator ul li::before {
    content:'';
    width:10px;
    height:10px;
    background-color:#aaa;
    border-radius:50%;
    position:absolute;
    left:-20px;
    top:50%;
    transform:translateY(-50%);
}
#indicator ul li.on {
    background-color:#FF6568;
    border-color:#FF6568;
    color:#fff;
    font-weight:500;
    letter-spacing:-1.12px;
}
#indicator ul li.on::before {
    width:7px;
    height:7px;
    background-color:#FF6568;
}
#indicator ul li.on::after {
    content:'';
    width:15px;
    height:15px;
    border-radius:50%;
    border:1px solid #FF6568;
    position:absolute;
    left:-25px;
    top:50%;
    transform:translateY(-50%);
}
#indicator.hide {
    display:none;
}



/* 스크롤다운 scroll_down */
#scroll_down {
    position: fixed;
    bottom: 35px;
    left:50%;
    transform: translateX(-50%);
    z-index: 98;
    display: flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
}
#scroll_down .scroll_down_icon {
    width:40px;
    height:40px;
    border-radius:50%;
    border:3px solid #555;
    display: flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
#scroll_down .scroll_down_icon i {
    font-size:1.88rem;
    font-weight:500;
    animation: scrollDown 1.5s ease infinite;  
}
#scroll_down p {
    font-size:0.77rem;
    font-weight:500;
    color:#555;
    text-align:center;
}
#scroll_down.hide {
    display:none;
}


/* 인덱스 index */
#index {}
#index section {
    width:100%;
    height:100vh;
}
#index section .sec {
    height:100%;
}
#index section .sec_title {
    font-family: 'Paperlogy';
    font-weight:600;
    line-height:normal;
}

/* 섹션01 section01 */
#section01 {
    position: relative;
}
#section01::before {
    content:'';
    width:100%;
    height:80%;
    max-height: 510px;
    background-color:#FFF8EC;
    border-radius:0 0 0 100px;
    position:absolute;
    left:0;
    top:125px;
    z-index:-1;
}
#section01 .sec01 {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    padding-top:50px;
}
#section01 #visual {
    flex:1;
    max-width:922px;
}
#section01 #visual .splide__slide img {
    border-radius: 20px 120px 20px 0px;
}
#section01 #visual .splide__arrows {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    padding:20px;
    border-radius:0 20px 0 0;
}
#section01 #visual .splide__arrows::before {
    content:'';
    width:20px;
    height:20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M0 20L20 20C20 20 11.3228 19.7228 5.8 14.2C0.277153 8.67715 0 0 0 0L0 20Z' fill='white'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    position:absolute;
    left:0;
    top:-20px;
}
#section01 #visual .splide__arrows::after {
    content:'';
    width:20px;
    height:20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M0 20L20 20C20 20 11.3228 19.7228 5.8 14.2C0.277153 8.67715 0 0 0 0L0 20Z' fill='white'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    position:absolute;
    right:-20px;
    bottom:0;
}
#section01 #visual .splide__arrows .slideCounter {
    display:flex;
    align-items:center;
    gap:15px;
}
#section01 #visual .splide__arrows .slideCounter span {
    font-size:1.44rem;
    font-weight:700;
}
#section01 #visual .splide__arrows .slideCounter .bar {
    width:15px;
    height:1px;
    background-color:#ddd;
}
#section01 #visual .splide__arrows .control_btn_wrap {
    display:flex;
    align-items:center;
    gap:10px;
}
#section01 #visual .splide__arrows .splide__arrow,
#section01 #visual .splide__arrows .splide__toggle  {
    position: unset;
    transform: unset;
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: unset;
    background: transparent;
}
#section01 #visual .splide__arrows .splide__arrow svg,
#section01 #visual .splide__arrows .splide__toggle svg {
    fill: transparent;
    width: 100%;
    height: 100%;
}
#section01 #visual .splide__arrows .splide__arrow--prev svg {
    transform: rotate(0deg)
}


#section01 #direct {
    width:100%;
    max-width:588px;
    display:flex;
    flex-direction:column;
    gap:50px;
}
#section01 #direct .sec_title {
    font-size:2rem;
}
#section01 #search {
    display:flex;
    flex-direction:column;
    gap:20px;
} 
#section01 #search fieldset {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border-radius: 30px;
    height: 85px;
    width: 100%;
    position: relative;
    justify-content: flex-end;
}
#section01 #search fieldset input {
    flex: 1;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.11rem;
    letter-spacing: 1.2px;
    line-height: 200%;
    font-weight: 400;
    font-family: 'Paperlogy';
    color: #222;
    border: 3px solid #ddd;
    border-right: none;
    position: absolute;
    width: 100%;
    height: 100%;
}
#section01 #search fieldset button {
    width: 85px;
    height: 85px;
    background: #FF6568;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
#section01 #search .search_wrod {
    display:flex;
    align-items:center;
    gap:20px;
}
#section01 #search .search_wrod p {
    display:flex;
    align-items: center;
    gap:10px;
    font-size:1.11rem;
    font-weight:600;
    color:#FF6568;
    font-family: 'Paperlogy';
}
#section01 #search .search_wrod .hash {
    display:flex;
    align-items:center;
    gap:10px;
}
#section01 #search .search_wrod .hash a {
    background-color:#fff;
    border:1px solid #FFA943;
    border-radius:999px;
    padding:5px 10px;
    font-size:1rem;
    font-weight:400;
    line-height:1;
}
#section01 #service {
    display:flex;
    flex-direction:column;
    gap:20px;
}
#section01 #service .service_wrapper {
    display:flex;
    align-items:stretch;
    justify-content:space-between;
}
#section01 #service .service_wrapper a {
    width:120px;
    display:flex;
    flex-direction:column;
    gap:15px;
    transition:all 0.3s;
}
#section01 #service .service_wrapper .service_icon {
    background-color:#FFE3B4;
    backdrop-filter: blur(17px);
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:120px;
}
#section01 #service .service_wrapper .service_ti {
    font-size:1rem;
    font-weight:500;
    text-align:center;
}
#section01 #service .service_wrapper a:hover .service_icon svg {
    animation: hover .5s;
}



/* 섹션02  section02 */
#section02 {
    position: relative;
}
#section02::before {
    content:'';
    width:100%;
    height:50%;
    background-color:#FFF3EE;
    position:absolute;
    left:0;
    top:82px;
    z-index:-1;
}
#section02::after {
    content:'YEONGJONG';
    font-size:170px;
    font-family: 'Paperlogy';
    font-weight:800;
    text-transform: uppercase;
    opacity: 0.1;
    background: rgb(246,92,95);
    background: linear-gradient(90deg, rgba(246,92,95,1) 0%, rgba(255,182,98,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position:absolute;
    right:0;
    bottom:-30px;
    z-index:-1;
    line-height:1;
}
#section02 .sec02 {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
}
#section02 #notice_slide {
    flex:1;
    max-width:1190px;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:30px;
}
#section02 #notice_slide .slide_notice_title {
    display:flex;
    justify-content:space-between;
    gap:20px;
}
#section02 #notice_slide .slide_notice_title .slide_notice_title_wrap {
    display:flex;
    align-items:center;
    gap:20px;
}
#section02 #notice_slide .slide_notice_title .sec_title {
    font-size:2.11rem;
}
#section02 #notice_slide .slide_notice_title .slide_notice_title_wrap .splide__arrows {
    display:flex;
    align-items:center;
    gap:10px;
}
#section02 #notice_slide .slide_notice_title .slide_notice_title_wrap .splide__arrow {
    position: unset;
    transform: unset;
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: unset;
    background: transparent;
}
#section02 #notice_slide .slide_notice_title .slide_notice_title_wrap .splide__arrow svg {
    fill: transparent;
    width: 100%;
    height: 100%;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns {
    flex:1;
    display:flex;
    align-items:center;
    justify-content:flex-end;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .mir_maintab {
    display:flex;
    align-items:stretch;
    height:50px;
    margin-right:15px;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns {
    display:flex;
    align-items:stretch;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns li {
    height:100%;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a {
    width:145px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.11rem;
    font-weight:500;
    letter-spacing:-0.6px;
    color:#555;
    background-color:#fff;
    border-right:1px solid #ddd;
    position: relative;
    z-index: 1;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns li:first-child a {
    border-radius: 30px 0px 0px 10px;
    overflow:hidden;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns li a.on {
    color:#fff;
    font-weight:700;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a::before {
    content:'';
    width:0;
    height:100%;
    background-color:#F88E61;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition:all .3s;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a.on::before {
    width:100%;
    transition:all .3s;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a:hover {
    color:#F88E61;
}

#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_more a {
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#FFA943;
    border-radius:0 10px 10px 0;
    width:50px;
    height:50px;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_more a:hover {
    background-color:#fff;
}
#section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_more a:hover svg path {
    fill:#FFA943;
}


#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont {
    display:none;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont.active {
    display:block;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .splide__track {
    padding-top:15px;
    padding-bottom:15px;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner {
    border-radius: 20px 20px 80px 20px;
    background-color:#fff;
    box-shadow: 0px 0px 20px 0px rgba(140, 140, 140, 0.20);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:20px;
    min-height:360px;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .notice_cate {
    width:120px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:20px;
    font-size:0.88rem;
    font-weight:500;
    letter-spacing:-0.48px;
    font-family: 'Paperlogy';
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .cate-general {
    background-color:#FFE3B4;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .cate-hiring {
    background-color:#FDD;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .cate-finance {
    background-color:#E8E8E8;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .cate-etc {
    background-color:#f9f9f9;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt {
    display:flex;
    flex-direction:column;
    gap:25px;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt .notice_subject {
    font-size:1.22rem;
    font-weight:700;
    line-height:127%;
    letter-spacing:-0.66px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height:50px;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt .notice_content {
    font-size:1rem;
    font-weight:400;
    line-height:166%;
    letter-spacing:-0.54px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height:80px;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_info {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    height:35px;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_info .bar {
    flex:1;
    height:1px;
    background-color:#AEAEAE;
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_info .notice_date {
    font-size:0.88rem;
    font-weight:500;
    letter-spacing:-0.48px;
    font-family: 'Paperlogy';
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner:hover {
    box-shadow: 0px 0px 20px 0px rgba(248, 142, 97, 0.25);
}
#section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner:hover .slide_txt .notice_subject {
    color:#F88E61;
}

#section02 #food {
    width:320px;
    display:flex;
    flex-direction:column;
    gap:20px;
}
#section02 #food .sec_title {
    font-size:2rem;
}
#section02 #food .ix_box {
    background-color:#fff;
    padding:20px;
    border-radius:30px;
    box-shadow: 0px 0px 20px 0px rgba(140, 140, 140, 0.20);
    display:flex;
    flex-direction: column;
    gap:20px;
    position: relative;
}
#section02 #food .ix_box::before {
    content:'';
    width:52px;
    height:60px;
    background-image:url(../img/index/food_icon.png);
    background-repeat:no-repeat;
    background-size:100% 100%;
    position:absolute;
    right:10px;
    top:-60px;
}
#section02 #food .ix_box .ix_title {
    display:flex;
    align-items:stretch;
    gap:10px;
    height:50px;
}
#section02 #food .ix_box .ix_title .ix_date {
    flex:1;
    background-color:#F88E61;
    border-radius:30px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
#section02 #food .ix_box .ix_title .ix_date span {
    font-size:1.22rem;
    font-weight:700;
    color:#fff;
    letter-spacing:-0.66px;
}
#section02 #food .ix_box .ix_title .ix_more .more_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    background-color:#FFA943;
    border-radius:50%;
    border:1px solid #FFA943;
}
#section02 #food .ix_box .ix_title .ix_more .more_btn:hover {
    background-color:#fff;
}
#section02 #food .ix_box .ix_title .ix_more .more_btn:hover svg path {
    fill:#FFA943;
}
#section02 #food .ix_box .ix_content {
    border-radius: 30px;
    border: 2px solid #ddd;
    background-color: #F8F8F8;
    padding:20px;
    text-align:center;
    font-size:1.11rem;
    font-weight:400;
    line-height:160%;
    letter-spacing:-0.6px;
    min-height:268px;
}

/* 섹션03  section03 */
#section03 {
    position: relative;
}
#section03::before {
    content:'';
    width:98%;
    max-width:1844px;
    height:80%;
    max-height:620px;
    background-color:#FFF8EC;
    border-radius: 120px 0px 0px 120px;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:-1;
}
#section03 .sec03 {
    display:flex;
    align-items:center;
    justify-content:flex-start;
}
#section03 #story {
    width:100%;
    display:flex;
    flex-direction:column;
    gap:40px;
}
#section03 #story .story_title {
    display:flex;
    align-items:center;
    justify-content:space-between;
}
#section03 #story .story_title .sec_title {
    font-size:2.11rem;
}
#section03 #story .story_title .slide_notice_btns {
    display:flex;
    align-items:stretch;
    gap:35px;
}
#section03 #story .story_title .slide_notice_btns .tab_btns {
    display:flex;
    align-items:stretch;
    gap:20px;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li {
    background-color:#FFE3B4;
    border-radius:10px;
    padding:10px 15px;
    width:260px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tabli {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.11rem;
    font-weight:600;
    letter-spacing: -0.66px;
    flex:1;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more {
    border-radius:30px;
    width:70px;
    height:30px;
    display: flex;          /* 항상 flex */
    align-items: center;    /* 세로 중앙 정렬 */
    justify-content: center;
    overflow: hidden;       /* 튀는 거 방지 */
    transition: all .3s;
    position: relative;
    z-index: 1;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more::before {
    content:'';
    width:30px;
    height:30px;
    background-color:#fff;
    border-radius:50%;
    position:absolute;
    right:2px;
    top:0;
    z-index: -1;
    transition:all .3s;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more .more_txt {
    font-size:13px;
    font-weight:500;
    color:#555;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    white-space: nowrap;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more svg {
    min-width: 12px;  /* 아이콘 크기 고정 */
    height: 100%;
    position: static;
    vertical-align: middle;
    transition: all .3s;
}

#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more:hover {
    background-color:transparent;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more:hover::before {
    background-color:#ffa943;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more:hover .more_txt {
    color:#fff;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more:hover svg path {
    fill:#fff;
}


#section03 #story .story_title .slide_notice_btns .tab_btns li.on {
    background-color:#F88E61;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li.on .tabli {
    color:#fff;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li.on .tabli svg path {
    fill:#fff;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li.on .tab_more {
    background-color:#fff;
    padding: 8px 10px;
    gap:3px;
    transition:all .3s;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li.on .tab_more .more_txt{
    transform: scaleX(1);
    opacity: 1;
}
#section03 #story .story_title .slide_notice_btns .tab_btns li.on .tab_more:hover {
    background-color:#ffa943;
}

#section03 #story .story_title .slide_notice_btns .splide__arrows {
    display:flex;
    align-items:center;
    gap:10px;
}
#section03 #story .story_title .slide_notice_btns .splide__arrows .splide__arrow {
    position: unset;
    transform: unset;
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: unset;
    background: transparent;
}
#section03 #story .story_title .slide_notice_btns .splide__arrows .splide__arrow svg {
    fill: transparent;
    width: 100%;
    height: 100%;
}
#section03 #story .story_title .slide_notice_btns .splide__arrows .splide__toggle {
    border-radius:5px;
}

/* 기본 상태: 재생 중 → 일시정지 버튼 보임 */
#section03 #story .story_title .slide_notice_btns .splide__arrows .story-slide-play { 
    display: none; 
}
#section03 #story .story_title .slide_notice_btns .splide__arrows .story-slide-pause { 
    display: inline-block; 
}

/* is-active 붙으면 → 멈춤 상태 → 재생 버튼 보임 */
#section03 #story .story_title .slide_notice_btns .splide__arrows .splide__toggle.is-active .story-slide-play { 
    display: inline-block; 
}
#section03 #story .story_title .slide_notice_btns .splide__arrows .splide__toggle.is-active .story-slide-pause { 
    display: none; 
}
#section03 #story .tab_contents .board_slide_cont .bs_cont {
    display:none;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont.active {
    display:block;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .splide__track {
    padding-top:15px;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .splide__slide a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .splide__slide .slide_img {
    flex: 1;
    border-radius:50px;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .splide__slide .slide_img img {
    border-radius:50px;
    border:1px solid #ddd;
    width:100%;
    height:100%;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .slide_ti {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width:100%;
    font-size:1.11rem;
    font-weight:500;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .splide__slide a:hover .slide_img {
    box-shadow: 0px 0px 25px 0px #FFCE7B;
    transition:all .3s;
}
#section03 #story .tab_contents .board_slide_cont .bs_cont .splide__slide a:hover .slide_ti {
    font-weight:700;
    text-decoration:underline;
    transition:all .3s;
}


/* 섹션04  section04 */
#section04 {
    position: relative;
}
#section04::before {
    content:'';
    width:100%;
    max-width:1844px;
    height:80%;
    max-height:480px;
    background: rgb(246,92,95);
    background: linear-gradient(90deg, rgba(246,92,95,1) 0%, rgba(255,182,98,1) 100%);
    opacity:0.15;
    border-radius: 0px 180px 0px 0px;
    position:absolute;
    left:0;
    bottom:0;
    z-index:-1;
}
#section04 .sec04 {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;
}
#section04 .sec_title {
    font-size:2.33rem;
}
#section04 #recruit {
    width:100%;
}
#section04 #recruit .control_btn_wrap {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:30px;
}
#section04 #recruit .control_btn_wrap .splide__arrow {
    position: unset;
    transform: unset;
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: unset;
    background: transparent;
}
#section04 #recruit .control_btn_wrap .splide__arrow svg {
    fill: transparent;
    width: 100%;
    height: 100%;
}
#section04 #recruit .splide__track {
    padding-top:50px;
}
#section04 #recruit .splide__slide {
    border-radius:20px;
    filter: drop-shadow(0px 0px 20px rgba(204, 204, 204, 0.35));
    transition: all .3s;
    position: relative;
    top:0;
}
#section04 #recruit .splide__slide.is-prev,
#section04 #recruit .splide__slide.is-next {
    transition: all .6s;
    top:-50px;
}


#section04 #recruit .splide__slide a {
    display:block;
    position: relative;
}
#section04 #recruit .splide__slide a::before {
    content:'';
    width:100%;
    height:100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 65%, rgba(0,0,0,0.61) 100%);
    position:absolute;
    left:0;
    top:0;
    border-radius:20px;
    transition:all .3s;
}
#section04 #recruit .splide__slide .slide_img {

}
#section04 #recruit .splide__slide .slide_img img {
    width:100%;
    display:block;
    border-radius:20px;
}
#section04 #recruit .splide__slide .slide_txt {
    position:absolute;
    left:0;
    bottom:20px;
    padding:0 20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
#section04 #recruit .splide__slide .slide_txt .slide_ti {
    font-size:1rem;
    font-weight:700;
    line-height:144%;
    letter-spacing:-0.54px;
    color:#fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height:47px;
    transition:all .3s;
}
#section04 #recruit .splide__slide .slide_txt .slide_date {
    font-size:0.88rem;
    font-weight:400;
    color:#fff;
} 
#section04 #recruit .splide__slide a:hover::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
    transition:all .3s;
}
#section04 #recruit .splide__slide a:hover .slide_txt .slide_ti {
    overflow: unset;
    text-overflow:unset;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    transition:all .3s;
}
#section04 #recruit .control_btn_wrap .tab_more:hover svg path {
    fill:#FF6568;
}
#section04 #recruit .control_btn_wrap .tab_more:hover svg rect {
    stroke:#FF6568;
}

/* -------------- 반응형 미디어쿼리 css ------------- */
@media (max-width: 1680px) {
    #indicator ul li {
        margin-left:10px;
    }

    #section01 .sec01 {
        gap:30px;
    }
    #section01 #visual {
        flex:none;
    }
    #section01 #search .search_wrod {
        gap:10px;
    }
    #section01 #search .search_wrod p {
        gap:0;
    }
    #section01 #search .search_wrod .hash {
        gap:5px;
    }
    #section01 #service .service_wrapper a {
        width:100px;
    }
    #section01 #service .service_wrapper .service_icon {
        height:100px;
    }
    #section01 #service .service_wrapper .service_icon svg {
        width:60px;
        height:auto;
    }


    #section02 #notice_slide {
        max-width:75%;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a {
        width:120px;
    }
}
@media (max-width: 1440px) {
    #section01::before {
        top: 100px;
        max-height: 100%;
        height: 58%;
    }

    #section01 .sec01 {
        padding-top:0;
    }
    #section01 #visual {
        max-width: 65%;
    }
    #section01 #visual .splide__slide img {
        width:100%;
        border-radius:20px 100px 20px 0px;
    }
    #section01 #visual .splide__arrows {
        padding:15px;
    }
    #section01 #visual .splide__arrows .slideCounter span {
        font-size:1.22rem;
    }
    #section01 #visual .splide__arrows .splide__arrow,
    #section01 #visual .splide__arrows .splide__toggle {
        width:35px;
        height:35px;
    }
   
    #section01 #direct .sec_title {
        font-size:1.88rem;
    }

    #section01 #search fieldset {
        height:75px;
        border-radius: 20px;
    }
    #section01 #search fieldset input {
        border-radius:20px;
    }
    #section01 #search .search_wrod p {
        display:none;
    }
    #section01 #search fieldset button {
        width:75px;
        height:75px;
        border-radius:20px;
    }
    #section01 #service .service_wrapper {
        gap:10px;
    }
    #section01 #service .service_wrapper a {
        width:90px;
    }
    #section01 #service .service_wrapper .service_icon {
        height:90px;
    }
    #section01 #service .service_wrapper .service_icon svg {
        width:45px;
        height:auto;
    }
    #section01 #service .service_wrapper .service_ti {
        font-size:0.94rem;
    }

    

    #section02 #notice_slide .slide_notice_title .sec_title {
        font-size:1.88rem;
    }
    #section02 #food .sec_title {
        font-size:1.88rem;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_title_wrap {
        gap:10px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_title_wrap .splide__arrow svg {
        width:40px;
        height:40px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a {
        width:100px;
        font-size:1rem;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_title_wrap .tab_more a svg {
        width:30px;
        height:auto;
    }


    #section03 #story .story_title .sec_title {
        font-size:1.88rem;
    }
    #section03 #story .story_title .slide_notice_btns {
        gap:20px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns {
        gap:10px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li {
        width:240px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more {
        width:30px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li.on .tab_more {
        width:30px;
        max-width:30px;
        padding:unset;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more .more_txt {
        display:none;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more svg {
        left:0;
    }



    #section04 .sec_title {
        font-size:1.88rem;
    }
}
@media (max-width: 1200px) {
    #section01 .sec01 {
        flex-direction: column;
        gap:50px;
        padding-top:50px;
    }
    
    #section01 #visual .splide__arrows {
        background-color:#FFF8EC;
    }
    #section01 #visual .splide__arrows::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M0 10L10 10C10 10 5.66142 9.86142 2.9 7.1C0.138576 4.33858 0 0 0 0L0 10Z' fill='%23FFF8EC'/%3E%3C/svg%3E");
        background-size:100% 100%;
    }
    #section01 #visual .splide__arrows::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M0 10L10 10C10 10 5.66142 9.86142 2.9 7.1C0.138576 4.33858 0 0 0 0L0 10Z' fill='%23FFF8EC'/%3E%3C/svg%3E");
        background-size:100% 100%;
    }
    #section01 #direct {
        flex-direction:row;
        justify-content:center;
        max-width:100%;
    }
    #section01 #search {
        flex:1;
    }
    #section01 #service {
        flex:1;
    }


    #section02::after {
        font-size:155px;
        bottom:0;
    }
    #section02 #notice_slide {
        width:65%;
        gap:15px;
    }
    #section02 #notice_slide .slide_notice_title {
        flex-direction:column;
        gap:30px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_title_wrap {
        justify-content:space-between;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .mir_maintab {
        width:100%;
        margin-right:0;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns {
        flex:1;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns li {
        flex:1;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns li a {
        width:100%;   
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner {
        min-height:340px;
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt {
        gap:10px;
    }
    #section02 #food {
        width:360px;
        margin-top: -10px;
        gap:30px;
    }
    #section02 #food .ix_box {
        padding:20px 35px;
    }
    #section02 #food .ix_box .ix_content {
        min-height:310px;;
    }


    #section03 #story .story_title .slide_notice_btns .tab_btns li {
        width:200px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tabli {
        font-size:1rem;
    }
    #section03 #story .story_title .slide_notice_btns .splide__arrows .splide__arrow svg,
    #section03 #story .story_title .slide_notice_btns .splide__arrows .splide__toggle svg {
        width:45px;
        height:45px;
    }


}
@media (max-width: 1024px) {
    #indicator {
        display:none;
    }
    #scroll_down {
        display:none;
    }



    #index {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }
    #index section {
        height:auto;
    }
    #index section .sec {
        height:auto;
        padding-top:0;
    }
    #section01::before {
        top:80px;
        max-height:100%;
        height: 86%;
    }
    #section01 #visual {
        max-width:100%;
        margin-top:120px;
    }



    #section02 {
        padding-top:60px;
        padding-bottom:60px;
    }
    #section02::before {
        top:0;
        height:100%;
    }
    #section02::after {
        display:none;
    }
    #section02 .sec02 {
        flex-direction:column;
    }
    #section02 #notice_slide {
        max-width:100%;
        width:100%;
    }
    #section02 #food {
        width:100%;
    }
    #section02 #food .ix_box .ix_content {
        min-height:265px;
    }


    #section03 #story .story_title {
        flex-direction:column;
        gap:20px;
    }


    #index section {
        padding-bottom:50px;
    }
}
@media (max-width: 991px) {
    #section01::before {
        height:80%;
    }
    #section01 #direct {
        gap:30px;
    }
    #section01 #search .search_wrod .hash a {
        font-size:0.88rem;
        padding: 5px 8px;
    }


    #section02 #food .ix_box {
        padding:20px;
    }


    #section03 #story .story_title .slide_notice_btns {
        flex-direction:column;
        gap:20px;
    }
    #section03 #story .story_title .slide_notice_btns .splide__arrows {
        justify-content:center;
    }
}
@media (max-width: 768px) {
    #section01 #direct {
        flex-direction:column;
    }
    #section01 #service .service_wrapper {
        justify-content: space-evenly;
    }
}
@media (max-width: 640px) {
    #section01::before {
        top:60px;
    }
    #section01 #visual .splide__slide img {
        border-radius: 10px 60px 10px 0px;
    }

    #section01 #visual .splide__arrows {
        padding:10px;
        gap:10px;
        border-radius: 0 10px 0 0;
    }
    #section01 #visual .splide__arrows::before {
        width:10px;
        height:10px;
        top:-10px;
    }
    #section01 #visual .splide__arrows::after {
        width:10px;
        height:10px;
        right:-10px;
    }
    #section01 #visual .splide__arrows .slideCounter {
        gap:3px;
    }
    #section01 #visual .splide__arrows .slideCounter span {
        font-size:1.11rem;
    }
    #section01 #visual .splide__arrows .control_btn_wrap {
        gap:5px;
    }

    #section01 #direct {
        gap:40px;
    }
    #section01 #direct .sec_title {
        font-size:1.62rem;
        text-align:center;
    }
    #section01 #search {
        gap:15px;
    }
    #section01 #search fieldset {
        height:60px;
        border-radius:30px;
    }
    #section01 #search fieldset input {
        border-radius:30px;
    }
    #section01 #search fieldset button {
        width:60px;
        height:60px;
        border-radius: 999px;
    }
    #section01 #search fieldset button svg {
        width:35px;
        height:auto;
    }
    #section01 #search .search_wrod {
        justify-content:center;
    }
    #section01 #service .service_wrapper a {
        width:80px;
    }
    #section01 #service .service_wrapper .service_icon {
        height:80px;
        border-radius:20px;
    }
    #section01 #service .service_wrapper .service_icon svg {
        width:50px;
    }
    #section01 #service .service_wrapper .service_ti {
        font-size:0.87rem;
        letter-spacing:-0.7px;
        word-break: keep-all;
    }




    #section02 #notice_slide .slide_notice_title .sec_title {
        font-size:1.62rem;
    }
    #section02 #food .sec_title {
        font-size:1.62rem;
    }
    #section02 #food {
        width:100%;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_title_wrap .splide__arrow svg {
        width:30px;
        height:30px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .mir_maintab {
        height:40px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_btns a {
        font-size:1rem;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_more a {
        width:40px;
        height:40px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_more a svg {
        width:32px;
        height:32px;
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner {
        padding:15px;
        min-height:300px;
        border-radius:15px 15px 40px 15px;
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt {
        gap:15px;
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt .notice_subject {
        font-size:1rem;
        min-height:43px;
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_txt .notice_content {
        font-size:0.87rem;
        min-height:70px;
    }
    #section02 #notice_slide .tab_contents .board_slide_cont .bs_cont .inner .slide_info .notice_date {
        font-size:0.81;
    }

    #section03 #story .story_title .sec_title {
        font-size:1.62rem;
    }
    #section03 #story .story_title .slide_notice_btns {
        width:100%;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns {
        flex-direction: column;
        gap:10px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li {
        width:100%;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more {
        width:70px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li.on .tab_more {
        width:70px;
        max-width:100%;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more svg {
        left:-2px;
    }
    #section03 #story .story_title .slide_notice_btns .tab_btns li .tab_more .more_txt {
        display:inline-block;
    }
    #section03 #story .tab_contents .board_slide_cont .bs_cont .splide__slide .slide_img img {
        border-radius:20px;
    }
    #section03 #story .tab_contents .board_slide_cont .bs_cont .slide_ti {
        -webkit-line-clamp: 2;
        min-height:52px;
    }


    #section04 .sec_title {
        font-size:1.62rem;
    }
    #section04 #recruit .control_btn_wrap {
        gap:10px;
    }
    #section04 #recruit .control_btn_wrap .splide__arrow svg,
    #section04 #recruit .control_btn_wrap .tab_more svg {
        width:40px;
        height:40px;
    }
    #section04 #recruit .splide__track {
        padding-top:0;
    }
    #section04 #recruit .splide__slide.is-prev, 
    #section04 #recruit .splide__slide.is-next {
        top:0;
    }

}
@media (max-width: 480px) {
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .mir_maintab {
        height:35px;
    }
    #section02 #notice_slide .slide_notice_title .slide_notice_btns .tab_more a {
        width:35px;
        height:35px;
    }

    #section04 #recruit {
        padding:0 30px;
    }
}
@media (max-width: 320px) {}