@charset "utf-8";

/********************************************
	HEADER
********************************************/
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--header-height);
    margin: 0 auto;
    border-bottom: 1px solid #35425b;
    background: #fff;
    transition: var(--transition-custom);
    -webkit-transition: var(--transition-custom);
    z-index: 5;
    padding: 0 var(--padding-w);
    box-sizing: border-box;
}

#header .header-inner {
    position: relative;
    width: 100%;
    max-width: var(--wrap-width);
    height: 100%;
    margin: 0 auto;
    transition: var(--transition-custom);
    -webkit-transition: var(--transition-custom);
}

#header .logo {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 200px;
    height: 100%;
    transition: var(--transition-custom);
    -webkit-transition: var(--transition-custom);
    z-index: 6;
}

/* gnb메뉴가 느는상황 고려해서 position:absolute; 로  */
#header .logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

#header .util {
    position: absolute;
    right: 0;
    top: 0px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 6;
}

.util_wrap {
    height: 26px;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 0 0px 0 25px;
    box-sizing: border-box;
}

.util_wrap .btn {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    height: 100%;
    font-weight: 400;
    color: #0f0f0f;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
}

.util_wrap .btn:hover {
    color: var(--concept-color) !important;
}

.btn_remote {
    display: inline-flex;
    align-items: center;
    padding: 0 16px 0 40px;
    height: 100%;
    border-radius: 30px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    background: url(../images/ico_remote.png) 16px 50% no-repeat var(--second-color);
    background-size: 18px auto;
}

.btn_remote:hover {
    background: url(../images/ico_remote.png) 16px 50% no-repeat var(--concept-color);
    background-size: 18px auto;
}

.header-tit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 50px;
    text-align: center;
    font-family: 'GmarketSansBold';
    color: #0b72ba;
    font-size: 30px;
    line-height: 1.2;
    padding-top: 5px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.header-tit>span {
    color: #e30c0c;
}

#header.on {
    position: fixed;
    left: 0;
    top: 0;
}

#gnb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}

#gnb>h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#gnb .gnb_wrap {
    margin: 0 auto;
    position: relative
}

#gnb .gnb_wrap:hover,
#gnb .gnb_wrap:focus,
#gnb .gnb_wrap:active {
    z-index: 4
}

#gnb #gnb1_ul {
    width: 100%;
    transition: 1.0s;
    position: relative;
}

#gnb #gnb1_ul:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid #ebebeb;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    opacity: 0;
    transition: 0.5s;
}

#gnb.on #gnb1_ul:before {
    height: 480px;
    opacity: 1;
}

#gnb:after {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 100px;
    background-color: #eee;
    z-index: 4;
    opacity: 0;
    transition: 0.5s;
}

#gnb:hover:after {
    opacity: 1;
}

#gnb ul:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

#gnb .gnb1_li {
    float: none;
    display: inline-block;
    line-height: 50px;
    position: relative;
    padding: 0 30px 0 10px;
}

#gnb .gnb1_li .bg {
    display: none;
}

.gnb1_a {
    display: block;
    font-weight: 600;
    color: #0f0f0f;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0em;
    text-transform: capitalize;
}

.gnb1_li .gnb1_a {
    position: relative;
    display: block;
}

.gnb2_li:first-child {
    border: 0
}

.gnb2_ul {
    display: none;
    position: absolute;
    top: 50px;
    padding-top: 0px;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
}

.gnb2_ul li {
    position: relative;
    top: 0px;
    opacity: 0;
}

#gnb .gnb1_li>a {
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

#gnb .gnb1_li:hover>a {
    color: #333;
}

#gnb .gnb1_li>a:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--concept-color);
    position: absolute;
    left: 50%;
    bottom: 0px;
    opacity: 0;
    transform: scale(0) translate(-50%, 0);
    z-index: 5;
}

#gnb .gnb1_li:hover>a:after {
    opacity: 1;
    transition: 0.5s;
    transform: scale(1) translate(-50%, 0);
    transition-delay: 0.1s;
}

#gnb #gnb1_ul:hover .gnb1_li {
    padding: 0 70px 0 10px;
    transition: 0.5s;
}

/* #gnb #gnb1_ul .gnb1_li.lg{padding: 0 50px; transition: 0.5s;}*/

.gnb1_li:last-child .gnb2_ul_box {
    border-right: 1px solid #eee;
}

.gnb2_ul .gnb2_ul_box {
    border-top: 0;
    padding: 10px;
    border-left: 1px solid #eee;
    height: 380px;
    box-sizing: border-box;
}

.gnb2_a {
    display: block;
    padding: 7px 0px;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #444;
    text-align: left;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

a.gnb2_a:hover {
    font-weight: 500;
    color: #000;
}

.gnb1_li.point .gnb1_a,
.gnb1_li.point .gnb2_a {
    color: var(--red-color);
}

#gnb .gnb1_li.point:hover>a {
    color: var(--red-color);
}

#gnb .gnb1_li.point>a:after {
    background-color: var(--red-color);
}

.gnb_tit {
    padding: 6px 0 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #333;
    text-align: center;
    text-decoration: none;
}

.gnb3_a {
    display: block;
    padding: 6px 0px;
    font-weight: 400;
    font-family: 'Pretendard';
    font-size: 13px;
    line-height: 1.2;
    color: #666;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

a.gnb3_a:hover {
    color: #000;
}

.gnb2_ul.on {
    opacity: 1;
}

.gnb2_ul.on li {
    opacity: 1;
    top: 0;
}

.gnb2_a:focus,
.gnb2_a:hover {
    color: #000;
}

/* 바디에 스크롤 막는 방법 */
/* html, body.modal-open {overflow: hidden; height: 100%;} */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.not_scroll {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%
}

.not_scroll .cont {
    position: relative;
    top: 0;
}

/* // 팝업 Basic */

/* Header END */

.header-search {
    position: relative;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2
}

/* Search 관련 */
.btn-search {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 26px;
    padding: 0 13px 0 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    text-align: center;
    background: url(../images/i_search_wh.png) 10px 50% no-repeat var(--concept-color);
    background-size: 10px auto;
    border-radius: 20px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.btn-search:hover {
    opacity: 0.7;
}

.btn-search-line {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 26px;
    padding: 0 14px 0 28px;
    font-weight: 500;
    color: var(--second-color);
    line-height: 1;
    text-align: center;
    background: url(../images/i_search.png) 12px 50% no-repeat;
    background-size: 12px auto;
    border-radius: 30px;
    border: 1px solid var(--second-color);
    box-sizing: border-box;
    transition: all 0.3s;
}

.btn-search-line:hover {
    opacity: 0.7;
}

.top-search-wrap {
    display: inline-flex;
    align-items: center;
    height: 26px;
    margin: 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #0f0f0f;
    box-sizing: border-box;
}

.top-search-wrap>* {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.date-select {
    position: relative;
}

.date-select .tit {
    font-weight: 700;
    color: #000;
    font-size: 14px;
    line-height: 1;
}

.input-transparent {
    display: inline-block;
    width: 170px;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.input-transparent input {
    width: 100%;
    height: 100%;
    padding: 0 5px;
    border: 0;
    background: transparent;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.input-transparent input:focus {
    outline: none;
    background: transparent;
    border: 0;
}

.input-transparent input:disabled,
.input_sty input:read-only {
    background: #f1f1f1;
}

.input-transparent input:disabled:focus,
.input_sty input:read-only:focus {
    border: 0;
}

.input-transparent.type1 {
    width: 120px;
}

.input-transparent.type2 {
    width: 260px;
}

.input-transparent.type3 {
    width: 115px;
}



.calendar-wrap {
    position: absolute;
    left: 0px;
    top: 28px;
    display: none;
    width: 600px;
    min-height: 100px;
    margin: 0px auto;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0px 0px 24px 0px rgba(104, 104, 104, 0.1);
    box-sizing: border-box;
    z-index: 3;
    cursor: default;
}

.calendar-wrap .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 22px;
    height: 22px;
    background: url(../images/close_white.png) 50% 50% no-repeat #333;
    background-size: 10px auto;
    border-radius: 50%;
    z-index: 3;
}

.icon-round-trip {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url(../images/icon-round-trip.png) 50% 50% no-repeat;
}

.icon-area {
    display: inline-block;
    width: 18px;
    height: 24px;
    background: url(../images/ico_earth.png) 50% 50% no-repeat;
    background-size: 16px auto;
}

.icon-date {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url(../images/ico_calendar.png) 0% 50% no-repeat;
    background-size: 16px auto;
}

.icon-bar {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/icon-bar.png) 50% 50% no-repeat;
}

.icon-new {
    display: inline-block;
    width: 9px;
    height: 16px;
    background: url(../images/icon-new.png) 50% 50% no-repeat;
    margin-right: 3px;
}

.icon-new-b {
    display: inline-block;
    width: 16px;
    height: 18px;
    background: url(../images/icon-new-b.png) 50% 50% no-repeat;
    margin-right: 3px;
}

.icon-newwin {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../images/newwin.png) 50% 50% no-repeat;
    background-size: 12px auto;
}

/* area-search */
.area-search {
    position: absolute;
    left: 0px;
    top: 28px;
    display: none;
    width: 600px;
    margin: 0px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0px 0px 24px 0px rgba(104, 104, 104, 0.1);
    box-sizing: border-box;
    z-index: 3;
    cursor: default;
}

.area-search .search-line {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 30px;
    border-bottom: 1px solid #666;
    background: #fff;
    vertical-align: middle;
    padding: 0 100px 0 0px;
    transition: all 0.3s ease-out;
    box-sizing: border-box;
}

.area-search .search-line input {
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 0;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
    padding: 0;
}

.area-search .search-line input:focus {
    outline: none;
    background: transparent;
}

.area-search .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 22px;
    height: 22px;
    background: url(../images/close_white.png) 50% 50% no-repeat #333;
    background-size: 10px auto;
    border-radius: 50%;
    z-index: 3;
}

.area-search .area-btn {
    position: absolute;
    right: 85px;
    top: 0px;
    width: 20px;
    height: 24px;
    background: url(../images/i_search.png) 50% 50% no-repeat;
    background-size: 18px auto;
    z-index: 3;
}

.area-search .area-num {
    position: absolute;
    right: 35px;
    top: 0px;
    width: 45px;
    height: 24px;
    background: #fff;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px;
    font-weight: 300;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    border-radius: 4px;
    box-sizing: border-box;
    z-index: 9;
}

.area-search .area-num>span {
    font-weight: 500;
}

.area-search h4 {
    margin-bottom: 10px;
}

/* 최근검색어 */
.area-search .lately-list {
    width: 100%;
}

.area-search .lately-list>ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.area-search .lately-list>ul>li {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.area-search .lately-txt {
    font-weight: 400;
    font-size: 16px;
    color: #333;
    line-height: 1.3;
}

.area-search .lately-txt>span {
    color: var(--blue-color);
}

.area-search .lately-desc {
    font-weight: 400;
    font-size: 14px;
    color: #888;
    line-height: 1.3;
}

.area-search .lately-none {
    font-weight: 400;
    font-size: 16px;
    color: #888;
    line-height: 1.3;
}

/* 국가 및 지역 선택테이블 */
.area-search-table {
    width: 100%;
    border: 1px solid #ddd;
    border-width: 1px 0;
    margin-top: 0px;
    box-sizing: border-box;
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.area-search-table>ul {
    display: flex;
    width: 100%;
    gap: 0;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.area-search-table>ul>li {
    flex: 1;
    display: inline-flex;
    flex-wrap: wrap;
    border-left: 1px solid #ddd;
    padding: 5px;
    box-sizing: border-box;
}

.area-search-table>ul>li:first-of-type {
    flex: 0 0 80px;
    justify-content: center;
    text-align: center;
    border-left: 0;
}

.area-search-table .stit {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.area-search-table .select-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 5px 0;
}

.area-search-table .select-list>* {
    width: -webkit-calc(100% / 4);
    width: calc(100% / 4);
    padding: 0px 8px;
    box-sizing: border-box;
}

.area-search-table .select-txt {
    font-weight: 400;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    cursor: pointer;
}

.area-search-table .select-list>*:hover {
    background: #f1f1f1;
    color: #000;
}

.area-search-table::-webkit-scrollbar {
    width: 6px;
}

.area-search-table::-webkit-scrollbar:vertical {
    width: 6px;
}

.area-search-table::-webkit-scrollbar:horizontal {
    height: 6px;
}

.area-search-table::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #eee;
}

/* 스크롤바 뒷 배경 설정*/
.area-search-table::-webkit-scrollbar-track:hover {
    background-color: transparent;
}

.area-search-table::-webkit-scrollbar-thumb {
    border-radius: 0px;
    border: 0;
    background-color: var(--gray-color);
}

/* 스크롤바 막대 설정*/
.area-search-table::-webkit-scrollbar-button {
    display: none;
}


/* Search 관련 END */

/* #Progress top btn */
.progress-wrap {
    position: fixed;
    right: 15px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--concept-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: .5;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--concept-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* top btn 다른 스타일 */
.btn_up_layer {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
    width: 65px;
    height: 65px;
    background: var(--second-color);
    border-radius: 8px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.07);
}

.btn_up_layer .icon {
    width: 100%;
    height: 14px;
    text-align: center;
    background: url(/images/layout/top-arrow-s.png) 50% 0% no-repeat;
    background-size: auto 14px;
}

.btn_up_layer .button-text {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    letter-spacing: -0.02em;
}

.btn_up_layer.active {
    display: flex;
}

/* footer  */
.footer {
    width: 100%;
    background: #35425b;
    margin: 0px auto;
    padding: 50px 5%;
    box-sizing: border-box;
}

.footer:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: var(--wrap-width);
    height: 100%;
    margin: 0 auto;
    gap: 160px;
}

.footer .f_logo {
    flex: 0 0 260px;
    text-align: left;
    min-height: 40px;
    align-content: center;
}

.footer .f_logo img {
    max-width: 100%;
    width: 100%;
}

.footer .f_cont {
    flex: 1;
}

.footer .f_cont li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    margin-top: 8px;
}

.footer .f_cont li:first-child {
    margin-top: 0px;
}

.footer .f_cont li p {
    font-weight: 500;
    color: #f0f0f0;
    font-size: 13px;
    line-height: 1.2;
}

.footer .f_cont li p>span {
    display: inline-block;
    font-weight: 300;
    margin-right: 10px;
}

.footer .f_cont li p.f_copy {
    font-weight: 300;
    color: #e1e1e1;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 20px;
}

.footer .f_cont li p.company-name {
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.footer .f_right {
    flex: 0 0 250px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.footer .f_right img {
    max-width: 100%;
}

.f_cs {
    display: flex;
    gap: 15px;
    align-items: center;
}

.f_cs .icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(../images/ico-tel.png) 50% 50% no-repeat var(--concept-color);
    background-size: 20px auto;
    border-radius: 50%;
}

.f_cs .tel {}

.f_cs .num {
    font-weight: 800;
    color: #fff;
    font-size: 20px;
    line-height: 1.45;
}

.f_cs .txt {
    font-weight: 300;
    color: #f0f0f0;
    font-size: 12px;
    line-height: 1.45;
}

.sns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sns img {
    height: 20px;
}


.f_smenu {
    display: flex;
    align-items: center;
}

.f_smenu>a {
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    color: #ddd;
    padding-left: 25px;
}

.f_smenu>a::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: ' ';
    width: 4px;
    height: 4px;
    background: #aaa;
    border-radius: 50%;
    margin-left: 10px;
}

.f_smenu>a:first-child {
    padding-left: 0px;
}

.f_smenu>a:first-child::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: ' ';
    width: 0px;
    height: 0px;
    margin-left: 0px;
}

.f_smenu .bold {
    font-weight: 600;
    color: #eee;
}

.family {
    width: 100%;
    text-align: right;
    position: relative;
}

.familysite {
    display: inline-block;
    width: 180px;
    height: 40px;
    text-align: left;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    line-height: 1;
    border: 1px solid #444;
    background: url(/images/layout/up-wh.png) 92% 50% no-repeat;
    /* background:url(/images/layout/up-wh.png) 95% 50% no-repeat #ec202b; */
    padding: 0 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    z-index: 3;
}

.familysite_box {
    display: none;
    z-index: 101;
    position: absolute;
    /*top:30px;*/
    bottom: 40px;
    right: 0px;
    width: 180px;
    /*background:var(--concept-color);*/
    background: #222328;
    border: 0px solid #333;
}

.familysite_box li {
    display: inline-block;
    width: 100%;
    text-align: left;
    border-top: 0px solid #fff;
    padding: 0px 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.familysite_box li:first-child {
    border-top: 0px solid #ebebeb;
    padding-top: 10px;
}

.familysite_box li:last-child {
    padding-bottom: 10px;
}

.familysite_box li a {
    color: #fff;
    font-size: 14px;
    line-height: 34px;
}

.familysite_box li a:hover {
    color: #000;
}

.ellipsis01 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis02 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 라인수 */
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.3em;
    height: 2.6em;
    /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */
}

.ellipsis03 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* 라인수 */
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.3em;
    height: 3.9em;
    /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */
}

.ellipsis04 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* 라인수 */
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.3em;
    height: 5.2em;
    /* line-height 가 1.2em 이고 3라인을 자르기 때문에 height는 1.2em * 3 = 3.6em */
}

/*img 관련 */
.imgMax {
    max-width: 100%;
}

.imgFix {
    width: 100%;
}

.fullsize {
    display: inline-block;
    width: 100%;
}

.fullsize img {
    width: 100%;
}

.slideImg {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 0px;
    padding-top: 75%;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 0px;
    background-size: cover;
    background: #fff;
    box-sizing: border-box;
}

.slideImg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.slideImg.mid {
    padding-top: 56.25%;
}

.slideImg.mid-none {
    padding-top: 56.25%;
    border: 0px solid #eee;
}

.slideImg.full {
    padding-top: 100%;
}

.slideImg.full-circle {
    padding-top: 100%;
    border-radius: 50%;
    border: 0px;
}

.textTb {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Pretendard';
}

.textTb .tit1 {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.textTb .txt1 {
    color: #555;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.textTb .txt2 {
    color: #555;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.textTb .txt3 {
    color: #555;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    padding-left: 20px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.textTb .txt4 {
    color: #555;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    padding-left: 40px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.pre-wrap {
    width: 100%;
    white-space: pre-wrap;
    color: #333;
    font-size: 13px;
    line-height: 1.45;
}

/* video 사용할 경우 */
.video_wrap {
    position: relative;
    margin: 0px auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.youtubeP {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inner {
    position: relative;
    width: 100%;
    max-width: var(--area-width);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.inner:after {
    display: block;
    clear: both;
    content: '';
}

/******************************************** 
	MAIN
********************************************/
.section {
    width: 100%;
    margin: 0px auto;
    padding: var(--padding-h) 0;
    box-sizing: border-box;
}

.section.first {
    margin-top: var(--header-height);
}

.section.bg-1 {
    background: var(--bgcolor-1);
    border-top: 1px solid #d9e2e9;
}

.section.bg-2 {
    background: var(--bgcolor-2);
    padding: 0 0 var(--padding-h) 0;
    border-top: 1px solid #dde6d5;
}

.section.bg-3 {
    background: var(--bgcolor-3);
    border-top: 1px solid #d6e8eb;
}

.section.bg-4 {
    background: var(--bgcolor-4);
    padding: 0 0 var(--padding-h) 0;
    border-top: 1px solid #dadeec;
}

.section.bg-5 {
    background: var(--bgcolor-5);
    border-top: 1px solid #e7e2da;
}

.section.bg-6 {
    background: var(--bgcolor-6);
    border-top: 1px solid #e7e2da;
}

.section.bg-search-engine {
    background: #f7ffe6;
    border-top: 1px solid #e7e2da;
}

.search-box {
    width: 100%;
    margin: 0px auto;
    padding: 45px 50px 35px;
    border: 2px solid rgba(11, 114, 186, 1);
    background: #f9fbfc;
    border-radius: 10px;
    box-shadow: 0px 0px 16px 0px rgba(104, 104, 104, 0.08);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.search-box .top-select {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.search-box .search-select {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-box .search-select .top-search-wrap {
    margin: 0 10px 0 0;
    border-bottom: 1px solid var(--border-color);
}

.search-box .search-select .top-search-wrap>*::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--border-color);
}

.search-box .search-select .top-search-wrap>*:first-of-type:before {
    display: none;
}

.passenger-num {
    gap: 10px;
    padding: 0 15px;
    box-sizing: border-box;
}

/*  increase decrease */
.qty-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qty-container .qty-tit {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: var(--second-color);
    margin-right: 10px;
}

.qty-container .input-qty {
    text-align: center;
    border: none;
    margin: 0px;
    font-weight: 400;
    font-size: 13px;
    width: 40px;
    height: 26px;
    box-sizing: border-box;
}

.qty-container .qty-btn-minus {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: url(../images/i-minus.png) 50% 50% no-repeat var(--border-color);
    background-size: 6px auto;
    text-indent: -9999px;
    transition: 0.3s;
}

.qty-container .qty-btn-plus {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: url(../images/i-plus.png) 50% 50% no-repeat var(--border-color);
    background-size: 8px auto;
    text-indent: -9999px;
    transition: 0.3s;
}

.radio-round input[type=radio]+label {
    padding-left: 28px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #777;
    vertical-align: top;
}

.radio-round input[type=radio]+label:before {
    width: 20px;
    height: 20px;
    border: 0;
    background: url(../images/i_chkbox_wh.png) 50% 50% no-repeat var(--border-color);
    background-size: 10px auto;
}

.radio-round input[type=radio]:checked+label:before {
    border: 0;
    background: url(../images/i_chkbox_wh.png) 50% 50% no-repeat var(--second-color);
    background-size: 10px auto;
}

.radio-round input[type=radio]:checked+label {
    font-weight: 700;
    color: #000;
}

/* table--scroll 좌우사용 */
.scrollbox {
    width: 100%;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    height: calc(100vh - 395px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.scrollbox::-webkit-scrollbar {
    width: 6px;
}

.scrollbox::-webkit-scrollbar:vertical {
    width: 6px;
}

.scrollbox::-webkit-scrollbar:horizontal {
    height: 6px;
}

.scrollbox::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: transparent;
}

/* 스크롤바 뒷 배경 설정*/
.scrollbox::-webkit-scrollbar-track:hover {
    background-color: transparent;
}

.scrollbox::-webkit-scrollbar-thumb {
    border-radius: 0px;
    border: 0;
    background-color: var(--concept-color);
}

/* 스크롤바 막대 설정*/
.scrollbox::-webkit-scrollbar-button {
    display: none;
}

.scrollbox.b-none {
    border-width: 1px 0;
}

/* .scrollbox::-webkit-scrollbar-thumb:hover{background-color:#a0a0a5;}
  .scrollbox::-webkit-scrollbar-track:hover{background-color:transparent;}*/

/* 스크롤바 개별설정*/
.box1::-webkit-scrollbar-thumb {
    background-color: var(--concept-color);
}

/* 스크롤바 막대 설정*/
.box2::-webkit-scrollbar-thumb {
    background-color: #07a873;
}

/* 스크롤바 막대 설정*/
.box3::-webkit-scrollbar-thumb {
    background-color: var(--dgray-color);
}

/* 스크롤바 막대 설정*/

.scrollbox table {
    width: 100%;
    margin: auto;
    min-width: 100%;
    border-collapse: collapse;
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
    table-layout: fixed;
}

.scrollbox table th {
    text-align: center;
    height: 34px;
    padding: 5px;
    vertical-align: middle;
    background: #f7f8f9;
    border-bottom: 1px solid var(--border-color);
    border-left: 0px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    box-sizing: border-box;
}

.scrollbox table thead {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}

.scrollbox table td {
    text-align: center;
    padding: 5px;
    vertical-align: middle;
    border-bottom: 0px solid var(--border-color);
    border-left: 0px solid var(--border-color);
    font-weight: 300;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.scrollbox table tbody tr:first-of-type td {
    padding-top: 10px;
}

.scrollbox table tfoot,
.scrollbox table tfoot th,
.scrollbox table tfoot td {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    background: #666;
    color: #fff;
}

.scrollbox table th:first-child,
.scrollbox table td:first-child {
    border-left: 0px solid var(--border-color);
}

.scrollbox table tbody tr:hover td {
    background: #f4f8fc;
}

.scrollbox table tbody tr.selected-bg:hover td {
    background: #d0e8f9;
}

.scrollbox table input[type=checkbox]+label {
    padding-left: 16px;
}

.scrollbox.atable {
    height: auto;
    border-width: 1px 0px 0;
}

.scrollbox.atable table {
    table-layout: fixed;
}

.scrollbox.atable th {
    background: #f9f9f9;
    text-align: left;
    padding: 7px 12px;
    font-size: 14px;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    height: auto;
}

.scrollbox.atable td {
    text-align: left;
    padding: 7px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.scrollbox.atable table tbody tr:first-of-type td {
    padding-top: 7px;
}

.scrollbox.atable.border-non th,
.scrollbox.atable.border-non td {
    border: 0;
}

.scrollbox.atable table tbody tr:hover td {
    background: none;
}

.scrollbox.btable table {
    table-layout: fixed;
    min-width: 500px;
}

.scrollbox.ctable {
    height: 500px;
}

.scrollbox.ctable table {
    table-layout: fixed;
}

.scrollbox.ctable table td {
    text-align: left;
    text-transform: uppercase;
    padding: 5px;
    cursor: pointer;
}

.scrollbox.ctable table tbody tr:first-of-type td {
    padding-top: 5px;
}

.scrollbox.ctable::-webkit-scrollbar-thumb {
    background-color: var(--gray-color);
}

.scrollbox.dtable {
    height: auto;
    border-width: 1px 0px 0;
    border-color: #aaa;
}

.scrollbox.dtable table {
    table-layout: fixed;
}

.scrollbox.dtable th {
    background: #f9f9f9;
    text-align: center;
    padding: 7px 10px;
    font-size: 14px;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    height: auto;
}

.scrollbox.dtable td {
    text-align: center;
    padding: 7px 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.scrollbox.dtable table tbody tr:first-of-type td {
    padding-top: 7px;
}

.scrollbox.dtable.border-non th,
.scrollbox.dtable.border-non td {
    border: 0;
}

.scrollbox.dtable table tbody tr:hover td {
    background: none;
}

.scrollbox.dtable table tbody tr:hover td.bg-2 {
    background: #f4f8fc;
}

.scrollbox.dtable table tbody td.bg-2 {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    line-height: 1;
    letter-spacing: -0.01em;
}

.scrollbox table th.bg-3,
.scrollbox table td.bg-3 {
    background: #f6f6f6;
}

.scrollbox table th.bg-2,
.scrollbox table td.bg-2 {
    background: #f4f8fc;
}

.scrollbox table th.bg-1,
.scrollbox table td.bg-1 {
    background: #fff;
}

.scrollbox table .rborder {
    border-right: 1px solid var(--border-color);
}

.scrollbox table td p {
    margin-top: 5px;
}

.scrollbox table td p:first-child {
    margin-top: 0px;
}

.scrollbox table .f-point {
    font-weight: 400;
    color: var(--concept-color);
}

.scrollbox table .f-red {
    font-weight: 400;
    color: var(--red-color);
}

.scrollbox table .f-price {
    font-weight: 500;
    color: var(--red-color);
    text-align: right;
}

.scrollbox table .f-black {
    font-weight: 400;
    color: var(--second-color);
}

.scrollbox table .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scrollbox table .right {
    padding-right: 10px;
}

.scrollbox table .left {
    padding-left: 10px;
}

/* table 좌우사용 END */

.txt-required {
    position: relative;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    line-height: 1;
    letter-spacing: -0.01em;
    cursor: default;
    padding-right: 10px;
}

.txt-required::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '*';
    width: 6px;
    height: 6px;
    border-radius: 0%;
    font-size: 15px;
    color: #ff0000;
}

.col--3 {
    width: 100%;
    display: flex;
    gap: 0px;
    padding-top: 10px;
}

.col--3>* {
    width: -webkit-calc(100% / 3 - 20px);
    width: calc(100% / 3 - 20px);
    margin-left: 30px;
}

.col--3>*:first-of-type {
    margin-left: 0px;
}

.col--4 {
    width: 100%;
    display: flex;
    padding-top: 15px;
}

.col--4>* {
    width: -webkit-calc(100% / 4 - 15px);
    width: calc(100% / 4 - 15px);
    margin-left: 20px;
    border: 1px solid var(--border-color);
    min-height: 300px;
    overflow-y: auto;
    box-sizing: border-box;
}

.col--4>*:first-of-type {
    margin-left: 0px;
}

.title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.title-wrap .tit {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--second-color);
}

.title-wrap .tit-line {
    position: relative;
    width: fit-content;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--second-color);
    z-index: 1;
}

.title-wrap .tit-line::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: var(--concept-color);
    opacity: .4;
    z-index: -1;
}

.section.bg-4 .tit-line::before {
    background: #b9c6f0;
    opacity: 1;
}

.title-wrap .btnArea {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.sec1-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    position: relative;
}

.sec1-top .top-tit {
    position: relative;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--second-color);
    z-index: 1;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.sec1-top .top-tit::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #666;
    z-index: -1;
}

.sec1-top .btnArea {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.sec1-top .btn-m {
    min-width: 70px;
}

.sec1-top .top-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 8px;
    font-size: 14px;
    font-weight: normal;
}

.table-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 5px;
    box-sizing: border-box;
}

.table-bottom>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-bottom .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 100%;
    background: var(--second-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    border-radius: 4px;
}

.table-bottom .cont {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

.table-bottom .stit {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
}

.table-bottom .stit>span {
    font-weight: 800;
}

.table-bottom .stxt {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.2;
    color: #fff;
    opacity: .85;
}

.sec1 .table-bottom {
    background: var(--concept-color);
}

.sec2 .table-bottom {
    background: #07a873;
}

.sec3 .table-bottom {
    background: var(--dgray-color);
}

.sec2 .table-bottom .btn {
    background: var(--orange-color);
}

.sec3 .table-bottom .btn {
    background: var(--sub-color);
}

.sec2 .scrollbox::-webkit-scrollbar-thumb {
    background-color: #07a873;
}

.sec3 .scrollbox::-webkit-scrollbar-thumb {
    background-color: var(--dgray-color);
}

.sec2 .topArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    box-sizing: border-box;
    background: #fff;
    column-gap: 10px;
    padding-bottom: 0;
}

.sec2 .topArea>div {
    flex: 1 1 100%;
}

.sec2 .tit {
    display: flex;
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: var(--second-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    justify-content: space-between;
}

.sec2 .tit span:first-child {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec2 .topArea .btn-type {
    flex: 0 0 60px;
}

.sec2 .midArea {
    padding: 10px;
    box-sizing: border-box;
    font-size: 11px !important;
    max-width: 80%;
    border: 1px solid #ccc;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    margin: 5px 10px;
}

.sec2 .midArea * {
    font-size: 12px !important;
}

.sec2 .midArea2 {
    padding: 2px 5px;
    box-sizing: border-box;
    font-size: 10px !important;
    max-width: 80%;
    border: 1px solid #ccc;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    margin: 20px 10px 5px auto;
}

.sec2 .content-tit {
    font-weight: 700;
    line-height: 1.2;
    color: var(--second-color);
    margin-bottom: 10px;
}

.sec2 .midArea2 .content-tit {
    margin-bottom: 0;
}

.sec2 .content img {
    width: 100%;
}

.sec2 .writer-name {
    position: absolute;
    right: 15px;
    margin-top: -15px;
    width: revert;
    font-weight: 700;
    font-size: 11px !important;
}


.sec2 .scrollbox>section {
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.sec2 .scrollbox>section.right {
    align-items: end;
}

.sec2 .scrollbox>section:first-of-type {
    margin-top: 0px;
    border-top: 0;
}

.col--2 {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 0px;
    padding-top: 30px;
}

.col--2>.content-area {
    width: -webkit-calc(100% - 630px);
    width: calc(100% - 630px);
    margin-left: 0px;
}

.col--2>.swiper-area {
    width: 600px;
    margin-left: 30px;
}

.col--2.reverse>.content-area {
    order: 2;
    margin-left: 30px;
}

.col--2.reverse>.swiper-area {
    order: 1;
    margin-left: 0px;
}

.content-area {
    width: 100%;
}

.swiper-area {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background: #fff;
}

.content-area .scrollbox {
    height: 400px;
    background: #fff;
}

.section.bg-5 .scrollbox {
    height: 650px;
    background: #fff;
}

/* slider */
.imgslider {
    width: 100%;
    height: 100%;
}

.imgslider.swiper-container {
    width: 100%;
    height: 100%;
}

.imgslider .swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}

.imgslider .swiper-pagination {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
}

.imgslider .swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(252, 255, 255, 1);
    border-radius: 50%;
    vertical-align: middle;
    transition: .37s ease;
    margin: 0 3px !important;
    opacity: 1;
    box-sizing: border-box;
}

.imgslider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--concept-color);
}

.imgslider .swiper-button-prev,
.imgslider .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    margin-top: -22px;
}

.imgslider .swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.imgslider .swiper-button-prev {
    left: 40px;
    width: 0px;
    height: 0px;
    background: url(../images/slider-arr-prev.png) no-repeat 50% 50%;
    background-size: auto 44px;
}

.imgslider .swiper-button-next {
    right: 40px;
    width: 0px;
    height: 0px;
    background: url(../images/slider-arr-next.png) no-repeat 50% 50%;
    background-size: auto 44px;
}

.slider-area {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.slider-area .thumb {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.slider-area .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

.slider-area video {
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
    overflow: hidden;
    z-index: -1000;
}

.col--half {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 0px;
    padding-top: 30px;
}

.col--half>* {
    width: -webkit-calc(100% / 2 - 15px);
    width: calc(100% / 2 - 15px);
    margin-left: 30px;
}

.col--half>*:first-of-type {
    margin-left: 0px;
}

.section.bg-5 .tit-line::before {
    background: #e1cca9;
    opacity: 1;
}

.land-search {
    display: flex;
    justify-content: center;
    align-items: center;
}

.land-search .top-search-wrap {
    margin: 0 10px 0 0;
    border-bottom: 1px solid #666;
}

.section.bg-5 .nice-select {
    border: 1px solid #666;
    border-width: 0 0 1px 0;
}

.mid-search {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mid-search .top-search-wrap {
    margin: 0 0px 0 0;
    border-bottom: 1px solid #666;
}

.text-wrap {
    width: 100%;
    max-width: var(--area-width);
    margin: 0 auto;
    padding-top: 15px;
}

.text-wrap .titleBar {
    position: relative;
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    border-radius: 30px;
    padding: 7px 24px 7px 50px;
    background: var(--second-color);
    box-sizing: border-box;
    margin-bottom: 25px;
}

.text-wrap .titleBar .icon {
    position: absolute;
    left: 15px;
    top: -10px;
    width: 28px;
    height: 26px;
    background: url(../images/icon-star.png) no-repeat 0% 0%;
    background-size: auto 26px;
}

.text-wrap .content {
    padding: 0px 10px;
    box-sizing: border-box;
}

.text-wrap .titArea {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.text-wrap .tit {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: var(--second-color);
}

.text-wrap .line {
    flex: 1;
    height: 1px;
    background: #666;
}

.text-wrap li {
    margin-top: 20px;
}

.text-wrap .stit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: var(--second-color);
    margin-bottom: 6px;
}

.text-wrap .num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    widtH: 20px;
    height: 20px;
    background: #84888b;
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    border-radius: 50%;
}

.text-wrap .txt {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.45;
    color: var(--second-color);
    padding-left: 30px;
    box-sizing: border-box;
}

.text-wrap .txt-point {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.45;
    color: var(--red-color);
    padding-left: 10px;
    box-sizing: border-box;
}

.text-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    color: var(--second-color);
    border-radius: 4px;
    border: 1px solid #666;
    padding: 4px 10px;
    box-sizing: border-box;
}

/* m_partner 스와이퍼  */
.swiper_partner {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0px auto;
    z-index: 1;
    padding: 0px 5%;
    box-sizing: border-box;
}

.swiper_partner .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 45px;
}

.swiper_partner .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper_partner .swiper-slide img {
    max-width: 100%;
    max-height: 40px;
    /* border-radius:4px 48px 48px 4px; */
}

.swiper_partner .swiper-scrollbar {
    display: none;
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: #e2e2e2
}

.swiper_partner.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 5%;
    bottom: 0px;
    z-index: 50;
    height: 2px;
    width: 90%;
}

.swiper_partner .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .9);
    border-radius: 0px;
    left: 0;
    top: 0
}

.swiper_partner .swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper_partner .swiper-pagination-progress {
    background: rgba(0, 0, 0, .9);
    position: absolute
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--padding-h)) 0 100px;
    min-height: calc(100vh - 210px);
    box-sizing: border-box;
}

.title {
    font-weight: 700;
    font-size: 36px;
    color: var(--second-color);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}

.title>span {
    position: relative;
    width: fit-content;
    font-weight: 700;
    font-size: 50px;
    color: var(--second-color);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    padding-top: 0px;
    padding-right: 25px;
}

.title>span::after {
    position: absolute;
    content: "";
    right: 0;
    top: 10px;
    width: 16px;
    height: 18px;
    background: url(/images/sub/tit-bg.png) 50% 50% no-repeat;
    background-size: auto 18px;
}

.location {
    width: 100%;
    margin: 0 0 20px;
}

.location li {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1;
    letter-spacing: -0.01em;
}

.location li::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: ' ';
    width: 4px;
    height: 4px;
    background: #bbb;
    border-radius: 50%;
    margin-left: 10px;
}

.location .i_home {
    display: inline-block;
    width: 16px;
    height: 13px;
    background: url(../images/ico_home_bl.png) 0 50% no-repeat;
    text-indent: -9999px;
}

.location li:first-child {
    padding-left: 0px;
}

.location li:first-child::after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: ' ';
    width: 0px;
    height: 0px;
    margin-left: 0px;
}

/* login */
.login-logo {
    width: 100%;
    text-align: center;
    min-height: 60px;
    background: url(../images/logo.png) 50% 0% no-repeat;
    background-size: auto 60px;
    margin-bottom: 20px;
    /*text-indent: -9999px;*/
}

.login-txt {
    text-align: center;
    margin-bottom: 20px;
}

.login-txt>p {
    font-weight: 400;
    font-size: 16px;
    color: #222;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-top: 5px;
}

.login-box {
    width: 100%;
    max-width: 600px;
    background: #fff;
    margin: 30px auto;
    padding: 50px 80px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.login-box .btn-area {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin: 30px auto 0;
}

.login-box .btn-area>a,
.login-box .btn-area>button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    height: 45px;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-box #btn-login {
    width: 100%;
    background: var(--concept-color);
}

.login-box #btn-temp-login {
    background: var(--gray-color);
    flex: 1;
}

.login-box .btn-login>span {
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
    background: url(../images/i_lock.png) no-repeat left center;
    background-size: auto 20px;
    height: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    line-height: 1;
}

.login-box .btn-join {
    flex: 1;
    background: var(--sub-color);
}

.login-box .btn-find {
    flex: 1;
    background: var(--second-color);
}

.login-box .input_id,
.login-box .input_pw {
    margin-top: 10px;
}

.login-box .id-save {
    margin-top: 15px;
}

.tab-contents {
    display: block;
    width: 100%;
    margin: 0px auto 40px;
}

.login-tab {
    width: 100%;
    max-width: 600px;
    margin: 0px auto 10px;
}

.login-tab ul {
    display: flex;
}

.login-tab li {
    flex: 1;
}

.login-tab li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1;
}

.login-tab li.active a {
    border: 1px solid var(--concept-color);
    background: var(--concept-color);
    color: #fff;
}

.id-box {
    width: 100%;
    max-width: 600px;
    background: #fff;
    margin: 0px auto;
    padding: 40px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.id-box .txt {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    border-bottom: 1px solid #666;
    padding-left: 18px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.id-box .txt::before {
    position: absolute;
    content: '※';
    left: 0;
    top: 2px;
    font-size: 14px;
    color: inherit;
    font-family: 'GmarketSansMedium';
}

.id-box .select_sty {
    min-width: 80px;
}

.id-box .btn-type.btn {
    padding: 0 15px;
}

.id-box .desc {
    margin-top: 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 15px;
    box-sizing: border-box;
}

.register-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--second-color);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    background: url(../images/i_doc.png) 0 50% no-repeat;
    padding-left: 20px;
}

/* form */
.form_box {
    margin: 0px auto;
    border: 1px solid #ddd;
    padding: 50px;
    box-sizing: border-box;
}

.form_sty {
    width: 100%;
    margin: 0px 0px 40px;
    border-top: 1px solid #aaa;
    padding-top: 20px;
    box-sizing: border-box;
}

.form_sty>ul {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0px;
    padding: 6px 0px;
}

.form_sty>ul>li {
    padding: 0px 10px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 30px;
}

.form_sty>ul>li.top {
    vertical-align: top;
    padding-top: 10px;
    align-self: flex-start;
}

.form_sty .tit {
    flex: 0 0 150px;
}

.form_sty .tit>* {
    position: relative;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    line-height: 1;
    letter-spacing: -0.01em;
    cursor: default;
}

.form_sty .tit>*.required {
    padding-right: 10px;
}

.form_sty .tit>*.required::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '*';
    width: 6px;
    height: 6px;
    border-radius: 0%;
    font-size: 15px;
    color: #ff0000;
}

.form_sty .tit.sm {
    flex: 0 0 100px;
}

.form_sty .tit.lg {
    flex: 0 0 240px;
}

.form_sty .cont {
    flex: 1;
    font-size: 14px;
}

.form_sty .select-w {
    width: 30%;
}

/* 모바일 100% */
.form_sty .input-w {
    flex: 1;
}

.form_sty .w1 {
    flex: 0 0 150px;
}

.form_sty .w2 {
    width: 240px;
}

.form_sty .sm {
    min-width: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.form_sty.b-none {
    border-top: 0;
    padding-top: 0px;
    margin: 0px 0px 20px;
}

.form_sty.right-v .tit {
    justify-content: flex-end;
    padding: 0px 20px 0 10px;
}

.form_sty .select-div {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form_sty .area-search {
    top: 30px;
}

.form_sty .calendar-wrap {
    top: 30px;
}

.form_box.out {
    width: 850px;
    padding: 40px;
}

.form_box.out .form_sty {
    margin: 0px;
    border-top: 0;
    padding-top: 0px;
}

.form_box.out .form_sty>ul {
    border-bottom: 1px solid #ddd;
    padding: 15px 0px;
}

.form_box.out .form_sty>ul:nth-of-type(2) {
    border-bottom: 0px solid #ddd;
    padding: 15px 0px 0px;
    background: #fafafa;
}

.form_box.out .form_sty>ul:nth-of-type(3) {
    background: #fafafa;
}

.form_sty.pop {
    margin: 0px auto;
    border-top: 0;
    padding-top: 0px;
}

.id-box .form_sty>ul {
    padding: 10px 0px;
}

.id-box .form_sty>ul>li {
    min-height: 40px;
}

.f-group {
    display: flex;
    width: 100%;
    margin: 0px;
    align-items: center;
    gap: 10px;
}

.input_wrap {
    width: 100%;
    flex-wrap: wrap;
}

.input_list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    width: calc(100% - 90px);
    margin-right: 6.5px;
}

.add_field {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    padding: 0 16px;
    color: #fff;
    background: var(--sub-color);
    border-radius: 4px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.add_field:hover {
    background-color: var(--concept-color);
    color: #fff;
}

.remove_field {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    padding: 0 16px;
    color: #fff;
    background: var(--gray-color);
    border-radius: 4px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.remove_field:hover {
    background: #333;
    color: #fff;
}

#land-terms {
    display: none;
}

#land-area {
    display: none;
}

#land-theme {
    display: none;
}

#land-headletter {
    display: none;
}

#certificate-field {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tit-required {
    margin-bottom: 15px;
}

.tit-required>span {
    position: relative;
    display: inline-block;
    color: #aaa;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.tit-required>span.required {
    padding-right: 10px;
}

.tit-required>span.required::before {
    position: absolute;
    right: 0;
    top: 0;
    content: '*';
    width: 6px;
    height: 6px;
    border-radius: 0%;
    font-size: 14px;
    color: #ff0000;
}

.file--name {
    display: inline-block;
    margin-left: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #666;
}

.file--del {
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: #666;
    background: url(/images/layout/btn_close_14.png) 0 50% no-repeat;
    padding-left: 20px;
    margin-top: 10px;
    box-sizing: border-box;
}

/* file upload */
.inputfile-wrap {
    position: relative;
    display: flex;
    width: 100%;
}

.inputfile-wrap input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.inputfile-wrap label.btn {
    display: block;
    width: 90px;
    height: 30px;
    margin-left: 10px;
    color: #fff;
    border: 0px solid #262729;
    background: #a3a5aa;
    line-height: 30px;
    padding: 0px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    box-sizing: border-box;
}

.inputfile-wrap input {
    flex: 1;
    height: 30px;
    padding: 0 10px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: #666;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.15s ease-in-out;
}

.inputfile-wrap input:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--concept-color);
}

.inputfile-wrap.line input {
    border: 1px solid #ccc;
    border-width: 0 0 1px 0;
    border-radius: 0px;
    padding: 0;
}

.agreement_box {
    width: 100%;
    border-top: 1px solid #666;
    padding-top: 20px;
    box-sizing: border-box;
}

.agreement_box>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    /*flex-wrap: wrap; */
}

.agreement_box .agreement_tit {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 1.2;
}

.agreement_box .viewBtn {
    display: inline-flex;
    align-items: center;
    padding-left: 10px;
    box-sizing: border-box;
}

.agreement_box .viewBtn>a {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--concept-color);
}

.agreement_box .viewBtn>a::after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--concept-color);
}

.register_ok {
    margin: 40px 0;
    background: url(../images/register-ok.png) 50% 0 no-repeat;
    background-size: auto 50px;
    padding-top: 80px;
    text-align: center;
}

.register_ok>p {
    margin-top: 20px;
}

.member_out {
    margin: 80px 0 40px;
    background: url(../images/outimg.png) 50% 0 no-repeat;
    background-size: auto 140px;
    padding-top: 160px;
    text-align: center;
}

/* text */
.tit-xlg {
    font-weight: 700;
    font-size: 40px;
    color: #000;
    line-height: 1.45;
    letter-spacing: 0;
}

.tit-lg {
    font-weight: 700;
    font-size: 30px;
    color: #000;
    line-height: 1.45;
    letter-spacing: 0;
}

.tit-m {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    line-height: 1.45;
    letter-spacing: 0;
}

.tit-sm {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    line-height: 1.45;
    letter-spacing: 0;
}

.tit-s {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    line-height: 1.45;
    letter-spacing: 0;
}

.txt-lg {
    font-weight: 400;
    font-size: 24px;
    color: #333;
    line-height: 1.45;
}

.txt-m {
    font-weight: 300;
    font-size: 18px;
    color: #333;
    line-height: 1.45;
}

.txt-sm {
    font-weight: 300;
    font-size: 16px;
    color: #333;
    line-height: 1.45;
}

.txt-s {
    font-weight: 300;
    font-size: 14px;
    color: #333;
    line-height: 1.45;
}

.tit--round {
    position: relative;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    line-height: 1.45;
    padding-left: 20px;
    box-sizing: border-box;
}

.tit--round::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 12px;
    background: var(--concept-color);
    border-radius: 24px;
    width: 12px;
    height: 6px;
    /* border-radius:50%; width:7px; height:7px;*/
}

.bullet-tit {
    position: relative;
    font-weight: 400;
    font-size: 20px;
    color: #333;
    line-height: 1.45;
    padding-left: 15px;
    letter-spacing: 0em;
    line-height: 1.4;
    box-sizing: border-box;
}

.bullet-tit::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--concept-color);
    border-radius: 50%;
}

.bullet-txt {
    position: relative;
    font-weight: 300;
    font-size: 16px;
    color: #333;
    line-height: 1.45;
    padding-left: 10px;
    letter-spacing: 0em;
    line-height: 1.4;
    box-sizing: border-box;
}

.bullet-txt::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    background: var(--concept-color);
    border-radius: 50%;
}

.bullet-stxt {
    position: relative;
    font-weight: 300;
    font-size: 14px;
    color: #444;
    line-height: 1.45;
    padding-left: 8px;
    letter-spacing: 0em;
    line-height: 1.4;
    box-sizing: border-box;
}

.bullet-stxt::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 7px;
    width: 3px;
    height: 3px;
    background: var(--concept-color);
    border-radius: 50%;
}

.line-list {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    color: #333;
    line-height: 1.45;
    padding-left: 12px;
    box-sizing: border-box;
}

.line-list::before {
    position: absolute;
    content: '-';
    left: 0;
    top: 0px;
    font-size: 16px;
    color: #333;
}

/* 레이어팝업 Basic */
.popupWrap_A {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    /*background:#fff;*/
    margin: 0 auto;
    padding: 0 2%;
    box-sizing: border-box;
}

/* basic */
.popupWrap_A img {
    max-width: 100%;
}

.icon-close-black {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: url(../images/close_black.png) 50% 50% no-repeat;
    background-size: 18px auto;
    text-indent: -9999px;
    z-index: 2
}

.icon-close-white {
    position: absolute;
    right: 5px;
    top: 0px;
    width: 21px;
    height: 21px;
    background: url(../images/close_white.png) 50% 50% no-repeat;
    text-indent: -9999px;
    z-index: 2
}

.icon-close-white.p-inner {
    right: 20px;
    top: 13px;
}

.icon-close-black.p-inner {
    right: 20px;
    top: 13px;
}

.icon-close-circle {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    background: url(../images/close_white.png) 50% 50% no-repeat var(--concept-color);
    background-size: auto 12px;
    border-radius: 50%;
    text-indent: -9999px;
    z-index: 2
}

.icon-close-pop {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    background: url(../images/close_white.png) 50% 50% no-repeat var(--concept-color);
    background-size: auto 14px;
    text-indent: -9999px;
    z-index: 2
}

.popupBox_A {
    position: relative;
    width: 100%;
    padding: 0px;
    /* background:#fff; */
    margin-top: 30px;
    border-radius: 0px;
    overflow: auto;
}

/* basic - x버튼 위에 */
.popupBox_A img {
    max-width: 100%;
}

/* 스크롤바 설정*/
.popupBox_A::-webkit-scrollbar {
    width: 10px;
}

.popupBox_A::-webkit-scrollbar:vertical {
    width: 10px;
}

.popupBox_A::-webkit-scrollbar:horizontal {
    height: 10px;
}

.popupBox_A::-webkit-scrollbar-thumb {
    background-color: var(--concept-color);
}

.popupBox_A::-webkit-scrollbar-track {
    background-color: #242424;
}

.pop-title {
    font-weight: 700;
    font-size: 17px;
    line-height: 1;
    color: #222;
    letter-spacing: -0.02em;
}

/* popup title */
.pop--topline {
    width: 100%;
    padding: 20px 25px 10px;
    border-bottom: 1px solid var(--border-color);
}

.pop--top {
    width: 100%;
    padding: 15px 25px;
    background: var(--concept-color)
        /*#222*/
    ;
}

.popup--inner {
    width: 100%;
    background: #fff;
    max-height: 85vh;
    padding: 35px;
    box-sizing: border-box;
    position: relative;
    overflow: auto;
}

/* // 팝업 Basic */

/* newwin-pop */
body.pop-s {
    min-width: 100%;
}

.newwin-wrap {
    width: 100%;
    margin: 0px auto;
    padding: 20px 20px;
    box-sizing: border-box;
}

.newwin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.newwin-top>* {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.newwin-top .top-tit {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--second-color);
}

.newwin-top .btnArea {
    justify-content: flex-end;
    gap: 5px;
    padding-right: 40px;
}

.newwin-search {
    justify-content: center;
}

.newwin-search .search-wrap {
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #666;
}

.newwin-search .search-wrap>* {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.newwin-search-s {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.newwin-search-ad {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.newwin-search-ad .search-wrap {
    display: inline-flex;
    align-items: center;
    border-bottom: 0;
}

.newwin-search-ad .search-wrap>* {
    display: inline-flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.newwin-tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--second-color);
    margin-bottom: 15px;
    padding-right: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #666;
    box-sizing: border-box;
}

.newwin-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0px auto;
}

.i-list {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--second-color);
    padding-left: 28px;
    background: url(../images/arrow-right.png) 0% 50% no-repeat;
    background-size: 20px auto;
}

.scrollbox.type-1 {
    height: calc(100vh - 85px);
}

.scrollbox.type-2 {
    height: calc(100vh - 130px);
}

.newwin-wrap .form_sty {
    margin: 0px 0px 20px;
    padding-top: 10px;
}

.newwin-scroll {
    width: 100%;
    margin: 0 auto;
    height: calc(100vh - 85px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.newwin-scroll::-webkit-scrollbar {
    width: 6px;
}

.newwin-scroll::-webkit-scrollbar:vertical {
    width: 6px;
}

.newwin-scroll::-webkit-scrollbar:horizontal {
    height: 6px;
}

.newwin-scroll::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: transparent;
}

/* 스크롤바 뒷 배경 설정*/
.newwin-scroll::-webkit-scrollbar-track:hover {
    background-color: transparent;
}

.newwin-scroll::-webkit-scrollbar-thumb {
    border-radius: 0px;
    border: 0;
    background-color: var(--concept-color);
}

/* 스크롤바 막대 설정*/
.newwin-scroll::-webkit-scrollbar-button {
    display: none;
}

.newwin-scroll.type1 {
    height: calc(100vh - 180px);
    border: 1px solid #ddd;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* land-select */
.newwin-scroll.type2 {
    height: calc(100vh - 290px);
    border: 1px solid #ddd;
    box-sizing: border-box;
    margin-bottom: 15px;
}

/*  */
.newwin-scroll.type3 {
    width: 100%;
    height: calc(100vh - 290px);
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.newwin-scroll.type4 {
    width: 100%;
    height: calc(100vh - 125px);
}

/* 글쓰기 공통 */

.newwin-scroll.type5 {
    height: calc(100vh - 233px);
    border: 0px solid #ddd;
    box-sizing: border-box;
    margin-top: 14px;
}

/*  내가 문의한 글 -> .edit-form.type1 로 변경:통일성을 위해 */
.newwin-scroll.type6 {
    height: calc(100vh - 200px);
    border: 0px solid #ddd;
    box-sizing: border-box;
    margin-top: 14px;
}

/*  내가 문의한 글 -> .edit-form.type2 로 변경:통일성을 위해 */

.bottomBtn {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    z-index: 2;
}

/* 글쓰기 공통 하단 */

/* 랜드사 선택테이블 */
.land-search-table {
    width: 100%;
}

.land-search-table>ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    max-height: 148px;
    overflow: hidden;
}

.land-search-table>ul>li {
    box-sizing: border-box;
    padding: 0;
}

.textarea-h1 {
    align-items: flex-start !important;
    height: calc(100vh - 250px);
    padding: 0 !important;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

/* 광고등록 edit 높이 고정 */
.textarea-h2 {
    align-items: flex-start !important;
    height: calc(100vh - 230px);
    padding: 0 !important;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

/* 내 광고 edit 높이 고정 */
.edit {
    width: 100%;
    align-items: flex-start !important;
    padding: 0 !important;
    flex-direction: column;
    box-sizing: border-box;
}

/* 내 광고 edit 높이 고정 */

.newwin-col2 {
    display: flex;
    gap: 20px;
}

.newwin-col2>* {
    width: calc(50% - 10px);
    height: 100%;
    position: relative;
}

.newwin-col2>*>h3 {
    margin-bottom: 10px;
}

/* 항공 문의 */
.newwin-col1-2 {
    display: flex;
    gap: 20px;
}

.newwin-col1-2>* {
    width: calc(65% - 10px);
    height: 100%;
    position: relative;
}

.newwin-col1-2>*:last-child {
    width: calc(35% - 10px);
}

.newwin-col1-2>*>h3 {
    margin-bottom: 10px;
}

.newwin-col1-2 .form_sty {
    padding-bottom: 40px;
    box-sizing: border-box;
}

.newwin-col1-2 .edit-form.type1 {
    height: calc(100vh - 233px);
    padding-bottom: 45px;
    margin-top: 14px;
}

/* 내가 문의한 글 에디터 영역 */

.newwin-col2-1 {
    display: flex;
    gap: 20px;
}

.newwin-col2-1>* {
    width: calc(35% - 10px);
    height: 100%;
    position: relative;
}

.newwin-col2-1>*:last-child {
    width: calc(65% - 10px);
}

.newwin-col2-1>*>h3 {
    margin-bottom: 10px;
}

.newwin-col2-1 .form_sty {
    padding-bottom: 40px;
    box-sizing: border-box;
}

/* 여행상품 홍보 div */
.newwin-col2-2 {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0px;
}

/* 여행상품 홍보 글쓰기 : ad-write.html */
.newwin-col2-2 .first {
    flex: 1;
    height: 100%;
    position: relative;
}

.newwin-col2-2 .iconArea {
    flex: 1;
    height: 100%;
    min-height: calc(100vh - 85px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.newwin-col2-2 .iconArea img {
    max-width: 100%;
}

.newwin-col2-2 .form {
    flex: 1;
    height: 100%;
    position: relative;
}

.newwin-col2-2 .editWrap {
    position: relative;
    width: -webkit-calc(100% / 3 + 13px);
    width: calc(100% / 3 + 13px);
    height: 100%;
    margin-left: 20px;
}

/* 하단버튼제외 : height:calc(100vh - 140px); */
.newwin-col2-2 .listWrap {
    position: relative;
    width: -webkit-calc(100% / 3 - 20px);
    width: calc(100% / 3 - 20px);
    height: 100%;
}

/* 내가 문의한 글 수정 / 삭제 : my-qa.html   */
.newwin-col2-2 .qaWrap {
    position: relative;
    width: -webkit-calc(100% / 3 - 20px);
    width: calc(100% / 3 - 20px);
    height: 100%;
}

/* 내가 문의한 글 수정 / 삭제 : my-qa.html   */


.newwin-col2-2 .edit-form {
    width: 100%;
    height: calc(100vh - 85px);
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 45px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.newwin-col2-2 .box {
    width: 100%;
    height: calc(100vh - 242px);
    border-top: 0px solid #ddd;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    box-sizing: border-box;
}

.newwin-col2-2 .box>h3 {
    position: relative;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    line-height: 1.45;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.newwin-col2-2 .box>h3::before {
    position: absolute;
    content: ' ';
    left: 0;
    top: 12px;
    background: var(--concept-color);
    border-radius: 24px;
    width: 12px;
    height: 6px;
}

.newwin-col2-2 .box dl {
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.newwin-col2-2 .box dt {
    width: 100%;
    margin-bottom: 10px;
}

.newwin-col2-2 .box dd {
    width: 100%;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.newwin-col2-2 .box .txt-sm {
    width: 100%;
    padding-left: 10px;
    box-sizing: border-box;
    margin: 5px 0 10px;
}

.newwin-col2-2 .edit-form.type1 {
    height: calc(100vh - 233px);
    padding-bottom: 45px;
    margin-top: 14px;
}

/* 내가 문의한 글 에디터 영역 */
.newwin-col2-2 .edit-form.type2 {
    height: calc(100vh - 200px);
    margin-top: 14px;
}

/*  내가 문의한 글 : 컨텐츠 보여주는 영역 */
.newwin-col2-2 .edit-form.type3 {
    height: calc(100vh - 245px);
}

/*  상세문의 : 컨텐츠 보여주는 영역 */
.newwin-col2-2 .edit-form.type4 {
    height: calc(100vh - 245px);
    padding-bottom: 45px;
}

/*  상세문의 에디터 영역  */
.newwin-col2-2 .edit-form img {
    max-width: 100%;
}

/* 여행상품 홍보 div End */

.newwin-col3 {
    display: flex;
    gap: 20px;
}

.newwin-col3>* {
    width: calc(33.33333% - 13.33333px);
    height: 100%;
    position: relative;
}

.newwin-col3>*>h3 {
    margin-bottom: 10px;
}

.iframe {
    width: 100%;
    border: 0;
    height: 100%;
}

.scrollbox.type-iframe {
    height: calc(100vh - 85px);
    padding-bottom: 40px;
    box-sizing: border-box;
    overflow-y: hidden;
}

.product-contents {
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
}

.product-contents img {
    max-width: 100%;
}

.ad-form {
    position: relative;
    width: 100%;
    height: 100%;
}

.newwin-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /*background: #ecf5fc;*/
    background: #fff;
    border: 0px solid #ddd;
    box-sizing: border-box;
    z-index: 2;
}

.selected-bg {
    background: #d0e8f9;
}

.border-box {
    display: inline-block;
    width: 100%;
    border: 1px solid var(--border-color);
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #fafafa;
    border-radius: 4px;
    box-sizing: border-box;
}

.border-box::-webkit-scrollbar {
    width: 6px;
}

.border-box::-webkit-scrollbar:vertical {
    width: 6px;
}

.border-box::-webkit-scrollbar:horizontal {
    height: 6px;
}

.border-box::-webkit-scrollbar-thumb {
    border-radius: 0px;
    border: 0;
    background-color: #aaa !important;
}

/* 스크롤바 막대 설정*/

.input_title {
    width: 100%;
    height: 30px;
    margin-bottom: 8px;
}

.input_title input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0px solid var(--border-color);
    background: #fff;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    line-height: 1.45;
    letter-spacing: 0;
    box-sizing: border-box;
}

.input_title input:focus {
    outline: none;
    background: #fff;
}

/* print */
@media print {
    @page {
        size: 210mm 297mm;
        /* 실제 인쇄용지 크기 지정 */
        margin: 0mm
    }

    * {
        -webkit-print-color-adjust: exact !important;
        /* Chrome, Safari 6 – 15.3, Edge */
        color-adjust: exact !important;
        /* Firefox 48 – 96 */
        print-color-adjust: exact !important;
        /* Firefox 97+, Safari 15.4+ */

    }

    body {
        margin: 0;
        padding: 0;
        height: auto;
        margin-top: 0px;
        /* 아래 pop_from_fix 의 margin-top을 적절히 조절해서 위치를 조정한다. */
    }

    .no-print {
        display: none !important;
    }
}

/* ...줄임표 옆 아이콘적용시 */
.subject--wrap {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.subject--wrap .b-subject {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
}

.subject--wrap .list--type {
    width: 80px;
    margin-left: 4px;
    text-align: right
}

.sp--icon {
    display: inline-block;
    vertical-align: middle;
    border-radius: 24px;
    padding: 8px 12px 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
}

/* ...줄임표 옆 아이콘적용시 END */
















.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 5px 0 0;
}

.image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 이미지 비율을 유지하면서 컨테이너를 채움 */
    object-position: center;
    /* 이미지 중앙 정렬 */
}


.land-name {
    display: inline-block;
    position: relative;
    line-height: 16px;
}

.land-name span {
    display: inline-block;
    padding: 0px 5px;
    font-weight: bold;
    font-size: 9px;
    border-radius: 12px;
    text-align: center;
    vertical-align: middle;
}

.recomm-badge-1 {
    display: flex;
    border: 1px solid #8e44ad;
    color: #8e44ad;
}

.recomm-badge-2 {
    display: flex;
    border: 1px solid #0f8034;
    color: #0f8034;
}



/* 20250828 배너추가작업 */
:root {
    --banner-position: 40px;
}

.leftBanner {
    position: fixed;
    top: 346px;
    left: var(--banner-position);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 180px;
    z-index: 99;
}

.leftBanner>* {
    width: 100%;
}

.rightBanner {
    position: fixed;
    top: 346px;
    right: var(--banner-position);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 180px;
    z-index: 99;
}

.rightBanner>* {
    width: 100%;
}

.card-l img {
    width: 100%;
}

.card-r {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    /* min-height: 160px; */
    border-radius: 16px;
    padding: 12px 5px 12px;
    box-sizing: border-box;
    cursor: pointer;
}

.card-r.bg1 {
    background: url(/images/rbnr-bg01.png) 100% 0% no-repeat #fff;
    background-size: 100% 100%;
}

.card-r.bg2 {
    background: url(/images/rbnr-bg02.png) 0% 0% no-repeat #fff;
    background-size: 100% 100%;
}

.card-r.bg3 {
    background: url(/images/rbnr-bg03.png) 100% 0% no-repeat #fff;
    background-size: 100% 100%;
}

.card-r.bg1 {
    color: #4547a9;
    border: 2px solid #4547a9;
    transition: all 0.25s ease-in-out;
}

.card-r.bg2 {
    color: #23ad67;
    border: 2px solid #23ad67;
    transition: all 0.25s ease-in-out;
}

.card-r.bg3 {
    color: #238dd8;
    border: 2px solid #238dd8;
    transition: all 0.25s ease-in-out;
}

.card-r.bg4 {
    color: #3f880e;
    border: 2px solid #3f880e;
    transition: all 0.25s ease-in-out;
}

.card-r.bg1:hover {
    background-color: #4547a9;
    color: #fff;
    transition: all 0.35s ease-in-out;
}

.card-r.bg2:hover {
    background-color: #23ad67;
    color: #fff;
}

.card-r.bg3:hover {
    background-color: #238dd8;
    color: #fff;
}

.card-r.bg4:hover {
    background-color: #3f880e;
    color: #fff;
}

.card-r.bg4:hover svg {
    fill: #fff;
    transition: all 0.35s ease-in-out;
}

.card-r:hover .txt {
    background-color: transparent;
}


.card-r .tit {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.card-r .go {
    margin-bottom: 8px;
    padding: 5px 10px;
    background-color: #000;
    border-radius: 10px;
    color: yellow;
    display: flex;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    align-items: center;
}

.card-r .txt {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px;
}

.card-r>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.card-r img {
    width: 100%;
}




/**
검색엔진 추가 css
**/

.search-container {
    background-color: #ffffff;
    border: 1px solid #dbe2e8;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 680px;
    box-sizing: border-box;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-container .area-search {
    width: 100%;
}

.search-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    column-gap: 30px;
}

.search-header .input-transparent input,
.location-section .input-transparent input {
    text-align: center;
    flex: 1;
    font-size: 1.1em;
    font-weight: 500;
    color: #495057;
}

.search-header .fa-globe {
    font-size: 1.5em;
    color: #92a4b8;
}

.location-section,
.people-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 5px;
    column-gap: 30px;
}

.location-section {
    border-bottom: 1px solid #e9ecef;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-grow: 1;
    max-width: 20%;
}

.input-group label {
    font-size: 13px;
    color: #495057;
    font-weight: 500;
}

.input-group .count-control {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #dbe2e8;
    border-radius: 20px;
    padding: 4px;
    background-color: #f8f9fa;
    max-width: 100%;
}

.count-control button {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
    background: none !important;
}

.count-control button:hover {
    color: #333;
}

.count-control input {
    font-size: 13px;
    font-weight: 500;
    color: #343a40;
    padding: 0 5px;
    max-width: 25px;
    text-align: center;
}

.search-button-container {
    text-align: center;
    margin-top: 10px;
}

.search-button {
    background: none;
    background-color: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 8px;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 80px;
    transition: background-color 0.2s, box-shadow 0.2s;
}


.search-section>div:nth-child(1) {
    order: 1;
}

.search-section>div:nth-child(2) {
    order: 2;
}

.search-section.reverse>div:nth-child(1) {
    order: 2;
}

.search-section.reverse>div:nth-child(2) {
    order: 1;
}

.search-section+.title-wrap {
    padding-top: 30px;
}



/* 20251016 추가작업 */
.quick_title {
    font-weight: 800;
    font-size: 28px;
    color: #35425b;
    line-height: 1.2;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.quick_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 20px auto 40px;
    column-gap: 80px;
}

.quick_wrap>* {
    flex: 1 1 calc(100% / 4 - 80px);
}

:root {
    --line-thickness: 2px;
    --line-color: #3498db; /* 파란색 계열 */
    --line-duration: 0.15s; /* 각 선이 그려지는 시간 */
}

.quick_wrap .box {
    padding: 5px 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 0px solid #ddd;
    /* padding:30px 20px 15px;*/
    border-radius: 16px;
    box-sizing: border-box;
    position: relative;
}

/* 2. ::before: 상단 (Top) 선 담당 */
.quick_wrap .box::before {
    content: '';
    position: absolute;
    
    /* 기본 가로 선 (상단) 시작 설정 */
    top: 0;
    left: 0;
    width: 0%; 
    height: var(--line-thickness);
    background: var(--line-color);
    transform-origin: left top; 
    transition: width var(--line-duration) ease-out;
}

/* 3. ::after: 우측 (Right) 선 담당 */
.quick_wrap .box::after {
    content: '';
    position: absolute;
    
    /* 기본 세로 선 (우측) 시작 설정 */
    top: 0;
    right: 0; 
    height: 0%;
    width: var(--line-thickness);
    background: var(--line-color);

    transform-origin: right top; 
    
    transition: height var(--line-duration) ease-out;
}

/* 4. HOVER 시 애니메이션 순서 제어 */
.quick_wrap .box:hover::before {
    /* 1. 상단 선: width 100%로 확장 (딜레이 0s) */
    width: calc(100% - var(--line-thickness));
    
    /* 3. 하단 선: translateY로 아래로 이동 후 scaleX(1)로 확장 (딜레이 0.5s) */
    transform: translateY(calc(100% - var(--line-thickness))) scaleX(1);
    
    /* 순서 제어: width(상단) 0s, transform(하단) 0.5s */
    transition-delay: 0s; 
}

.quick_wrap .box:hover::after {
    /* 2. 우측 선: height 100%로 확장 (딜레이 0.25s) */
    height: 100%;
    
    transform: translateX(calc(-100% + var(--line-thickness))) scaleY(1);
    
    transition-delay: var(--line-duration);
}


.quick_wrap .box a { width: 100%; }

/* 2. 하단 (Bottom) 선 담당 */
.quick_wrap .box a::before {
    content: '';
    position: absolute;
    
    /* 기본 가로 선 (하단) 시작 설정 */
    bottom: 0;
    right: 0;
    width: 0%; 
    height: var(--line-thickness);
    background: var(--line-color);
    transform-origin: right bottom; 
    transition: width var(--line-duration) ease-out;
}

/* 3. ::after: 좌측 (Left) 선 담당 */
.quick_wrap .box a::after {
    content: '';
    position: absolute;
    
    /* 기본 세로 선 (좌측) 시작 설정 */
    bottom: 0;
    left: 0; 
    height: 0%;
    width: var(--line-thickness);
    background: var(--line-color);

    transform-origin: left bottom; 
    
    transition: height var(--line-duration) ease-out;
}

/* 4. HOVER 시 애니메이션 순서 제어 */
.quick_wrap .box:hover a::before {
    /* 1. 상단 선: width 100%로 확장 (딜레이 0s) */
    width: calc(100% - var(--line-thickness));    
    /* 순서 제어: width(상단) 0s, transform(하단) 0.5s */
    transition-delay: calc(var(--line-duration) * 2); 
}

.quick_wrap .box:hover a::after {
    /* 2. 우측 선: height 100%로 확장 (딜레이 0.25s) */
    height: 100%;
    transition-delay: calc(var(--line-duration) * 3);
}



/* .quick_wrap .icon{margin-bottom:10px;} */
.quick_wrap .icon img {
    height: 130px;
}

.quick_wrap .tit {
    flex: 1;
    font-weight: 300;
    font-size: 16px;
    color: #333;
    line-height: 1.45;
    margin-bottom: 8px;
}

.quick_wrap .tit strong {
    font-weight: 600;
}

.quick_wrap .tit>.red {
    border: 1px solid var(--red-color);
    border-radius: 10px;
    padding: 2px 7px;
    font-size: 14px;
}

.quick_wrap .btn {
    width: 100px;
    font-weight: 500;
    font-size: 13px;
    color: #333;
    line-height: 1.2;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #666;
    padding: 5px 0;
    box-sizing: border-box;
}

.quick_wrap .btn:hover {
    color: #fff;
    border: 1px solid #333;
    background: #333;
}

.ui-datepicker .ui-datepicker-title {
    display: flex;
    margin-top: -3px !important;
    justify-content: center;
    gap: 5px;
    font-size: 1em;
    align-items: center;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    border: 1px solid #ccc;
    width: auto !important;
    appearance: listbox;
    padding: 5px 5px;
}

/* 반응형 처리 */
@media screen and (max-width: 767px) {
    .leftBanner, .rightBanner { display: none !important; }
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}