#wrap {
    position: absolute;
    width: 1920px;
    height: 1080px;
    top: 0px;
    left: 0px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.main {
    position: relative;
    width: 1920px;
    height: 1080px;
    background-image: url(../img/main/bg.png);
    background-size: cover;
    overflow: hidden;
}

/* header */

.main header {
    /* height: 260px; */
    margin: 0 314px;
    display: flex;
    padding-top: 20px;
    padding-right: 74px;
}

.main header .title {
    width: 411px;
    height: auto;
}

.main header .title img {
    width: 100%;
}

.main header .top_menu {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* header > tab_box */
.tab_box {
    display: flex;
    justify-content: flex-end;
    text-indent: -9999px;
}

.tab_box ul {
    display: flex;
    gap: 10px;
}

.tab_box > ul > li {
    --height: 124px;
    --width: 120px;
    width: var(--width);
    height: var(--height);
    background-image: url(../img/main/btns.png);
    background-size: 240px;
    cursor: pointer;
}

.tab_box > ul > li > a {
    width: 100%;
    height: 100%;
    display: block;
}

.tab_box .btn_book {
    background-position-y: 0px;
}

.tab_box .btn_data {
    background-position-y: var(--height);
}

.tab_box .btn_pdf {
    background-position-y: calc(var(--height) * 2);
}

.tab_box li:hover {
    background-position-x: var(--width);
}

/* header > switch */

.switch_wrap {
    display: flex;
    /* margin: 30px; */
    column-gap: 10px;
    align-items: center;
}
/* .switch_wrap > span {
    font-size: 20px;
} */
.switch_wrap .switch_chkbox {
    position: absolute;
    left: -99999;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-indent: -9999px;
    display: none;
}
/* .switch_chkbox:checked + label:before {
    color: #8b90a3;
}
.switch_chkbox:checked + label:after {
    color: #fff;
} */
/* .switch_chkbox:checked + label .switch_label__handle {
    left: 2px;
} */
.switch_label {
    position: relative;
    display: flex;
    gap: 14px;
    width: 448px;
    height: 128px;
    border-radius: 64px;
    border: 4px solid #fff;
    background: #75ABC2;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25) inset;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
}

.switch_label span {
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    line-height: 36px;
    letter-spacing: -1px;
    font-family: "Cafe24Syongsyong";
    z-index: 1;
    cursor: pointer;
    color: #000;
    opacity: 0.35;
    transition: 0.2s opcity;
}

/* .switch_label span b {
    color: #00ac46;
} */

.switch_label::before {
    content: "";
    display: inline-block;
    width: 200px;
    height: 100px;
    background-color: #fff;
    position: absolute;
    z-index: 0;
    border-radius: 50px;

    transition: 0.2s;
    left: calc(50% + 7px);

    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}
.switch_chkbox:checked + .switch_label::before {
    left: 14px;
}

.switch_chkbox:checked + .switch_label > span:first-child,
.switch_chkbox:not(:checked) + .switch_label > span:last-child {
    opacity: 1;
}

.switch_chkbox:checked + .switch_label > span:first-child b,
.switch_chkbox:not(:checked) + .switch_label > span:last-child b {
    color: #37A7D7;
}

/* main_listBox */
.main_listBox {
    margin: 0 385px;
    display: flex;
    gap: 40px;
    padding: 80px 95px;
    background-image: url(../img/main/index_bg.png);
    background-size: 1130px;
    background-repeat: no-repeat;
    background-position: left top;
    justify-content: space-between;
}

.main_listBox > div {
    width: 460px;
    height: 582px;
    padding: 30px 5px;
    border-radius: 60px;
    border: 5px solid #C6ECFD;
    background: #fff;
    /* padding-bottom: 100px; */

    /* Drop Shadow */
    box-shadow: 10px 4px 20px 0px rgba(75, 103, 86, 0.35);
}

.select-unit {
    padding: 0 10px;
    height: 100%;
    overflow-y: auto;
}
#unit .select-unit li span{
    font-family: 'kjsasung', sans-serif;
    font-weight: 600;
}
#unit {
    color: #000;
    font-family: "Noto Sans KR";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px; /* 166.667% */
}
.select-unit li {
    padding: 0 18px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select-unit li>*{
    cursor: pointer;
}
#unit .on {
    color: #fff;
    border-radius: 30px;
    background: #37A7D7;
    box-shadow: 0px 4px 4px 0px rgba(113, 147, 198, 0.25);
}

.select-unit {
    list-style: revert;
    list-style-position: inside;
}

#detailUnit {
    color: #000;
    font-family: "Noto Sans KR";
    font-weight: 600;
    font-size: 24px;
    font-style: normal;
    line-height: 40px; /* 166.667% */
    letter-spacing: -0.6px;
}

#detailUnit li::marker {
    color: #37A7D7;
}

#detailUnit .select-unit li:hover {
    color: #fff;
    border-radius: 30px;
    background: #37A7D7;
    box-shadow: 0px 4px 4px 0px rgba(113, 147, 198, 0.25);
}

#detailUnit .select-unit li:hover::marker {
    color: #fff;
}

/* deco */

.deco {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 185px;
    z-index: 1;

    background-image: url("../img/main/deco_bottom.png");
    background-size: 1932px;
    background-repeat: no-repeat;
    background-position: top center;
}

.deco::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 492px;
    height: 482px;
    background-image: url(../img/main/deco_left.png);
    background-size: 740px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.deco .deco_panda {
    width: 224px;
    position: absolute;
    right: 380px;
    bottom: 45px;
}

.deco .deco_grass {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.deco_grass::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 740px;
    height: 120px;
    background-image: url(../img/main/deco_left.png);
    background-size: 740px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.deco_grass img:last-child {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 492px;
}

.main_bg {
    background-color: #e1eff4;
}
