/* section01 */
.section01 {
    width: 100%;
}

.section01 .mainViusal {
    position: relative;
    width: 100%;
}

.section01 .mainViusal .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* section02 */
.section02 {
    padding: 120px 0 45px;
}

/* 자주찾는 서비스 */
.qckMenu {
    padding: 32px 30px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #F1F5F5;
    border-radius: 16px;
}
  
.qckMenu .qckMenuTit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: 'GmarketSans';
    color: var(--Greyscale9);
}
  
.qckMenu .qckMenuTit > h3 {
    font-size: 26px;
    font-weight: 700;
}
  
.qckMenu .qckMenuTit>p {
    font-size: 14px;
}
  
.qckMenu .qckMenuLink {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
}
  
.qckMenu .qckMenuLink li {
    width: calc(25% - 15px);
    height: 108px;
}
  
.qckMenu .qckMenuLink li > a {
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    font-family: 'GmarketSans';
    color: var(--Greyscale9);
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;  
}
  
.qckMenu .qckMenuLink li.active > a {
    color: #fff;
    background-color: var(--Default);
}

@media (max-width: 600px) {
    .qckMenu {
        padding: 16px;
    }

    .qckMenu .qckMenuTit {
        flex-direction: column;
    }

    .qckMenu .qckMenuLink {
        gap: 16px;
    }

    .qckMenu .qckMenuLink li {
        width: calc(50% - 8px);
    }
}

/* 포토갤러리 */
.nowDamyang {
    position: relative;
    border-radius: 16px;
}

.nowDamyang .nowDamyangTit > h3 {
    font-family: 'GmarketSans';
    color: var(--Greyscale9);
    font-size: 26px;
    font-weight: 700;
}

.nowDamyang .nowSlide {
    margin-top: 20px;
}

.nowDamyang .nowSlide .slick-track {
    height: 100%;
}

.nowDamyang .nowSlide .slick-list {
    height: 306px;
    border-radius: 16px;
}

.nowDamyang .nowSlide .slick-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.nowDamyang .nowSlide a {
    width: 100%;
    height: 100%;
}

.nowDamyang .nowSlide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nowDamyang .controlBox {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nowDamyang .controlBox .paging {
    position: absolute;
    top: 0;
    left: 42px;
    height: 26px;
    min-width: 36px;
    line-height: 26px;
    text-align: right;
}

.nowDamyang .controller {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.nowDamyang .controller button {
    border: 1px solid #E0E0E0;
    border-radius: 50%;
}

.nowDamyang .controlBox .controller .prev {
    margin-right: 60px;
}

.nowDamyang .controlBox .controller .prev,
.nowDamyang .controlBox .controller .next,
.nowDamyang .controlBox .controller .stop,
.nowDamyang .controlBox .controller .play,
.nowDamyang .controlBox .paging {
    font-size: 0;
    color: var(--Greyscale8);
    display: inline-block;
}

.nowDamyang .controlBox .paging > span {
    font-family: 'GmarketSans';
    font-size: 18px;
    color: var(--Greyscale8);
    opacity: 0.6;
}

.visualSec .controlBox .paging > .this {
    color: var(--Greyscale8);
    font-size: 18px;
    opacity: 1;
}

.nowDamyang .controlBox .paging > .this::after {
    content: "/";
    display: inline-block;
    color: var(--Greyscale8);
    opacity: 0.6;
    margin: 0 5px;
}

@media (max-width: 1200px) {
    .nowDamyang .slick-slide > img {
        left: unset;
        top: unset;
        position: unset;
        transform: translateX(0);
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .nowDamyang .nowSlide .slick-list {
        height: unset;
    }
}

/* 공지사항 ~ 채용공고 탭 */
.section02 .boardBox {
    padding: 16px;
    width: 100%;
    height: 360px;
    border: 1px solid var(--Greyscale2);
}

.boardBox .tab-area {
    margin-top: 0;
}

.boardBox .tab-area .tab .tabBtn {
    margin-top: 0;
    width: fit-content;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
}

.boardBox .tab-area .tab .tabBtn.txtBtn {
    flex-grow: 1;
}

.boardBox .tab-area .tab .tabBtn:last-child {
    border-radius: 0 !important;
}

.boardBox .tab-area .tab .tabBtn:nth-child(4) {
    border-right: 0 !important;
}

.boardBox .tabCon .board-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.boardBox .tabCon .boardMain {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    border-bottom: 1px solid #CED3D6;
}

.boardBox .tabCon .boardMain .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid #CED3D6;
}

.boardBox .tabCon .boardMain .date > p {
    font-size: 14px;
    font-weight: 400;
}

.boardBox .tabCon .boardMain .date > b {
    font-size: 20px;
    font-weight: 700;
}

.boardBox .tabCon .boardMain a {
    display: block;
    width: calc(100% - 86px);
    height: 70px;
}

.boardBox .tabCon .boardMain .boardMainCon {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.boardBox .tabCon .boardMain .boardMainCon h3 {
    color: var(--Greyscale9);
    font-size: 16px;
    font-weight: 700;
}

.boardBox .tabCon .boardMain .boardMainCon > p {
    display: -webkit-box;
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    font-weight: 500;
}

.boardBox .tabCon .boardList {
    margin-top: 8px;
    width: 100%;
}

.boardBox .tabCon .boardList .boardItem {
    padding: 6px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.boardBox .tabCon .boardList .boardItem a {
    flex-grow: 1;
    width: 100%;
    color: #363A3C;
    font-size: 14px;
}

.boardBox .tabCon .boardList .boardItem p.date {
    flex-shrink: 0;
    color: #A9AFB3;
    font-size: 12px;
}

@media (max-width: 640px) {
    .tabBtn:nth-child(2n),
    .tab.fiveTab>.tabBtn:nth-child(2n) {
        border-right: 0 !important;
        border-radius: 0 !important;
    }
}
