@charset "utf-8";

#wrapper {
    position: relative;
    overflow: hidden;
    max-width: 639px;
    min-height: 100vh;
    margin: 0 auto;
    background-color: var(--bg-basic);
    box-shadow: 0 0 0 rgba(var(--color-black-rgb),0);
}

.in-t-20 #wrapper { padding-top: 20px; }
.in-t-60 #wrapper { padding-top: 60px; }
.in-t-80 #wrapper { padding-top: 80px; }
.in-t-90 #wrapper { padding-top: 90px; }
.in-t-150 #wrapper { padding-top: 150px; }

.in-b-60 #wrapper { padding-bottom: 60px; }
.in-b-120 #wrapper { padding-bottom: 120px; }

h3.h3-tit {
    position: relative;
    margin-bottom: 20px;
}

h3.h3-title {
    position: relative;
    margin-bottom: 10px;
}

h3.h3-tit em {
    font-family: var(--font-point-bold);
    font-size: 1.8rem;
}

h4.operato-use figure {
    flex-shrink: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid var(--border-line);
    font-size: 0;
    border-radius: 50%;
}

h4.operato-use span {
    flex-grow: 1;
}

h4.h4-tit {
    position: relative;
    margin-bottom: 20px;
}

h4.h4-tit em {
    font-family: var(--font-point);
    font-size: 1.8rem;
}

h4.h4-tit .date {
    font-size: 1.6rem;
    color: var(--color-gray);
}

ul.jum-ul li {
    position: relative;
    padding-left: 15px;
}

ul.jum-ul li:after {
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--color-gray);
    border-radius: 50%;
    content: '';
}

ul.jum-ul li:not(:first-child) {
    margin-top: 10px;
}

ul.jumline-info li {
    position: relative;
    z-index: 2;
}

ul.jumline-info li:before {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 1px;
    border-top: 1px dashed rgba(var(--color-black-rgb),0.1);
    content: '';
    z-index: -1;
}

ul.jumline-info li:not(:first-child) {
    margin-top: 10px;
}

ul.jumline-info li em {
    display: inline-block;
    padding-right: 10px;
    background-color: var(--bg-gray-light);
    color: var(--color-gray);
}

ul.jumline-info li span {
    padding-left: 10px;
    background-color: var(--bg-gray-light);
    text-align: right;
}

.bottom-btn-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    box-shadow: 0 0 10px rgba(var(--color-black-rgb),0.05);
}

.bottom-btn-box .collect-price {
    height: 60px;
    padding: 0 20px;
    background-color: var(--bg-basic);
}

.bottom-btn-box .btns {
    font-family: var(--font-point);
}

.collect-price .collect {
    color: var(--color-gray-deep);
}

.collect-price .collect strong {
    color: var(--color-basic);
}

.collect-price .price {
    color: var(--color-point);
    font-size: 2.6rem;
}

.collect-price .price small {
    font-size: 1.6rem;
}

.switch-onoff-btn {
    position: relative;
    width: 40px;
    height: 26px;
    line-height: 26px;
    border: 1px solid rgba(var(--color-black-rgb),0.1);
    background-color: rgba(var(--color-black-rgb),0.08);
    text-align: left;
    border-radius: 13px;
    font-size: 1.6rem;
    transition: .2s;
}

.switch-onoff-btn span {
    position: absolute;
    top: calc(50% - 8px);
    left: 4px;
    display: block;
    width: 16px;
    height: 16px;
    background-color: rgba(var(--color-black-rgb),0.14);
    box-shadow: 0 0 0 rgba(var(--color-black-rgb),0);
    border-radius: 50%;
    transition: .2s;
}

.switch-onoff-btn.on {
    background-color: var(--bg-orange);
    text-align: right;
}

.switch-onoff-btn.on span {
    left: 18px;
    background-color: var(--color-white);
    box-shadow: 0 1px 2px rgba(var(--color-black-rgb),0.2);
}


/* 상단 해더 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 20px;
    background-color: var(--bg-basic);
    z-index: 5000;
}

#header .tit-mark {
    max-width: 150px;
    font-size: 0;
}

#header .main-list-mnu {
    gap: 10px;
}

/* 모바일웹 상단 폰트설정 */
#header .main-list-mnu .mlm-btn {
    position: relative;
    display: block;
    /* font-size: 1.6rem; */
    font-size: 1.9rem;
    /* font-family: var(--font-point-light); */
    font-family: var(--font-point);
    opacity: 0.6;
}

#header .main-list-mnu .mlm-btn.select {
    font-family: var(--font-point-bold);
    opacity: 1;
}

#header .main-list-mnu .mlm-btn.select:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--bg-orange);
    content: '';
}

#header .right-mnu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#header .right-mnu a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2.4rem;
    text-align: center;
    color: var(--color-gray);
}

#header .right-mnu a:not(:first-child) {
    margin-left: 10px;
}

#header .right-mnu a span.alarm-on {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--bg-red);
    border-radius: 50%;
}

#header.ver-basic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid rgba(var(--color-black-rgb),0.1);
    text-align: center;
}

#header.ver-basic .left-btn,
#header.ver-basic .right-btn {
    position: absolute;
    top: calc(50% - 25px);
    left: 10px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2rem;
}

#header.ver-basic .right-btn {
    left: auto;
    right: 10px;
    font-size: 2.4rem;
    color: var(--color-gray);
}

#header.ver-basic h1 {
    font-family: var(--font-point);
    font-size: 2rem;
}

#header.ver-loca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

#header.ver-loca .loca {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#header.ver-loca .loca span.ico {
    font-size: 2rem;
}

#header.ver-loca .loca em {
    margin-left: 5px;
    font-size: 1.6rem;
    font-weight: 700;
}

#header.ver-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 2px solid var(--color-blue);
}

#header.ver-search .search-btn {
    flex-shrink: 0;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 2rem;
    color: var(--color-gray-deep);
}

#header.ver-search .search-input {
    flex-grow: 1;
    height: 60px;
    line-height: 60px;
    padding: 0;
    border: none;
}

#header.ver-search .keyword-del-btn {
    flex-shrink: 0;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2rem;
}

#header.ver-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    height: 80px;
}

#header.ver-detail button,
#header.ver-detail a {
    font-size: 2rem;
    color: var(--color-white);
}

#header.ver-driver {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: var(--bg-blue);
}

#header.ver-driver .right-mnu a {
    color: var(--color-white);
}

/* 상단 달력 */
#choiceCalendar {
	padding : 0 11px;
}

.scrollOn #header {
    border-bottom: none;
    /* box-shadow: 0 5px 15px rgba(var(--color-black-rgb),0.1); */
}

.scrollOn #header.ver-basic,
.scrollOn #header.ver-loca,
.scrollOn #header.ver-driver {
    height: 60px;
}

.scrollOn #header.ver-detail {
    height: 60px;
    background-color: rgba(var(--color-background-rgb),0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(var(--color-black-rgb),0.1);
}

.scrollOn #header.ver-detail button,
.scrollOn #header.ver-detail a {
    color: var(--color-basic);
}

/* 모바일웹 상단메뉴 폰트크기 */
@media screen and (min-width: 374px) {
    #header .main-list-mnu {
        /* gap: 18px; */
        gap: 15px;
    }
    
    #header .main-list-mnu .mlm-btn {
        /* font-size: 1.8rem; */        
        /* font-size: 1.85rem; */
        font-size: 1.9rem;
    }
}

@media screen and (min-width: 639px) {
    #header {
        left: calc(50% - 320px);
        width: 640px;
    }
}


/* 상단 날짜 */
.choice-calendar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    border-bottom: 1px solid var(--border-line);
    background-color: var(--bg-basic);
    z-index: 4900;
    transition: .3s;
}

.choice-calendar.in-head {
    top: 60px;
}

.scrollOn .choice-calendar.in-head {
    top: 40px;
}

.month-choice-btn-all {
	flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 50px;
    margin: 0 10px;
    font-size: 1.6rem;
    font-family: var(--font-point);
    font-weight: 500;
    border-radius: 18px;
    color: var(--color-gray);
}

.month-choice-btn-all .all-btn{
	/* align-items: center; */
	font-weight: 600;
	margin-left: 5px;	
}

.month-choice-btn-all.active{
    background-color: rgba(var(--black-white-rgb),0.05);    
    color: var(--color-basic);
}

/* 달력 전체보기 버튼 css */
.choice-calendar .month-choice-btn {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70px;
    height: 40px;
    margin: 0 20px;
    font-size: 1.8rem;
    font-family: var(--font-point);
}

.choice-calendar .month-choice-btn em {
    font-weight: 700;
}

.choice-calendar .month-choice-btn span.arrow-ico {
    font-size: 2rem;
}

.choice-calendar .day-choice-list {
    flex-grow: 1;
    overflow: hidden;
    padding-right: 20px;
}

.choice-calendar .day-choice-list ul li {
    width: auto;
}

.choice-calendar .day-choice-list ul li .day-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 50px;
    line-height: 1.2;
    border-radius: 18px;
    color: var(--color-gray);
}





.choice-calendar .day-choice-list ul li .day-btn.holiday {
    color: var(--color-red);
}

.choice-calendar .day-choice-list ul li .day-btn.holyday {
    color: var(--color-red);
}

.choice-calendar .day-choice-list ul li .day-btn.sat {
    color: var(--color-blue);
}

.choice-calendar .day-choice-list ul li .day-btn em {
    font-size: 1.6rem;
}

.choice-calendar .day-choice-list ul li.active .day-btn {
    background-color: rgba(var(--black-white-rgb),0.05);
    color: var(--color-basic);
}

.month-choice-btn-all.active{
    background-color: rgba(var(--black-white-rgb),0.05);
    color: var(--color-basic);
}


.choice-calendar .day-choice-list ul li.active .day-btn em {
    font-weight: 700;
}

@media screen and (min-width: 639px) {
    .choice-calendar {
        left: calc(50% - 320px);
        width: 640px;
    }
}


/* 공통 */
#container {
    position: relative;
    padding: 30px 20px;
}


/* 기본 탭 메뉴 */
.basic-tab-mnu {
    padding: 0 20px;
    border-bottom: 1px solid var(--border-line);
}

.basic-tab-mnu .detail-mnu-btn {
    position: relative;
    flex-grow: 1;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1.6rem;
    color: var(--color-gray-deep);
}

.basic-tab-mnu.btm2 .detail-mnu-btn {
    width: 50%;
    font-size: 1.8rem;
}

.basic-tab-mnu.btm4 .detail-mnu-btn {
    width: 25%;
}

.basic-tab-mnu .detail-mnu-btn.active {
    color: var(--color-basic);
    font-weight: 500;
}

.basic-tab-mnu .detail-mnu-btn.active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-green-gray);
    content: '';
}

.scrollOn .basic-tab-mnu.sticker {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--border-line);
    background-color: var(--bg-basic);
    z-index: 5001;
}

@media screen and (min-width: 639px) {
    .scrollOn .basic-tab-mnu.sticker {
        left: calc(50% - 320px);
        width: 640px;
    }
}


/* 여행 알림 버튼 */
.alarm-link {
    position: relative;
    margin-bottom: 30px;
}

.alarm-link a {
    height: 50px;
    padding: 0 20px;
    border: 1px solid var(--color-point);
    background-color: rgba(var(--color-point-rgb),0.05);
    border-radius: 25px;
}

.alarm-link a em {
    flex-grow: 1;
    color: var(--color-point);
}

.alarm-link a span.arrow-ico {
    flex-shrink: 0;
    width: 20px;
    margin-left: 10px;
    color: var(--color-point);
}


/* 섬색결과 갯수 노출 */
.search-answer-txt {
    position: relative;
    /* font-family: var(--font-point-light); */
    font-size: 1.4rem;
}

.search-answer-txt strong {
    font-family: var(--font-point-bold);
}

.search-answer-txt .start-loca {
    /* align-items: flex-start; */
}

.search-answer-txt .start-loca figure {
    flex-shrink: 0;
    width: 46px;
    margin-right: 10px;
    font-size: 0;
}

.search-answer-txt .start-loca p {
    flex-grow: 1;
    padding-top: 4px;
}

.search-answer-txt.travel-agency figure {
    flex-shrink: 0;
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border: 1px solid rgba(var(--black-white-rgb),0.1);
    font-size: 0;
    border-radius: 50%;
}

.search-answer-txt.travel-agency em {
    font-family: var(--font-point);
}


/*출발지 및 출발일 검색 */
.loca-n-date-search {
    position: relative;
    padding: 15px 20px;
    margin: 0 -20px;
    background-color: var(--bg-background-gray);
}

.loca-n-date-search .lnd-box {
    flex-shrink: 0;
    position: relative;
    width: 100%;
}

.loca-n-date-search .lnd-box .lnd-input,
.loca-n-date-search .lnd-box .like-select {
    width: 100%;
    height: 40px;
    line-height: 38px;
    box-shadow: inset 0 1px 3px rgba(var(--color-black-rgb),0.05);
    border-radius: 5px;
    text-align: left;
}

.loca-n-date-search .lnd-box .cal-ico {
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    height: 30px;
    line-height: 30px;
    color: var(--color-gray-deep);
    font-size: 1.6rem;
}

/* 통합검색 */
.search-exam h4,
.latest-search h4 {
    margin-bottom: 10px;
    color: var(--color-gray);
    font-weight: var(--font-weight-light);
}

.search-exam ul li:not(:first-child) {
    margin-top: 5px;
}

.search-exam ul li a {
    position: relative;
    display: block;
}

.latest-search ul {
    border-top: 1px solid var(--border-line);
}

.latest-search ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dotted var(--border-line);
}

.latest-search ul li:last-child {
    border-bottom: 1px solid var(--border-line);
}

.latest-search ul li a {
    flex-grow: 1;
    line-height: 40px;
}

.latest-search ul li .del-btn {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: var(--bg-background-gray);
    border-radius: 50%;
    text-align: center;
    color: var(--color-light-deep);
}


/* 드라이버 상단 정보 */
.driver-top {
    position: relative;
    padding: 0 20px 30px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 0 0 30px 30px;
}

.driver-top .driver-user-info {
    height: 50px;
    padding: 0 20px;
    background-color: var(--bg-basic);
    color: var(--color-basic);
    border-radius: 10px;
    box-shadow: inset 1px 3px 5px rgba(var(--color-black-rgb),0.3);
    font-size: 1.6rem;
}

.driver-top .driver-user-info strong small {
    font-weight: 400;
    color: var(--color-light);
}

.driver-top .driver-user-info .bus-num {
    color: var(--color-orange);
    font-weight: 900;
}

.driver-top .driver-summary-num {
    align-items: flex-start;
    margin-top: 20px;
}

.driver-top .driver-summary-num .dsn-con {
    flex-grow: 1;
    text-align: center;
}

.driver-top .driver-summary-num .dsn-con strong {
    font-size: 3rem;
    text-shadow: 0 2px 3px rgba(var(--color-black-rgb),0.16);
}

.driver-top .driver-summary-num .dsn-con small {
    font-size: 1.8rem;
}

.driver-top .driver-summary-num .dsn-con em {
    display: block;
    opacity: 0.6;
}


/* 상품 리스트 */
.product-list h4,
.product-list a.travel-agency {
    position: relative;
    margin-bottom: 20px;
}

.product-list h4.in-more {
    padding-right: 100px;
}

.product-list h4 figure,
.product-list a.travel-agency figure {
    flex-shrink: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid var(--border-line);
    font-size: 0;
    border-radius: 50%;
}

.product-list h4 span,
.product-list a.travel-agency span {
    flex-grow: 1;
}

.product-list h4 .more-btn {
    position: absolute;
    top: calc(50% - 15px);
    right: 0;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    border: 1px solid var(--border-line);
    border-radius: 15px;
    color: var(--color-gray-deep);
}

.product-list .product-con:not(:first-of-type) {
    margin-top: 20px;
}

.product-list .product-con .pic {
    position: relative;
    display: block;
    overflow: hidden;
    font-size: 0;
    border-radius: 15px;
}

.product-list .product-con .pic .collect-state {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    background-color: rgba(var(--color-black-rgb),0.6);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1.2rem;
}

.product-list .product-con .pic .my-state {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    background-color: rgba(var(--color-black-rgb),0.6);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(var(--color-black-rgb),0.1);
}

.product-list .product-con .pic .my-state.ing {
/*     background-color: rgba(var(--bg-orange-rgb),0.7); */
    background-color: #F29171;
}

.product-list .product-con .pic .my-state.decide {
    background-color: var(--bg-green);
}

.product-list .product-con .pic .my-state.cancel {
    background-color: var(--bg-gray-dark);
}

.product-list .product-con .pic .my-state.complete {
    background-color: var(--bg-orange);
}

.product-list .product-con .loca-start-end {
    gap: 3px;
    height: 40px;
    border-bottom: 1px solid var(--border-line);
    font-size: 1.2rem;
}

.product-list .product-con .loca-start-end .loca-ico {
    flex: 0 1 10px;
    text-align: center;
    font-size: 1.4rem;
}

.product-list .product-con .loca-start-end .arrow-ico {
    flex: 0 1 15px;
    text-align: center;
    color: var(-color-gray-deep);
}

.product-list .product-con .loca-start-end .oneline {
				 
    max-width: 35%;
}

.product-list .product-con .txt {
    display: block;
    padding-top: 10px;
}

.product-list .product-con .txt .line-cut {
    display: block;
    font-size: 1.6rem;
}

.product-list .product-con .txt .date-time {
    display: block;
    margin-top: 5px;
    color: var(--color-gray);
}

.product-list .product-con .txt .price {
    display: block;
    margin-top: 5px;
    color: var(--color-point);
    font-size: 2rem;
}

.product-list .product-con .txt .price small {
    font-size: 1.6rem;
}


/* 상품 리스트 // 슬라이드형 */
.product-list .product-slidebox:not(:first-of-type) {
    margin-top: 40px;
}

.product-list .product-slide ul li {
    width: 200px;
}

.product-list .product-slide ul li .product-con .pic img {
    width: 200px;
    height: 200px;
}

.product-list .product-slide .product-con:not(:first-of-type) {
    margin-top: 0px !important;
}


/* 상품 리스트 // 갤러리형 */
.product-list.ver-galley .product-con {
    position: relative;
}

.product-list.ver-galley .product-con:not(:first-child) {
    margin-top: 10px;
}

.product-list.ver-galley .inner-con {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.7) 100%);
    border-radius: 15px;
}

.product-list.ver-galley .inner-con .txt {
    color: var(--color-white);
}

.product-list.ver-galley .inner-con .txt .country {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    background-color: rgba(var(--black-white-rgb),0.7);
}

.product-list.ver-galley .inner-con .txt .date-time {
    color: var(--color-white);
    font-size: 1.3rem;
}

.product-list.ver-galley:not(.two-box) .inner-con .txt .date-time {
    position: absolute;
    bottom: 20px;
    right: 20px;
    line-height: 34px;
    margin: 0;
    font-size: 1.2rem;
}

.product-list.ver-galley .inner-con .txt .price {
    display: inline-block;
    line-height: 34px;
    padding: 0 15px 0 20px;
    margin-left: -20px;
    margin-top: 10px;
    background-color: var(--bg-orange);
    color: var(--color-white);
    border-radius: 0 17px 17px 0;
}

.product-list.ver-galley.two-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap:  10px 2%
}

.product-list.ver-galley.two-box .product-con {
    width: 49%;
    margin: 0;
}

.product-list.ver-galley.two-box .product-con .pic img {
    height: 230px;
}

.product-list.ver-galley.two-box .product-con .inner-con .txt .price {
    font-size: 1.6rem;
}

.product-list.ver-galley.two-box .product-con .inner-con .txt .price small {
    font-size: 1.3rem;
}


/* 상품 리스트 // 예약, 스크랩 */
.product-list.ver-reserv h4,
.product-list.ver-reserv .travel-agency {
    margin-bottom: 10px;
}

.product-list.ver-reserv .product-con.ver-scrap {
    padding: 20px;
    margin: 0 -20px;
    border-top: 1px solid var(--border-line);
}

.product-list.ver-reserv.ver-drive .product-con.ver-scrap {
    border-top: 12px solid rgba(var(--color-black-rgb),0.05);
    box-shadow: 0 2px 5px rgba(var(--color-black-rgb),0.05);
}

.product-list.ver-reserv .product-con.ver-scrap:first-child {
    padding-top: 0;
    border-top: none !important;
}

.product-list.ver-reserv .product-con .pc-summary {
    align-items: flex-start;
}

.product-list.ver-reserv .product-con .pic .my-state {
    top: 5px;
    right: auto;
    left: 5px;
}

.product-list.ver-reserv .product-con .pic {
    flex-shrink: 0;
    width: 100px;
    margin-right: 15px;
}

.product-list.ver-reserv .product-con .inner-con {
    position: relative;
    flex-grow: 1;
}

.product-list.ver-reserv .product-con .txt {
    display: block;
    padding-top: 0px;
}

.product-list.ver-reserv .product-con .txt .line-cut {
    font-size: 1.6rem;
}

.product-list.ver-reserv .product-con .txt .price {
    line-height: 1.4;
    font-size: 2rem;
}

.product-list.ver-reserv .product-con .txt .price small {
    font-size: 1.4rem;
}

.product-list.ver-reserv .product-con .pc-summary2 {
    position: relative;
    padding-left: 115px;
}

.product-list.ver-reserv .product-con .pc-summary2 .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
}

.product-list.ver-reserv .product-con .pc-summary2 .txt .line-cut {
    /*height: 46px; */
}

.product-list.ver-reserv .product-con .pc-summary2 .loca-start-end {
    border-bottom: 0;
}

.product-list.ver-reserv .reserv-con {
    padding: 20px;
    margin: 20px -20px 0;
    background-color: var(--bg-gray-light);
}

.product-list.ver-reserv .reserv-con .reserv-btn-area .btns {
    flex: 0 1 auto;
    width: 100%;
}

.product-list.ver-reserv .reserv-con .reserv-btn-area .share-btn {
    flex: 0 0 50px;
    margin-left: 5px;
}

.product-list.ver-reserv .other-box {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

.product-list.ver-reserv .other-box .other-btn {
    display: block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 2rem;
    color: var(--color-gray);
}

.product-list.ver-reserv .other-box .other-mnu {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    overflow: hidden;
    width: 100px;
    background-color: var(--bg-basic);
    box-shadow: 0 3px 10px rgba(var(--color-black-rgb),0.1);
    border-radius: 4px;
}

.product-list.ver-reserv .other-box .other-mnu a {
    display: block;
    padding: 7px 10px;
    text-align: center;
    color: var(--color-gray);
}

.product-list.ver-reserv .other-box .other-mnu a:not(:last-child) {
    border-bottom: 1px solid var(--border-line);
}

.product-list.ver-reserv .drive-info {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dotted var(--border-line);
}

.product-list.ver-reserv .drive-info dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 26px;
}

.product-list.ver-reserv .drive-info dl:not(:first-child) {
    margin-top: 10px;
}

.product-list.ver-reserv .drive-info dl dt {
    flex-shrink: 0;
    width: 80px;
    font-weight: 400;
    color: var(--color-light);
}

.product-list.ver-reserv .drive-info dl dd {
    flex-grow: 1;
}

.product-list.ver-reserv .drive-info dl dd strong {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--color-orange);
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info {
    position: relative;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info ul {
    overflow: hidden;
    height: 26px;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 30px;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info ul li .times {
    flex-shrink: 0;
    min-width: 50px;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info ul li em {
    flex-grow: 1;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info.addropen ul {
    height: auto;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info .dli-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 1.8rem;
    color: var(--color-gray-deep);
    transition: .3s;
}

.product-list.ver-reserv .drive-info dl dd.drive-loca-info.addropen .dli-btn {
    transform: rotate(180deg);
}

.product-list.ver-reserv .driver-btn-area {
    margin-top: 20px;
}

.product-list.ver-reserv .driver-btn-area .btns {
    border-radius: 25px;
}



/* 검색 및 자료가 없을 떄 */
.no-data-box {
    position: relative;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 250px);
    text-align: center;
}
.no-data-box.no-header {
	 height: calc(100vh - 260px);
}
.no-data-box.full-screen {
	 height: calc(100vh - 220px);
}			

.no-data-box figure {
    overflow: hidden;
    padding: 0 25%;
    margin-bottom: 20px;
    border-radius: 50px;
    font-size: 0;
}

.no-data-box h3 {
    font-family: var(--font-point);
    font-size: 1.8rem;
    letter-spacing: -.5pt;
}

.no-data-box p {
    margin-top: 5px;
    opacity: 0.5;
    font-size: 1.2rem;
}


/* 배너 */
.banner-slide {
    position: relative;
    overflow: hidden;
}

.banner-slide ul li a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.banner-slide ul li a img {
    width: 100%;
}

.banner-slide .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.banner-slide .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: rgba(var(--color-black-rgb),0.1);
    border-radius: 5px;
    transition: .2s;
}

.banner-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    background-color: var(--color-green-gray);
}


/* 도시 선택 */
.choice-city ul li {
    width: auto;
}

.choice-city ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    width: 140px;
    border-radius: 20px;
    font-size: 0;
}

.choice-city ul li a em {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 15px;
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
    z-index: 100;
}

.choice-city ul li a em .city-name {
    line-height: 20px;
    font-size: 1.6rem;
    color: var(--color-white);
    font-weight: 700;
}

.choice-city ul li a em .num {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}


/* 상세페이지 상단 */
.pdt-slide {
    position: relative;
}

.pdt-slide ul li {
    position: relative;
    font-size: 0;
}

.pdt-slide ul li:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
    z-index: 100;
    content: '';
}

.pdt-slide .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    padding-top: 70px;
    margin-top: 10px;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    z-index: 1000;
}

.pdt-slide .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: rgba(var(--color-black-rgb),0.4);
    border-radius: 5px;
    transition: .2s;
}

.pdt-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    background-color: var(--color-orange);
}

.detail-top-info {
    position: relative;
    padding: 20px;
}

.detail-top-info .cate-bookmark-share {
    margin-bottom: 20px;
}

.detail-top-info .cate-bookmark-share .cate {
    display: inline-block;
    height: 30px;
    line-height: 28px;
    padding: 0 20px;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    border-radius: 15px;
}

.detail-top-info .cate-bookmark-share .bookmark-share .bookmark-share-btn {
    position: relative;
    height: 30px;
    line-height: 28px;
    padding: 0 15px;
    border-top: 1px solid rgba(var(--color-black-rgb),0.08);
    border-bottom: 1px solid rgba(var(--color-black-rgb),0.08);
    color: var(--color-gray-deep);
}

.detail-top-info .cate-bookmark-share .bookmark-share .bookmark-share-btn:first-child {
    border-left: 1px solid rgba(var(--color-black-rgb),0.08);
    border-radius: 15px 0 0 15px;
}

.detail-top-info .cate-bookmark-share .bookmark-share .bookmark-share-btn:last-child {
    border-right: 1px solid rgba(var(--color-black-rgb),0.08);
    border-radius: 0 15px 15px 0;
}

.detail-top-info .cate-bookmark-share .bookmark-share .bookmark-share-btn:not(:first-child) {
    border-left: 1px solid rgba(var(--color-black-rgb),0.08);
									   
}

.detail-top-info .cate-bookmark-share .bookmark-share .bookmark-share-btn.on {
    border-color: var(--color-orange);
    background-color: var(--color-orange);
    color: var(--color-white);
}

.detail-top-info .subject {
    line-height: 1.4;
    font-weight: 500;
    font-size: 2rem;
}

.detail-top-info .collect-price {
    margin-top: 20px;
}


/* 상세페이지 정보 */
.detail-info-content .dic-box {
    position: relative;
    padding: 30px 20px;
}

.detail-info-content .dic-box:not(:last-child) {
    border-bottom: 1px solid var(--border-line);
}

.start-end-place {
    align-items: stretch;
    padding: 0 !important;
}

.start-end-place .sep-con {
    width: 50%;
    padding: 20px;
}

.start-end-place .sep-con:not(:first-child) {
    border-left: 1px solid var(--border-line);
}

.start-end-place .sep-con .loca-point span.loca-ico {
    font-size: 2.4rem;
}

.start-end-place .sep-con .loca-point em {
    margin: 0 10px;
    color: var(--color-gray);
}

.start-end-place .sep-con .loca-select,
.start-end-place .sep-con .start-loca,
.start-end-place .sep-con .end-loca {
    border: none;
    line-height: 36px;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
}

.start-end-place .sep-con .loca-select {
    width: 100%;
}

.start-end-place .sep-con .loca-select em {
    flex-grow: 1;
}

.start-end-place .sep-con .loca-select span.ico {
    flex-shrink: 0;
    width: 20px;
    text-align: right;
    color: var(--color-gray-deep);
}

.start-end-place .sep-con .date-time {
    color: var(--color-gray);
}

.travel-course {
    position: relative;
    padding-bottom: 20px !important;
    background-color: var(--bg-gray-light);
}

.travel-course .travel-course-list {
    position: relative;
}

.travel-course .travel-course-list:before {
    position: absolute;
    top: 20px;
    left: 15px;
    bottom: 20px;
    width: 1px;
    border-left: 1px dashed rgba(var(--color-black-rgb),0.15);
    content: '';
}

.travel-course .travel-course-list ul li {
    position: relative;
    padding: 7px 0 7px 35px;
}

.travel-course .travel-course-list ul li:first-child,
.travel-course .travel-course-list ul li:last-child {
    padding: 10px 0;
}

.travel-course .travel-course-list ul li .loca-ico {
    flex: 0 0 30px;
    margin-right: 5px;
    text-align: center;
    font-size: 2.4rem;
}

.travel-course .travel-course-list ul li .middle-circle {
    position: absolute;
    top: calc(50% - 5px);
    left: 10px;
    width: 10px;
    height: 10px;
    background-color: var(--bg-green);
    border-radius: 50%;
}

.travel-course .travel-course-list ul li .side-time {
    position: absolute;
    top: calc(50% - 9px);
    right: 0;
    line-height: 18px;
    font-size: 1.2rem;
    color: var(--color-gray-deep);
}

.inside-info dl {
    align-items: flex-start;
}

.inside-info dl:not(:first-child) {
    margin-top: 10px;
}

.inside-info dl dt {
    flex: 0 0 100px;
    font-weight: 500;
    color: var(--color-gray);
}

.inside-info dl dt span.ico {
    display: inline-block;
    width: 30px;
    text-align: center;
}

.inside-info dl dd {
    flex-grow: 1;
}

.operato-info .btns {
    box-shadow: 0 1px 2px rgba(var(--color-black-rgb),0.1);
}

.product-policy .commission {
    position: relative;
    padding: 20px;
    margin: 10px -20px -30px;
    background-color: var(--bg-gray-light);
}

.product-policy .commission h4 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}


/*  예약하기 */
.reservation-content .rc-box:not(:first-child) {
    margin-top: 50px;
}

.plus-minus-box {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-basic);
    box-shadow: 0 5px 10px rgba(var(--color-black-rgb),0.08);
    border-radius: 10px;
}

.plus-minus-box .plus-minus-btn {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(var(--color-black-rgb),0.1);
    text-align: center;
    font-size: 2rem;
}

.plus-minus-box .plus-minus-input {
    flex-grow: 1;
    width: 50%;
    height: 60px;
    line-height: 60px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 2.6rem;
}

.reservation-check-list li:not(:first-child) {
    margin-top: 10px;
}

.reservation-check-list .rcl-radio {
    display: none;
}

.reservation-check-list .rcl-radio + label {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    border: 1px solid var(--border-line);
    background-color: var(--bg-basic);
    border-radius: 10px;
}

.reservation-check-list .rcl-radio + label span.ico {
    flex-shrink: 0;
    width: 30px;
    margin-right: 10px;
    font-size: 2.4rem;
    color: var(--color-blue-gray);
    text-align: center;
}

.reservation-check-list .rcl-radio + label em.txt {
    flex-grow: 1;
}

.reservation-check-list .rcl-radio + label span.time {
    flex-shrink: 0;
    width: 70px;
    font-weight: 700;
    text-align: right;
    font-size: 1.6rem;
}

.reservation-check-list .rcl-radio:checked + label {
    background-color: var(--bg-blue-gray);
    color: var(--color-white);
}

.reservation-check-list .rcl-radio:checked + label span.ico {
    color: var(--color-white);
}

.reservation-check-list .write-input,
.reservation-check-list .write-select {
    height: 50px;
    line-height: 48px;
    padding-left: 15px;
    border-color: rgba(var(--color-black-rgb),0);
    box-shadow: 0px 2px 10px rgba(var(--color-black-rgb),0.1);
    border-radius: 10px;
}

.reservation-content .agree-box {
    margin-top: 30px;
}

.reservation-content .agree-box ul li:not(:first-child) {
    margin-top: 7px;
}

.reservation-content .agree-box ul li label {
    color: var(--color-gray);
}


/* 예약완료 */
.reservation-complete {
    padding: 50px 0;
    text-align: center;
}

.reservation-complete figure {
    max-width: 150px;
    margin: 0 auto 50px;
    font-size: 0;
}

.reservation-complete p {
    font-size: 1.6rem;
    color: var(--color-gray);
}

.reservation-complete p.complete-txt {
    margin-bottom: 10px;
    color: var(--color-basic);
    font-family: var(--font-point);
    font-size: 2rem;
}

/* 좌석선택 */
.bus-reserv-info h4.h4-tit {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bus-reserv-info h4.h4-tit span {
    color: var(--color-gray);
    font-weight: 300;
}

.bus-reserv-info .choice-start {
    padding-top: 20px;
    border-top: 1px solid var(--border-line);
}

.bus-reserv-info .choice-start h5 {
    margin-bottom: 10px;
}

.bus-reserv-info .choice-start h5 em {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--color-gray);
}

.bus-reserv-info .choice-start ul li:not(:first-child) {
    margin-top: 10px;
}

.bus-reserv-info .bus-start-info dl {
    align-items: flex-start;
}

.bus-reserv-info .bus-start-info dl + dl {
    margin-top: 5px;
}

.bus-reserv-info .bus-start-info dl dt {
    flex-shrink: 0;
    width: 70px;
    font-weight: 300;
    color: var(--color-gray);
}

.bus-reserv-info .bus-start-info dl dd {
    flex-grow: 1;
}

.bus-reserv-info .reserv-seat-info {
    padding: 20px;
    margin: 20px -20px;
    background-color: var(--bg-background-gray);
}

.bus-reserv-info .reserv-seat-info dl:not(:first-child) {
    margin-top: 10px;
}

.bus-reserv-info .reserv-seat-info dl dt {
    flex-shrink: 0;
    font-weight: 300;
    color: var(--color-gray);
}

.bus-reserv-info .reserv-seat-info dl dd {
    flex-grow: 1;
    text-align: right;
}

.bus-reserv-info .reserv-seat-info dl dd b {
    font-size: clamp(1.8rem, 3vw, 2rem);
}

.bus-seat-select-area .bus-seat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin: 0 -20px 30px;
    background-color: var(--bg-background-gray)
}

.bus-seat-select-area .bus-seat-info p {
    opacity: 0.5;
    font-size: clamp(1.3rem, 3vw, 1.4rem);
}

.payment-method h5 {
    margin-bottom: 15px;
    color: var(--color-gray);
    font-weight: 300;
}

.payment-method ul li:not(:first-child) {
    margin-top: 10px;
}

.payment-apply-area {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-line);
}

.payment-apply-area h5 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.payment-apply-area ul li:not(:first-child) {
    margin-top: 5px;
}


/* 버스 좌석 배치도 // 공통 */
.bus-stage {
    position: relative;
    max-width: 375px;
    margin: 0 auto;
}

.bus-stage .bus-front {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-bottom: 10px;
    color: var(--color-gray);
    font-weight: 300;
    font-size: 1.6rem;
    opacity: 0.5;
}

.bus-stage .bus-seat-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.bus-stage .bus-seat-box .bus-seat {
    position: relative;
    padding: 5px;
}

.bus-stage .bus-seat-box .bus-seat:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border: 1px solid var(--color-gray-deep);
    border-top: none;;
    border-radius: 0 0 15px 15px;
    content: '';
}

.bus-stage .bus-seat-box .bus-seat .bus-seat-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1;
    border: 1px solid var(--color-gray-deep);
    background-color: var(--color-background);
    color: var(--color-gray-deep);
    border-radius: 10px;
}

.bus-stage .bus-seat-box .bus-seat .bus-seat-btn em {
    font-size: 1.6rem;
}

.bus-stage .bus-seat-box .bus-seat .bus-seat-btn span.ico {
    font-size: 1.4rem;
}

.bus-stage .bus-seat-box .bus-seat.disable:before {
    border-color: var(--border-line);
}

.bus-stage .bus-seat-box .bus-seat.disable .bus-seat-btn {
    background-color: rgba(var(--color-gray-deep-rgb),.2);
    opacity: 0.5;
    cursor: default;
}

.bus-stage .bus-seat-box .bus-seat.disable .bus-seat-btn em {
    font-size: 2.4rem;
}

.bus-stage .bus-seat-box .bus-seat.selected:before {
    border-color: var(--bg-orange);
}

.bus-stage .bus-seat-box .bus-seat.selected .bus-seat-btn {
    border-color: var(--bg-orange);
    background-color: rgba(var(--color-orange-rgb),.05);
    color: var(--bg-orange);
}

@media screen and (min-width: 374px) {
}


/* 버스 좌석 배치도 // 28인승 */
.bus-stage.bus-seat-28 {
    width: 90%;
}

.bus-stage.bus-seat-28 .bus-seat-box {
    gap: 10px 1.25%;
}

.bus-stage.bus-seat-28 .bus-seat-box .bus-seat {
    width: 23%;
}

.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(3),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(6),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(9),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(12),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(15),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(18),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(21),
.bus-stage.bus-seat-28 .bus-seat-box .bus-seat:nth-child(24) {
    margin-left: 23%;
}

.bus-stage.bus-seat-28 .bus-seat-box .bus-seat .bus-seat-btn {
    height: 17vw;
    max-height: 70px;
}


/* 버스 좌석 배치도 // 45인승 */
.bus-stage.bus-seat-45 .bus-seat-box {
    gap: 10px 1.2%;
}

.bus-stage.bus-seat-45 .bus-seat-box .bus-seat {
    width: 19%;
}

.bus-stage.bus-seat-45 .bus-seat-box .bus-seat .bus-seat-btn {
    height: 16vw;
    max-height: 60px;
}

.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(3),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(7),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(11),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(15),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(19),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(23),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(27),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(31),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(35),
.bus-stage.bus-seat-45 .bus-seat-box .bus-seat:nth-child(39) {
    margin-left: 19%;
}


/* 좌석정보 확인 */

.selected-seat {
    padding: 20px;
    border: 1px solid var(--border-line);
    background-color: var(--bg-background-gray);
    border-radius: 10px;
}

.selected-seat h5,
.seat-member-write h5 {
    margin-bottom: 15px;
    color: var(--color-gray);
    font-weight: 300;
}

.selected-seat ul {
    flex-wrap: wrap;
    gap: 5px;
}

.selected-seat ul li {
    position: relative;
}

.selected-seat ul li em {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid var(--color-orange);
    background-color: var(--bg-basic);
    color: var(--color-orange);
    text-align: center;
    border-radius: 5px;
}

.selected-seat ul li .del-btn {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    background-color: var(--bg-gray-light);
    text-align: center;
    color: var(--color-gray);
    border-radius: 50%;
}

.seat-member-write .seat-member:not(:first-of-type) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dotted var(--border-line);
}

.seat-member-write .seat-member dt {
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--color-gray);
}

.seat-member-write .seat-member dt input.order-radio {
    display: none;
}

.seat-member-write .seat-member dt input.order-radio + label {
    opacity: 0.5;
}

.seat-member-write .seat-member dt input.order-radio + label span {
    display: none;
}

.seat-member-write .seat-member dt input.order-radio:checked + label {
    opacity: 1;
    color: var(--color-orange);
    font-weight: 600;
}

.seat-member-write .seat-member dt input.order-radio:checked + label span {
    display: inline;
}

.seat-member-write .seat-member dd .txt-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background-color: var(--bg-gray-light);
    color: var(--border-line);
    border-radius: 5px;
}

.seat-member-write .seat-member dd .txt-info span {
    color: var(--color-basic);
}

.seat-member-write .seat-member dd ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.seat-member-write .seat-member dd ul li:not(:first-child) {
    margin-top: 5px;
}

.seat-member-write .seat-member dd ul li em {
    flex-shrink: 0;
    width: 70px;
}

.seat-member-write .seat-member dd ul li input {
    flex-grow: 1;
    border-radius: 20px;
    text-align: center;
}

/* 결제내역 */
.payment-guide {
    margin-top: 40px;
    font-size: 1.2rem;				  
}

.payment-guide p {
    color: var(--color-gray);					   
}

.subscriber-info h3 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-line);
    font-family: var(--font-point);
    font-size: 1.6rem;
}

.subscriber-info dl {
    gap: 20px;	  
}

.subscriber-info dl + dl {
    margin-top: 10px;
}

.subscriber-info dl dt {
    flex-shrink: 0;
    font-weight: 400;
    color: var(--color-gray);
}

.subscriber-info dl dd {
    flex-grow: 1;
    text-align: right;
}


/* 회원탈퇴 */
.member-out figure {
    max-width: 100px;
    margin: 0 auto 20px;
    font-size: 0;
}

.member-out h2 {
    margin-bottom: 30px;
    color: var(--color-basic);
    font-family: var(--font-point);
    font-size: 2rem;
    text-align: center;
}

.member-out dl {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-line);		   
}

.member-out dl dt {
    margin-bottom: 20px;
    font-size: 1.6rem;	  
}

.member-out dl dt em {
    display: block;								   
}

.member-out dl dt span {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-gray);
}


/* 소속 회사 리스트 */
.agency-list h4 {
    font-weight: 400;
    color: var(--color-gray);
}

.agency-list h4 strong {
    color: var(--color-blue);
}

.agency-list ul {
    border-top: 1px solid rgba(var(--black-white-rgb),0.3);
}

.agency-list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(var(--black-white-rgb),0.1);
}

.agency-list ul li .agency-box {
    flex-grow: 1;
    position: relative;
    width: 60%;
    padding-left: 40px;
}

.agency-list ul li .agency-box figure {
    position: absolute;
    top: -3px;
    left: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(var(--black-white-rgb),0.1);
    font-size: 0;
    border-radius: 50%;
}

.agency-list ul li .agency-box em {
    font-weight: 500;
    font-size: 1.6rem;
}

.agency-list ul li .agency-box span.phone {
    color: var(--color-gray);
}

.agency-list ul li .btns {
    flex-shrink: 0;
    margin-left: 20px;
}

/* 주요 메뉴 */
.common-gnb {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(var(--bg-basic-rgb),1);
    box-shadow: 0 0 10px rgba(var(--color-black-rgb),0.1);
    z-index: 5000;
}

.common-gnb ul li {
    width: 25%;
    text-align: center;
}

.common-gnb ul.tab3 li {
    width: 33.3333%;
}

.common-gnb ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: rgba(var(--color-black-rgb),0.3);
    font-size: 1.2rem;
}

.common-gnb ul li a span.ico {
    font-size: 2rem;
}

.common-gnb ul li.active a {
    color: var(--color-point);
}

.common-gnb ul li.active a em {
    font-weight: 500;
}

@media screen and (min-width: 639px) {
    .common-gnb {
        left: calc(50% - 320px);
        width: 640px;
    }
}

/* 내일 떠나는 여행 */
.tomorrow-travel {
    position: fixed;
    bottom: 70px;
    left: 10px;
    right: 10px;
    padding: 20px;
    background-color: rgba(var(--black-white-rgb),0.7);
    border-radius: 10px;
    color: var(--color-basic-reverse);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.tomorrow-travel h4 {
    margin-bottom: 20px;
    font-family: var(--font-point);
    font-size: 1.6rem;
}

.tomorrow-travel .product-con {
    color: var(--color-basic-reverse);
}

.tomorrow-travel .product-con figure {
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 10px;
}

.tomorrow-travel .tt-close-btn {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    border: 2px solid var(--color-white);
    background-color: var(--bg-gray-dark);
    border-radius: 50%;
    text-align: center;
    font-size: 1.6rem;
    color: var(--color-basic-reverse);
}

@media screen and (min-width: 639px) {
    .tomorrow-travel {
        left: calc(50% - 310px);
        width: 620px;
    }
}


/* 메인 베너 팝업 */
.main-banner-pop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-color: rgba(var(--color-black-rgb),0.8);
    z-index: 8000;
}

.main-banner-pop .mbp-closebox {
    width: 90%;
    max-width: 400px;
}

.main-banner-pop .mbp-closebox a {
    display: block;
    padding: 10px;
    color: var(--color-white);
}

.main-banner-pop .inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    background-color: var(--bg-basic);
    border-radius: 20px 20px 0 0;
}

.main-banner-pop .inner .swiper-pagination {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    background-color: rgba(var(--color-black-rgb),0.7);
    color: var(--color-white);
    z-index: 2000;
    font-size: 1.2rem;
    border-radius: 10px;
}


/* 알람 */
.alarmbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--color-black-rgb),0.8);
    z-index: 8000;
}

.alarmbox .inner {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    background-color: var(--bg-basic);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(var(--color-black-rgb),0.3);
}

.alarmbox .inner h4 {
    margin-bottom: 20px;
    font-family: var(--font-point);
    font-size: 1.6rem;
}

.alarmbox .inner .alarm-con {
    color: var(--color-gray);
}

.alarmbox .inner .btn-area {
    margin-top: 40px;
}

@media screen and (min-width: 639px) {
    .alarmbox .inner {
        padding: 30px;
    }
}


/* 모달팝업 공통 */
.modal {
	display: none;
    position: fixed;
	overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bg-basic);
	z-index: 8000;
}

.modal .modal-head {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0 20px;
    background-color: var(--bg-basic);
    z-index: 1000;
}

.modal .modal-head h2.modal-tit {
    margin: 0 20px;
    font-size: 2rem;
    font-family: var(--font-point);
}

.modal .modal-head .modal-open-close {
    padding: 5px;
    font-size: 2.4rem;
    text-align: center;
    color: var(--color-gray);
}

.modal .modal-contents {
    position: relative;
}

.modal .modal-contents .modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background-color: rgba(var(--color-black-rgb),0.6);
    color: var(--color-white);
    font-size: 1.8rem;
    text-align: center;
    border-radius: 10px;
    z-index: 1000;
}

.modal .modal-foot {
    text-align: center;
}

.modal .modal-foot h3 {
    font-size: 1.4rem;
    font-weight: 500;
}

.modal .modal-foot dl {
    margin-top: 5px;
    font-size: 1.2rem;
}

.modal .modal-foot dl dt {
    margin-right: 10px;
    opacity: 0.6;
}

.modal.modal-mini {
	padding: 40px 20px;
    background-color: rgba(var(--color-black-rgb),0.7);
}

.modal.modal-mini .modal-container {
	overflow: hidden;
    background-color: var(--color-box-basic);
	border-radius: 10px;
}

@media screen and (min-width: 639px) {
    .modal {
        left: calc(50% - 320px);
        width: 640px;
    }
}


/* 모달 // 통합검색 */
.basic-search-modal .modal-head {
    padding: 0;
    border-bottom: 2px solid var(--color-blue);
}

.basic-search-modal .modal-head .search-btn {
    flex-shrink: 0;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 2rem;
    color: var(--color-gray-deep);
}

.basic-search-modal .modal-head .search-input {
    flex-grow: 1;
    height: 60px;
    line-height: 60px;
    padding: 0;
    border: none;
}

.basic-search-modal .modal-head .modal-close-btn {
    flex-shrink: 0;
    width: 50px;
    line-height: 50px;
    text-align: center;
}

.basic-search-modal .modal-contents {
    padding: 30px 20px;
}

.basic-search-modal .product-list {
    padding: 0;
}


/* 모달 // 출발지 설정 */
.start-loca-modal .head-top {
    height: 80px;
}

.start-loca-modal .start-search {
    height: 50px;
    padding-right: 10px;
    margin: 0 -20px;
    border-bottom: 1px solid var(--border-line);
}

.start-loca-modal .start-search .basic-input {
    flex-grow: 1;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border: none;
}

.start-loca-modal .start-search .search-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: none;
    text-align: center;
    font-size: 2rem;
    color: var(--color-gray-deep);
}

.start-loca-modal .start-loca-list,
.search-loca-list {
				   
    padding: 30px 20px;
}

.start-loca-modal .start-loca-list ul li,
.search-loca-list {						 
    position: relative;
    padding-right: 30px;
}

.start-loca-modal .start-loca-list ul li a.loca-txt,
.search-loca-list ul li a.loca-txt {									
    padding: 10px 0;
    font-size: 1.6rem;
}

.start-loca-modal .start-loca-list ul li .close-btn {
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: var(--bg-gray-dark);
    color: var(--color-white);
    text-align: center;
    font-size: 1.6rem;
    border-radius: 50%;
}


/* 모달 // 출발지 설정 */
.agency-add-modal .agency-list {
    padding: 30px 20px 80px;
}

.agency-add-modal .modal-contents > .greenBtn {
    position: fixed;
    bottom: 0;
    left: 0;
}

/* 모달 // 캘린더 */
.modal.calendar-modal {
    top: 10%;
    left: 10%;
    bottom: auto;
    width: 80%;
    height: 80%;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(var(--black-white-rgb),0.1);
}

.modal.calendar-modal:before {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--bg-basic-rgb),0.6);
    content: '';
}

.calendar-modal .modal-head {
    height: 60px;
    background-color: var(--bg-blue-gray);
    color: var(--color-basic-reverse);
    box-shadow: 0 3px 10px rgba(var(--color-black-rgb),0.1);
}

.calendar-modal .modal-head h2.modal-tit {
    margin: 0;
}

.calendar-modal .modal-head .modal-open-close {
    color: var(--color-basic-reverse);
}

.calendar-modal .calendar-list {
    padding-bottom: 50px;
}

.calendar-modal .calendar-list .calendar-con {
    padding: 20px;
}

.calendar-modal .calendar-list .calendar-con:not(:first-child) {
    border-top: 8px solid rgba(var(--color-black-rgb),0.05);
}

.calendar-modal .calendar-list .calendar-con h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl th,
.calendar-modal .calendar-list .calendar-con .calendar-tbl td {
    text-align: center;
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl tbody th,
.calendar-modal .calendar-list .calendar-con .calendar-tbl tbody td {
    padding: 5px 0;
    vertical-align: top;
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .sat .day-btn {
    color: var(--color-blue);
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .holyday .day-btn {
    color: var(--color-red);
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .holiday .day-btn {
    color: var(--color-red);
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .prevday .day-btn {
    opacity: 0.2;
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .day-btn {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .statenum {
    display: block;
    font-size: 1.1rem;
    color: var(--color-green);
}

.calendar-modal .calendar-list .calendar-con .calendar-tbl .active .day-btn {
    background-color: var(--bg-gray-dark);
    color: var(--color-white);
    font-weight: 700;
}

.calendar-modal .modal-contents .greenBtn {
    position: fixed;
    bottom: 10%;
    left: 10%;
    width: 80%;
    border-radius: 0 0 5px 5px;
}


/* 모달 // 공유하기 */
.drive-member-info-modal,
.loca-select-modal,
.sns-modal,
.qr-code-modal,
.refund-request-modal,
.date-choice-modal {
    background-color: rgba(var(--color-black-rgb),0);
}

.drive-member-info-modal > .modal-close-btn,
.loca-select-modal > .modal-close-btn,
.sns-modal > .modal-close-btn,
.qr-code-modal > .modal-close-btn,
.refund-request-modal > .modal-close-btn,
.date-choice-modal > .modal-close-btn {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(var(--color-black-rgb),0.6);
    z-index: 100;
}

.sns-modal .sns-list {
    position: absolute;
    top: calc(50% - 195px);
    left: calc(50% - 30px);
    width: 60px;
    z-index: 200;
    font-size: 0;
}

.sns-modal .sns-list ul li:not(:first-child) {
    margin-top: 20px;
}

.sns-modal .sns-list ul li a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.sns-modal .sns-list ul li a.url-btn {
    height: 60px;
    line-height: 60px;
    background-color: var(--bg-background-gray);
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
}


/* 모달 // 출발 장소 선택 */
.loca-select-modal .loca-select-list,
.date-choice-modal .date-choice-list {
    position: absolute;
    bottom: -300px;
    left: 0;
    width: 100%;
    padding: 15px 25px;
    background-color: var(--bg-basic);
    border-radius: 20px 20px 0 0;
    z-index: 200;
    transition: .2s;
    opacity: 0;
				  
					 
}

.loca-select-modal.modal-open .loca-select-list,
.date-choice-modal.modal-open .date-choice-list {
    bottom: 0px;
    opacity: 1;
}

.loca-select-modal .loca-select-list h3 {
    padding-top: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.6rem;
}

.loca-select-modal .loca-select-list ul li:not(:last-child),
.date-choice-modal .date-choice-list ul li:not(:last-child) {
    border-bottom: 1px dotted var(--border-line);
}

.loca-select-modal .loca-select-list ul li .lsl-btn,
.date-choice-modal .date-choice-list ul li .lsl-btn {
    align-items: flex-start;
    width: 100%;
    padding: 12px 0;
    text-align: left;
}

.loca-select-modal .loca-select-list ul li .lsl-btn em {
    flex-grow: 1;
}

.loca-select-modal .loca-select-list ul li .lsl-btn span.time {
    flex-shrink: 0;
    width: 100px;
    text-align: right;
    color: var(--color-gray-deep);
}


/* 모달 // 기간 선택 */
.date-choice-modal .date-choice-list ul li:not(:last-child) {
    border-bottom: 1px dotted var(--border-line);
}


/* 모달 // 탑승 인원 정보 */
.qr-code-modal .qr-code-info,
.drive-member-info-modal .drive-member-info,
.refund-request-modal .refund-request-info {
    position: absolute;
    bottom: -300px;
    left: 0;
    width: 100%;
    padding: 25px 25px 20px;
    background-color: var(--bg-basic);
    border-radius: 20px 20px 0 0;
    z-index: 200;
    transition: .2s;
    opacity: 0;
}

.qr-code-modal.modal-open .qr-code-info,
.drive-member-info-modal.modal-open .drive-member-info,
.refund-request-modal.modal-open .refund-request-info {
    bottom: 0px;
    opacity: 1;
}

.drive-member-info-modal .drive-member-info .member-statebox {
    margin-bottom: 20px;
}

.drive-member-info-modal .drive-member-info .member-statebox strong {
    font-size: 1.8rem;
}

.drive-member-info-modal .drive-member-info .member-statebox strong small {
    font-weight: 400;
    opacity: 0.5;
}

.drive-member-info-modal .drive-member-info .member-statebox .member-state {
    position: relative;
    flex-shrink: 0;
    width: 90px;
    padding-right: 30px;
    color: var(--color-gray);
    font-size: 1.4rem;
    text-align: right;
}

.drive-member-info-modal .drive-member-info .member-statebox .member-state:after {
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    width: 20px;
    height: 20px;
    background-color: var(--color-gray);
    border-radius: 50%;
    content: '';
}

.drive-member-info-modal .drive-member-info .member-statebox .member-state.ms-red {
    color: var(--color-red);
}

.drive-member-info-modal .drive-member-info .member-statebox .member-state.ms-red:after {
    background-color: var(--color-red);
}

.drive-member-info-modal .drive-member-info .member-statebox .member-state.ms-green {
    color: var(--color-green);
}

.drive-member-info-modal .drive-member-info .member-statebox .member-state.ms-green:after {
    background-color: var(--color-green);
}

.qr-code-modal .qr-code-info dl,
.drive-member-info-modal .drive-member-info dl,
.refund-request-modal .refund-request-info dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.qr-code-modal .qr-code-info dl:not(:first-of-type),
.drive-member-info-modal .drive-member-info dl:not(:first-of-type),
.refund-request-modal .refund-request-info dl:not(:first-of-type) {
    margin-top: 10px;
}

.qr-code-modal .qr-code-info dl dt,
.drive-member-info-modal .drive-member-info dl dt,
.refund-request-modal .refund-request-info dl dt {
    flex-shrink: 0;
    width: 80px;
    font-weight: 400;
    color: var(--color-light);
}

.qr-code-modal .qr-code-info dl dd,
.drive-member-info-modal .drive-member-info dl dd,
.refund-request-modal .refund-request-info dl dd {
    flex-grow: 1;
}

.qr-code-modal .qr-code-info dl dd strong,
.drive-member-info-modal .drive-member-info dl dd strong,
.refund-request-modal .refund-request-info dl dd strong {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--color-orange);
}


/* 모달 // QR 코드 정보 */
.qr-code-info .qr-img {
    width: 100px;
    margin: 0 auto 20px;
    font-size: 0;
}


/* 모달 // 환불 요청 */
.refund-request-info .comment {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border-line);
    color: var(--color-gray);
}


/* 로딩 */
.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--bg-basic-rgb),0.6);
    z-index: 9999;
}

.loading-modal .lm-ico {
    font-size: 5rem;
    animation: loading-mov 2s linear infinite 0s;
}

.loading-modal .lm-ico {
    --fa-primary-color: orangered;
    --fa-secondary-color: gold;
    --fa-secondary-opacity: 1.0;
}

@keyframes loading-mov {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}




/* -------------------------------- */
@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
}

@media screen and (min-width: 979px) {
}

@media screen and (min-width:1239px) {
}

@media screen and (min-width:1339px) {
}

@media screen and (min-width:1439px) {
}

@media screen and (min-width:1639px) {
}

@media screen and (min-width:1839px) {
}