@import url('raw.css');
.inner {
    padding-left:10px;
	padding-right:10px;
	margin:0 auto;
}
.inner2 {
	width:95%;
	margin:0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.m_hide {display:none !important;}
#wrap {
    width: 100%;
    display: flex;
/*    min-height: 100vh;*/
	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;
    justify-content: center;
	flex-direction: column;
}
#m_nav {display:none;}
.mobile_menu {display:none;}
.container {
    width:100%;
    flex: 1;
	background:#ffffff;
}

.top {
	width: 100vw;
	height: 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed; 
	z-index: 100;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
	background-color: #FAFAFA;
	top:0;
  }
  .top .nav_section {
	width: 96%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
  }
  .top .nav_left {
	position: absolute;
	display: flex;
	justify-content: space-between;
	left: 50%;
	transform: translateX(-50%);
  }
  .top .nav_left .logo {
	width:150px;
	height:42px;
	transform: scale(0.7) translate3d(0, 0, 0);
  }
  .nav {
	width: 30px;
	height: 30px;
	overflow: hidden;
	cursor:pointer;
	}
  .nav img{
	width: 100%;
	}
  .top_nav .nav_right {
	position: absolute;
	display: flex;
	justify-content: space-between;
  /* width: 30%; */
	padding-top: 4px;
	right: 0;
  }
  .top_nav #mobile {
	position: absolute;
	right: 0;
  }

  #logon_name a {
	color: #ff9231;
  }


/*ham menu*/
.ham {
	border-radius: 2px;
	margin: 5px 20px 10px 0;
  }
  .ham .ham_btn {
	position: absolute;
	width: 36px;
	cursor: pointer;
  }
  .ham span {
	display: block;
	width: 70%;
	height: 3px;
	background: #256be8;
	transition: all 0.3s;
	position: relative;
  }
  .ham span + span {
	margin-top: 8px;
  }
  .ham .active span:nth-child(1) {
	-webkit-animation: ease 0.6s top forwards;
			animation: ease 0.6s top forwards;
  }
  .ham .not_active span:nth-child(1) {
	-webkit-animation: ease 0.6s top-2 forwards;
			animation: ease 0.6s top-2 forwards;
  }
  .ham .active span:nth-child(2) {
	-webkit-animation: ease 0.6s scaled forwards;
			animation: ease 0.6s scaled forwards;
  }
  .ham .not_active span:nth-child(2) {
	-webkit-animation: ease 0.6s scaled-2 forwards;
			animation: ease 0.6s scaled-2 forwards;
  }
  .ham .active span:nth-child(3) {
	-webkit-animation: ease 0.6s bottom forwards;
			animation: ease 0.6s bottom forwards;
  }
  .ham .not_active span:nth-child(3) {
	-webkit-animation: ease 0.6s bottom-2 forwards;
			animation: ease 0.6s bottom-2 forwards;
  }

  @-webkit-keyframes top {
	0% {
	  top: 0;
	  transform: rotate(0);
	}
	50% {
	  top: 11px;
	  transform: rotate(0);
	}
	100% {
	  top: 11px;
	  transform: rotate(45deg);
	}
  }

  @keyframes top {
	0% {
	  top: 0;
	  transform: rotate(0);
	}
	50% {
	  top: 11px;
	  transform: rotate(0);
	}
	100% {
	  top: 11px;
	  transform: rotate(45deg);
	}
  }
  @-webkit-keyframes top-2 {
	0% {
	  top: 11px;
	  transform: rotate(45deg);
	}
	50% {
	  top: 11px;
	  transform: rotate(0deg);
	}
	100% {
	  top: 0;
	  transform: rotate(0deg);
	}
  }
  @keyframes top-2 {
	0% {
	  top: 11px;
	  transform: rotate(45deg);
	}
	50% {
	  top: 11px;
	  transform: rotate(0deg);
	}
	100% {
	  top: 0;
	  transform: rotate(0deg);
	}
  }
  @-webkit-keyframes bottom {
	0% {
	  bottom: 0;
	  transform: rotate(0);
	}
	50% {
	  bottom: 11px;
	  transform: rotate(0);
	}
	100% {
	  bottom: 11px;
	  transform: rotate(135deg);
	}
  }
  @keyframes bottom {
	0% {
	  bottom: 0;
	  transform: rotate(0);
	}
	50% {
	  bottom: 11px;
	  transform: rotate(0);
	}
	100% {
	  bottom: 11px;
	  transform: rotate(135deg);
	}
  }
  @-webkit-keyframes bottom-2 {
	0% {
	  bottom: 11px;
	  transform: rotate(135deg);
	}
	50% {
	  bottom: 11px;
	  transform: rotate(0);
	}
	100% {
	  bottom: 0;
	  transform: rotate(0);
	}
  }
  @keyframes bottom-2 {
	0% {
	  bottom: 11px;
	  transform: rotate(135deg);
	}
	50% {
	  bottom: 11px;
	  transform: rotate(0);
	}
	100% {
	  bottom: 0;
	  transform: rotate(0);
	}
  }
  @-webkit-keyframes scaled {
	50% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(0);
	}
  }
  @keyframes scaled {
	50% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(0);
	}
  }
  @-webkit-keyframes scaled-2 {
	0% {
	  transform: scale(0);
	}
	50% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  @keyframes scaled-2 {
	0% {
	  transform: scale(0);
	}
	50% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
 .menuBox {
	width:100%;
 }
.menu_tab {
	width: 100%;
	border: 1px #e4e4e4 solid;
	background-color: #FFFFFF;
	border-radius: 10px;
	box-shadow: 2px 4px 10px rgb(0 0 0 / 15%);
	z-index: 999;
	overflow: hidden;
	padding: 20px 10px;
	overflow-x: auto;
	position: fixed;
    margin-top:15%;
}
.menu_scroll {
	overflow: hidden;
	overflow-x: auto;
	width: 100%;
}

.menu_tab .t_menu_01 {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 width:100%;
 }
 .menu_tab .t_menu_01 li {
    width: calc(100%/5);
	text-align: center;
	line-height: 40px;
 }

.menu_tab .menu-tit {
   font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}
   .menu-table {
	width: 100%;
}
   .menu-table .li-th {
	height: 45px;
	padding: 0 20px;
	border-bottom: 1px solid #ddd;
	background: #f7f7f7;
	color: #222;
	vertical-align: middle;
	text-align: left;
   width:27%;
   font-size:12px;
}
.menu-table tr:nth-child(1) {
	border-top: 2px solid #444444;
}
.menu-table .li-td {
	width:73%; 
	border-bottom: 1px solid #ddd; 
	display: table-cell; 
	vertical-align: inherit;
	font-size:12px;
}
.menu-table .li-td ul li{
	float: left;
	height: 25px;
	line-height: 25px;
	padding: 0 12px 0 11px;
	box-sizing: border-box;
    cursor:pointer;
    
}
.menu_tab li.on a{
   color:#f08c36;
}





/*탑바로가기/카톡 버튼*/
.top-btn-wrap {
	position: fixed;
	bottom: 60px;
	right: 10px;
	z-index: 9999;
}
#kakao-talk-channel-chat-button {
	border: 0px solid red;
	position: fixed;
	right: 10px;
	bottom: 120px;
	z-index: 9999;
}
#kakao-talk-channel-chat-button a,
.top-btn-wrap a {
	display: inline-block;
	width: 50px;
	height: 50px;
	position: relative;
	background-color: white;
	border-radius: 100%;
	box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.15);
	transition: all .2s ease-in-out;
}

#kakao-talk-channel-chat-button a img,
.top-btn-wrap a img {
	text-align: center;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

.top-btn-wrap a:hover {
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
}







.visual {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
	margin-top:64px;
	}
.visual-container01 {
    width: 100%;
    height: auto;
    }
.visual-container01 .swiper-slide {
	width:100%;
	height:auto;
   /* background-position: center;
    background-size: cover; */
    }
.visual-container01 .swiper-slide img { width:100%; height:auto;}
.visual-container01 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #4d7e10;
    border: none;
	}
.visual .custom-nav {
    float: right;
    display: flex;
    align-items: center;
    width: 110px;
    z-index: 99;
    position: relative;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background:  rgba(255, 255, 255, .7);
    border-bottom: 1px #e4e4e4 solid;
}
.visual .custom-nav .swiper-pagination05 {
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
    width: auto !important;
    bottom: auto !important;
}
.custom-nav .swiper-pagination-lock {
    display: block !important;
}
.custom-nav .swiper-button-lock {
    display: block !important;
}
.swiper-pagination-lock {
    display: none;
}

.custom-nav .swiper-button-next01, .swiper-button-prev01 {
    width: 30px;
    height: 30px;
    z-index: 10;
    cursor: pointer;
}
.custom-nav .swiper-button-prev01 {
    background-image: url(../../images/nextBt.svg) !important;
	background-position:50% 60%;
	background-size:75%;
    left: 10px;
    right: auto;
	background-repeat: no-repeat;
	border-right: 1px #e4e4e4 solid;
}
.custom-nav .swiper-button-next01 {
    background-image: url(../../images/prevBt.svg) !important;
	background-position:50% 60%;
	background-size:75%;
    right: 10px;
    left: auto;
	background-repeat: no-repeat;
	border-right: 1px #e4e4e4 solid;
}
.swiper-button-lock {
    display: none;
}
.custom-nav .swiper-button-lock {
    display: block !important;
}
.custom-nav .swiper-pagination-fraction {
    width: 50px;
    text-align: center;
}


.tab-menu {
	}
.tab-menu ul {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
    height: 50px;
    font-size: 14px;
}
.tab-menu ul li{
	-webkit-text-decoration: none;
    text-decoration: none;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #191919;
    cursor: pointer;
    padding: 0px;
	}


#sraech-Area {
    width: 100%;
    height: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    float: left;
    margin-top: 12px;
    border: 2px #e4e4e4 solid;
}
#sraech-Area .srarch-bt{
	position:absolute;
	top:14px;
	left:20px;
	cursor:pointer;
	}
#sraech-Area .srarch-bt img {width:20px;}
#sraech-Area .input01 {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #3F4254;
    text-align: left;
    font-family: 'SpoqaHanSansNeo', sans-serif !important;
    padding-left: 50px;
}
#menu-Area {width:100%;overflow:hidden;}
#menu-Area ul li {
    width: 100%;
	cursor: pointer;
	border-radius: 10px;
	overflow: hidden;
	padding: 0px;
	box-sizing: border-box;
	margin-bottom:30px;
}
#menu-Area ul li img {width:100%;height:auto;}
/*뱃지*/
.badgeItem {
    position: absolute;
    top: 10px;
    left: 10px;
	z-index:99;
}
.badgeItem span {
    float: left;
    font-size: 12px;
    margin-right: 5px;
	color: #fff;
	border-radius: 0.2rem;
    padding: 0.1rem 0.5rem;
	font-weight:300;
	margin-bottom:5px;
}
.badgeItem .badge01{
    background: #9a5ed2;
}
.badgeItem .badge02{
    background: #de2e5f;
}
.badgeItem .badge03{
    background: #2fd1ab;
}
.badgeItem .badge04{
    background: #7157d9;
}
.badgeItem .badge05{
    background: #cc8944;
}
.badgeItem ul li {float: left; font-size: 14px; margin-right: 5px; color: #fff; border-radius: 0.2rem; padding: 4px 6px; font-weight:500; margin-bottom:5px; font-family: 'SpoqaHanSansNeo', sans-serif !important;}



/* item01 */
.item01 {
	overflow:hidden;
	margin-top:34px;
	margin-bottom:0;
	}
.item01 ul li {
	float: left;
	width: calc(100%/3);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor:pointer;
	margin-bottom:10px;
}
.item01 ul li .img-item {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}
.item01 ul li .img-item img {
	width: 100%;
	height: 100%;
	-webkit-transition: transform .3s ease-out;
	-moz-transition: transform .3s ease-out;
	-ms-transition: transform .3s ease-out;
	-o-transition: transform .3s ease-out;
	transition: transform .3s ease-out;
}
.item01 ul li:hover img  {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.item01 ul li p {margin-top:5px;}

.main .section-tit {font-size:26px; text-align:center; position:relative; margin-bottom:10px;}
.main .stay-item01 {
    margin-top: 30px;
}
.main .item02-Area {margin-bottom:30px;}
.main .item02-Area .item02_list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.main .item02-Area .item02_list .list01 {
	margin:0 auto;
	width: calc(98% / 1);
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 4px 8px rgb(0 0 0 / 10%);
	margin-bottom: 15px;
	transition: all 0.2s ease-in-out;
	cursor:pointer;
}
.main .item02-Area .item02_list .list01:nth-child(2n-2){
   margin-right:0px;
}
.main .item02-Area .item02_list .list01 .img_box {
	width: 100%;
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
	position:relative;
}
.main .item02-Area .item02_list .list01 .img_box img {
	width: 100%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	object-fit:cover;
/*	height:100% */
}
.item02-Area .item02_list .list01 .info{
	padding:20px 20px 0;
}
.main .item02-Area .item02_list .list01 .Ct-name{
	font-size:18px;
	font-weight:700;
	line-height: 24px;
	margin-bottom:5px;
}
.main .item02-Area .item02_list .list01 .Ct-nation{
	font-size:14px;
	color:#767676;
	height: 42px;
	line-height:20px;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom:10px;
}
.main .item02-Area .item02_list .list01 .Ct-price{
	font-size: 18px;
	color: #0447be;
	font-weight: 700;
}
.main .item02-Area .item02_list .list01 .Ct_date {
	font-size: 16px;
	color: #909090;
	font-weight: 500;
	line-height: 1;
}
.main .item02-Area .item02_list .list01 .cart_img {
	text-align:right;
	margin-top:10px;
	margin-bottom:10px;
	cursor:pointer;
}


footer {
    width: 100%;
    padding: 30px 20px;
    left: 0;
    position: absolute;
    background-color: #F6F7FC;
    position: relative;
	font-size:13px;
}
footer p {font-size:13px; color:#7d7d7d; line-height:22px;}
footer .bottom_mn {padding-top: 10px;}
footer .bottom_mn:after {display: block; content: ""; clear: both;}
footer .bottom_mn ul li {float: left;}
footer .bottom_mn ul li a {color: #323232; font-size: 12px; }
footer .bottom_mn .line {color: #c1c1c1; font-size: 12px; margin-left: 20px; margin-right: 20px;}
footer .btn_foot { font-size: 12px; background: #7d7d7d; border-radius: 30px; color: #fff; padding: 2px 8px;}



#calendarUp {
	position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;
    height:100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
	}

#calendarUp {
	position: absolute;
    top: 55px;
    left: 0px;
    width: 100%;
    height:100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
	}
#calendarUp .ARea{
	width:100%;
	height:500px;
	background:#ffffff;
	border-top:1px #e4e4e4 solid;
	padding-top:40px;
	position: relative;
	}
#calendarUp .close_img {
    position: absolute;
    left: 50%;
    cursor: pointer;
    bottom: 50px;
    transform: translate(-50%);
}
.calendar-not {background:#efefef !important; cursor:not-allowed; color:#a5a1a1 !important;}
#calendarUp .ARea .item-1 .calendar-head p {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
	position:relative;
}
#calendarUp .ARea .item-1 .calendar-head {
    cursor: pointer;
    margin-bottom: 10px;
}
#calendarUp .ARea .item-1 .calendar-head .prev{position:absolute;top:4px;left:0px;}
#calendarUp .ARea .item-1 .calendar-head .next{position:absolute;top:4px;right:0px;}

#calendarUp .ARea .item-1 {width:100%;}
#calendarUp .ARea .item-1 table {
	width:100%;
	border: none;
	border-collapse: collapse;
    border-spacing: 0;
	}
#calendarUp .ARea .item-1 table tr th{
	width:calc(100%/7);
	height:50px;
	text-align:center;
	font-size: 14px;
	}
#calendarUp .ARea .item-1 table tr td{
	width:calc(100%/7);
	height:50px;
	text-align:center;
	cursor:pointer;
	font-size: 14px;
	}
#calendarUp .ARea .item-1 table tr td span {
	width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    line-height: 40px;
	position:relative;
	}
#calendarUp .ARea .item-1 table tr td span.active {
    background: #13a2e7 !important;
    color: #fff;
}
#calendarUp .ARea .item-1 table tr td span.active:after {
    content: '출발';
    float: left;
    position: absolute;
    top: 30px;
    left: 8px;
    color: #13a2e7;
    font-size: 12px;
    z-index: 999;
}
#calendarUp .ARea .item-1 table tr td span.end {
    background: #13a2e7 !important;
    color: #fff;
}
#calendarUp .ARea .item-1 table tr td span.end:after {
    content: '도착';
    float: left;
    position: absolute;
    top: 30px;
    left: 8px;
    color: #13a2e7;
    font-size: 12px;
    z-index: 999;
}
#calendarUp .ARea .item-1 table tr td span:hover {
    width: 40px;
    height: 40px;
    background: #e2e2e2;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    line-height: 40px;
}
#calendarUp .ARea .item-1 table tr th.sun {
    color: #bc0023;
}
#calendarUp .ARea .item-1 table tr td.sun {
    color: #bc0023;
}
#calendarUp .ARea .item-1 table tr th.sat {
    color: #3f51b5;
}
#calendarUp .ARea .item-1 table tr td.sat {
    color: #3f51b5;
}

/* 바디에 스크롤 막는 방법 */
.not_scroll{
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%
}
.not_scroll .cont {
    position: relative;
    top: 0;
}

/*로그인.회원가입*/
.login-content {
	width: 92%;
	margin: 30% auto 10%;
}
.login-content .input_row {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0;
	overflow: hidden;
}
.login-content .input_row .input_grp {
	display: block;
	flex-wrap: wrap;
	width: 100%;
}
.login-content .input_row .input_grp label span {
	color:#444;
	font-size:14px;
	display:inline-block;
}
.login-content .input_row input.txt {
	width: 100%;
	padding: 10px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #dadada;
	background: #fff;
	font-size: 16px;
	color: #555;
	vertical-align: middle;
	font-family: 'SpoqaHanSansNeo';
}
.login-content .input_row input.inp_pw {
	width: 100%;
	padding: 10px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #dadada;
	background: #fff;
	font-size: 16px;
	color: #555;
	vertical-align: middle;
	font-family: 'SpoqaHanSansNeo';
}
.login-content .input_row input:focus { background: #fff; border: 1px solid #5189ed;}
.login-content .btn_area {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	margin: 20px -5px 0 -5px;
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 20px auto 0;
}
.login-content .btn_area::after {display:block; content:''; clear:both;}
.login-content .btn_submit {
	width: calc(100% / 2 - 4px);
	height: 50px;
	background-color: #256be8;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	vertical-align: middle;
	border:none;
	float:left;
	font-family: 'SpoqaHanSansNeo';
	border-radius:4px;
}
.login-content .btn_submit:last-child {
	margin-right:0;
	float:right;
}
.login-content .btn-join-wrap { text-align:center;}
.login-content .btn-join-wrap .tit_line {
	position: relative;
	width:100%;
	margin: 30px 0 15px;
	font-size: 15px;
	color: #555;
}
.login-content .btn-join-wrap .tit_line:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ddd;
	content: '';
	z-index: 1;
}
.login-content .btn-join-wrap .tit_line .jtit {
	display: inline-block;
	padding: 0 10px;
	z-index: 99999;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	text-align: center;
}
.login-content .btn-join-wrap .tit_line .jtit>em {
	display: inline-block;
	padding: 0 10px;
	background: #fff;
	font-family: 'SpoqaHanSansNeo';
	color:#9a9a9a;
}
.login-content .btn-join-wrap .btn_join { border:1px solid #222; border-radius:25px; height:50px; font-family: 'SpoqaHanSansNeo';font-size: 15px; background:#fff; width:100%; margin:10px auto 0;}
.login-content .btn-join-wrap button {cursor:pointer;}
/*end 로그인*/
.login-content .input_title{
	text-align: left;
	font-size: 18px;
	border-bottom: 1px #323232 solid;
	padding-bottom: 10px;
	color:#323232;
	font-family: 'SpoqaHanSansNeo-bold';
	margin: 40px 0 16px;

}
.login-content .input_name{
	float: left;
	width: 25%;
	line-height: 44px;
	color:#444;
}
.login-content .input_row .join {
	width: 75%;
	padding: 8px;
	height: 44px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid #dadada;
	background: #fff;
	font-size: 16px;
	color: #555;
	vertical-align: middle;
	font-family:'SpoqaHanSansNeo';
}
.login-content .input_row .join:focus { background: #fff; border: 1px solid #5189ed;}
.login-content .input_row select.txt{
	width: 75%;
	padding: 8px;
	height: 46px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	box-sizing: border-box;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 16px;
	color: #555;
	vertical-align: middle;
	font-family:'SpoqaHanSansNeo';
}
.login-content .input_row .email{
	width: calc(75% / 2 - 12px);
	padding: 8px;
	height: 44px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	box-sizing: border-box;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 16px;
	color: #555;
	vertical-align: middle;
	border-radius:4px;
	font-family:'SpoqaHanSansNeo';
}
.login-content .input_row .email:focus { background: #fff; border: 1px solid #5189ed;}
.login-content .terms-box { height:140px; overflow-y:scroll; border:1px solid #dadada; border-radius:4px; margin-top:10px; padding:10px;font-family: 'SpoqaHanSansNeo'; font-size:12px;}
.login-content .terms-box .ti {font-family: 'SpoqaHanSansNeo-Medium'; margin-bottom:6px; color:323232;}
.login-content .terms-box p {color:#7d7d7d; line-height:18px;}
.login-content .terms-box p.start {color:#323232;}
.login-content .terms-box p.end { margin-bottom:20px;}
/*회원가입*/
/*로그인.회원가입 END*/

/*내정보수정*/
.myinfo-modify {
	width: 92%;
	margin: 30% auto 18%;
}
.myinfo-modify .tit_line { width:100%;}
.myinfo-modify .tit_line:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ddd;
	content: '';
	z-index: 1;
}

.myinfo-modify .input_title{
	text-align: left;
	font-size: 18px;
	border-bottom: 1px #323232 solid;
	padding-bottom: 10px;
	color:#323232;
	font-family: 'SpoqaHanSansNeo-bold';
	margin: 40px 0 16px;
}

.myinfo-modify .input_name{
	float: left;
	width: 25%;
	line-height: 50px;
	color:#444;
}
.myinfo-modify .input_row {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	overflow: hidden;
}
.myinfo-modify .input_row .input_grp {
	display: block;
	flex-wrap: wrap;
	width: 100%;
}
.myinfo-modify .input_row .input_grp label span {
	color:#444;
	font-size:14px;
	display:inline-block;
}
.myinfo-modify .passport_name {width:37%; height:46px; padding:10px; border:1px solid #ddd; border-radius:4px; font-family:'SpoqaHanSansNeo'; font-size:16px; color:#555;}
.myinfo-modify .passport_name:focus {background: #fff; border: 1px solid #5189ed;}
.myinfo-modify .passport_name:last-child {float:right;}
.myinfo-modify .input_row .join { width: 75%; padding: 10px; height: 46px; -webkit-appearance: none; -moz-appearance: none; appearance: none; box-shadow: none; border-radius: 4px; box-sizing: border-box; border: 1px solid #dadada; background: #fff; font-size: 16px; color: #555; vertical-align: middle; font-family:'SpoqaHanSansNeo'; }
.myinfo-modify .input_row .join:focus { background: #fff; border: 1px solid #5189ed;}
.myinfo-modify .input_content{ float: left; width: 75%; line-height: 46px; font-family:'SpoqaHanSansNeo'; font-size:16px; color:#555;}
.myinfo-modify .input_content::after {display:block; content:''; clear:both;}
.btn-area { display:block; width:100%; text-align:center; margin:30px 0 100px;}
.btn-area button { width:100%; text-align:center; background:#256be8; height:50px; line-height:50px;  font-size:15px; font-family:'SpoqaHanSansNeo'; border-radius:4px; color:#fff;} 
/*내정보수정 END*/

/*마이페이지*/
.my-menu-list {
	overflow: hidden;
	width:100%;
}
.my-menu-list ul:first-child {margin-bottom:20px;}
.my-menu-list ul::after {display:block; content:''; clear:both;}
.my-menu-list ul li{
	float:left;
	width:calc(100% / 2 - 6px);
	text-align:center;
	background-color: #f5f6f7;
	height:36px;
	line-height:36px;
	padding:0 20px;
	cursor:pointer;
	font-size: 14px;
	font-family: 'SpoqaHanSansNeo';
	border-radius:20px;
	margin-right:6px;
	margin-bottom:6px;
}
.my-menu-list ul:last-child li:nth-child(even) {float:right; margin-right:0;}
.my-menu-list ul li:last-child {margin-right:0;}
.my-menu-list ul li a {
	font-size: 14px;
	display: block;
}
.my-menu-list ul li.on {
	background-color: #3270de;
	color: #ffffff;
}
.my-menu-list ul li.on a {color:#ffffff;}
.mypage .reservation-item {overflow:hidden;}
.mypage .reservation-item .item-1 {
	height:400px;
	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;
		flex-direction: column;
	}
.mypage .reservation-item .item-1 {
	margin-bottom: 20px;
	}
.mypage .reservation-item .item-1 img{
	width:73px;
	}
.mypage .reservation-item .item-1 .txt{
	margin: 0px auto 8px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.33;
	letter-spacing: -0.4px;
	text-align: center;
	color: #343a40;
	}
.mypage .reservation-item .item-1 .txt2{
	font-size: 14px;
	line-height: 1.57;
	letter-spacing: -0.4px;
	text-align: center;
	color: #848c94;
	}


.mypage .reservation-item .item-2 {
	overflow:hidden; width:100%; padding-top:40px;
}
.mypage .reservation-item .item-2 .item-2-content .tit {
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	border-bottom: 2px #222 solid;
	padding-bottom: 10px;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area {
	width: 100%;
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item {overflow:hidden;margin-bottom:30px;}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .date-p{font-size:14px; color:#666; font-family: 'SpoqaHanSansNeo-Medium'; margin-right:6px;}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area{
	width:100%;
	margin:0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	padding-bottom:30px;
	border-bottom:1px solid rgba(0, 0, 0, .08); 
	}
	.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item {
	width: 100%;
	padding-bottom: 10px;
	}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .statebox{
	background:#e6f8f3;
	border:1px #94e7d1 solid;
	border-radius:5px;
	width:64px;
	height:24px;
	font-size:14px;
	font-weight:500;
	text-align:center;
	line-height:24px;
	color: #0e9c75;
	}
.statebox{
	background:#fff3e3;
/*	border:1px #94e7d1 solid; */
	border-radius:20px;
	height:24px;
	line-height:24px;
	font-size:14px;
	font-family: 'SpoqaHanSansNeo-Medium';
	text-align:center;
	color: #d56840;
	display:inline-block;
	padding:0 10px;
	}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in {overflow:hidden; margin-top:10px;}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in .img-box {
	height: 40px;
	width: 15%;
	margin-right:3%;
	float: left;
	border-radius: 10px;
	background-size: cover;
	background-position: 50%;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in .img-box img {
	width:100%;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in .text-box {
	float: right;
	position: relative;
	width: 82%;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in .text-box .ttit01 {
	font-size: 15px;
	color: #323232;
	font-family: 'SpoqaHanSansNeo';
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in .text-box .ttit01 .stit {
	font-size: 12px;
	color: #9f9f9f;
	font-family: 'SpoqaHanSansNeo';
	display:block;
	height:18px;
	line-height:18px;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .form-in .text-box .explanation {
	padding-left: 5px;
	padding-right:2px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-height: 18px;
	max-height: 54px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	width: 100%;
	margin-top: 7px;
/*	font-size: 14px;*/
	font-size: 12px;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea {
	width: 100%;
	background: #f8f8f8;
	border-radius: 4px;
	padding: 15px 20px;
	margin-top: 10px;
	overflow: hidden;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .timebox {
	width: 100%;
	margin-bottom: 15px;
	}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .timebox:last-child {margin-bottom: 0;}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .timebox .t1 {
	font-size: 14px;
	color: #323232;
	font-family: 'SpoqaHanSansNeo';
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .timebox .t2 {
	font-size: 14px;
	color:#7d7d7d;
	font-family: 'SpoqaHanSansNeo';
}


.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .pricebox {
	width: 100%;
	float: left;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .pricebox table {
	width:100%;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .pricebox table tr td{
	font-size: 14px;
	height: 20px;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .pricebox table tr td .t1{
	color: #323232;
	width: 40px;
	display: inline-block;
	margin-right: 5px;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .pricebox table tr td .d1{
	color:#232323;
}
.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .left-item .checkArea .pricebox table tr td.priceSum{
	text-align: right;
	color: #323232;
	font-weight: 700;
}

  .mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area {
   /*border: 1px #e4e4e4 solid;
	border-radius: 20px;*/
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-grid; 
	display: grid;

	}
	.mypage .reservation-item .item-2 .item-2-content .content-Area .list-item .info-Area .right-item {
	width: 100%;
	display: table;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 20px;
	}	
	.mypage .btn_nor {
	font-family: 'SpoqaHanSansNeo-Medium';
	background: #e9ecef;
	width: 49%;
	height: 40px;
	line-height: 40px;
	color: #495056;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 5px;
	margin-top: 5px;
	float: left;
	}
	.mypage .btn_nor:nth-child(2n-1) {
	margin-right:2%;
	}

	.mypage .review-item .item-1 .reviewArea {
	display: block;
	margin-bottom: 20px;
	border-bottom: 1px #e4e4e4 solid;
	padding-bottom: 20px;
	overflow: hidden;
	}
	.mypage .review-item .item-1 .reviewArea .Thumbnail {
	width: 120px;
	float: left;
	}
	.mypage .review-item .item-1 .reviewArea .info {
	padding-left: 15px;
	padding-top: 10px;
	float: left;
	width: calc( 100% - 120px);
	}
	.mypage .review-item .item-1 .reviewArea .reviewBt {
	margin-left: auto;
	float: left;
	width: 100%;
	text-align: center;
	background-color: #475eb3;
	height: 45px;
	line-height: 45px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	margin-top: 10px;
	color: #fff;
	}
.mypage .cancelBtn {
	font-family: 'SpoqaHanSansNeo-Medium';
	background:#e9ecef;
	height:40px;
	line-height:40px;
	color:#495056;
	text-align:center;
	border-radius:5px;
	cursor:pointer;
}
.mypage .btn_red {background-color:#EF3E44 !important; color:#fff;}
.mypage .btn_red:hover {box-shadow:0px 0px 4px rgb(239 62 68 / 70%);}
/*마이페이지 END*/


/* 여행상품 리스트 */
.contents-wrap { width:92%; margin: 20px auto; line-height: 24px; font-family: 'SpoqaHanSansNeo';/* color:#7d7d7d;*/}
.top-ti-area {margin-top:80px;}
.page-ti {font-family: 'SpoqaHanSansNeo-Bold'; color:#323232; font-size: 22px; letter-spacing: -0.04em; margin-bottom: 20px;}
h2 { width: 720px; margin: 0 auto; font-family: 'SpoqaHanSansNeo-Bold'; color: #323232; font-size: 22px; letter-spacing: -0.04em; padding-bottom: 20px;}
h2 span {font-family: 'SpoqaHanSansNeo-Medium'; color: #323232; font-size: 14px; letter-spacing: -0.04em; margin-bottom: 4px; display: block;}
.prod_ti {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 18px; line-height: 36px; color: #323232; letter-spacing: -0.04em;}
.prod_sti { width:100%; font-family: 'SpoqaHanSansNeo'; font-size: 14px; line-height: 18px; color: #9f9f9f; padding-bottom: 22px; letter-spacing: -0.04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.prod_price {font-size: 18px; color: #000; font-weight: 700; letter-spacing: -0.01em;}
.tag-area {width: 100%; margin: 50px auto 0; padding:0;}
.tag-area::after { display: block; content: ""; clear: both;}
.tag-area .tag {margin-bottom: 16px;}
.tag-area .tag .on { background: #021717; color: #fff }
.tag-area .tag span {font-size: 16px; letter-spacing: -0.04em; padding: 6px 10px; display: inline-block; margin-bottom: 8px; border-radius: 5px; background: #f5f5f5; margin-right: 6px; color:#7d7d7d;}
#list { width: 100%;}
#list ul {margin-bottom: 30px;}
#list ul:after {display: block; content: ""; clear: both;}
#list ul li {float: left;}
#list ul li:last-child {margin-right: 0;}
#list .tag_thumb {width:100%; height:242px;/* width: 362px; height: 242px;*/ margin-bottom: 20px; position: relative; }
#list .tag_thumb .badge-area { position: absolute; top: 8%; left: 4%; z-index: 3;}
#list .tag_thumb .badge-area span {color: #fff; border-radius: 4px; padding: 4px 6px; margin-right: 4px;}
#list .tag_thumb .badge01 { background:#1fbfc3;}
#list .tag_thumb .badge02 {background:#dc6915;}
#list .tag_thumb .badge03 {background:#1a35d6;}
#list .tag_thumb .badge04 {background:#6e0dc9;}
#list .tag_thumb img {width: 100%; height: 100%; border-radius:20px;}

/* 여행상품 상세 */
.prod_thumbs {width: 100%; position: relative; margin-top:64px;}
.prod_thumbs img {width: 100%; height:256px;}
.thumbs-paging { position: absolute; border-radius: 20px; padding: 4px 10px; background: rgba(0, 0, 0, .6); color: #fff; text-align: center; z-index: 9; bottom:4%; right: 4%; font-family: 'SpoqaHanSansNeo'; font-weight: normal;}
.detailmn_fixed { width: 100%; padding: 0 30px; border-bottom: 1px solid; border-bottom: 1px solid rgba(0, 0, 0, .1); background: #fff; bottom: 0; z-index: 99;}
.detailmn_fixed::after { display: block; content: ""; clear: both;}
.detailmn_fixed div { /*float: left;*/display: inline-block;}
.detailmn_fixed div a { display: inline-block; color: rgba(0, 0, 0, .4); padding:20px 0 16px; margin: 0 10px; font-size: 16px;font-family: 'SpoqaHanSansNeo-bold';}
.detailmn_fixed div a.on{ color:#323232; border-bottom:3px solid rgba(7, 184, 188, .9); transform: translateY(1px);}
.detail_fixed { z-index: 99;position: fixed;top: 56px;bottom: auto; }
.sec { margin-bottom: 50px; font-size: 14px;}
.sec p { color:#7d7d7d;}
.sec > h3 {font-family: 'SpoqaHanSansNeo-Medium'; font-weight:normal; color: #323232; font-size: 18px; letter-spacing: -0.04em; margin-bottom: 12px;}
.info>h2 { margin: 0; padding: 0; width: 100%;}
.info .detail_ti {font-family: 'SpoqaHanSansNeo-Medium'; font-weight:normal; font-size: 22px; color: #323232; letter-spacing: -0.04em; padding-bottom: 8px; line-height: 32px;}
.info .detail_sti {font-family: 'SpoqaHanSansNeo'; font-size: 18px; color: #9f9f9f; letter-spacing: -0.04em; padding-bottom: 26px;}
.info .detail_price {font-size: 22px;color: #000;font-weight: 700;letter-spacing: -0.01em;}
.cont1 { margin-bottom: 30px;}
.cont2 div { border-radius: 16px; padding: 24px; }
.cont2 div > h4 {font-family: 'SpoqaHanSansNeo-Medium'; color:#666;}
.cont2 div:first-child {background: #effdfe; margin-bottom: 15px;}
.cont2 div:first-child > h4 {color:#666;}
.cont2 div:first-child p { color:#666; width: 100%;}
.cont2 div:last-child {background: #f8f8f8;}
.schedule div {border-radius: 16px; background: #f8f8f8; padding: 20px; margin-bottom: 15px;}
.schedule div > h4 {font-family: 'SpoqaHanSansNeo-Medium'; color: #323232; font-size: 16px; letter-spacing: -0.04em; margin-bottom: 10px;}
.schedule div > h4 span { width: 16px; height: 20px; background: url(../../images/pin.svg) no-repeat; transform: translateY(20%) translateX(1%); line-height: 26px; display: inline-block; margin-right: 10px;}
.schedule div ul {width: 100%;}
.schedule div ul li { display: flex; border-left: 3px solid rgba(73, 73, 73, .3); line-height: 24px;font-family: 'SpoqaHanSansNeo'; width: 100%; margin-left:2%;}
.schedule div ul li span {float: left; color:#7d7d7d; }
/*.schedule div ul li span:first-child { width: 6px; height: 6px;}*/
.schedule div ul li span.keycolor {color:#256be8;}
.schedule div ul li span:last-child { display:block; line-height: 24px;}
.schedule div ul li .dot {width: 6px; height: 6px; background: url(../../images/schedule_dot.svg) no-repeat; transform: translateY(6%) translateX(-76%);  margin:7px 10px 0 0; display: inline-block;}
.notice { border-bottom: 1px solid rgba(0, 0, 0, .7);}
.notice > p { margin-bottom: 40px;}
.review h3 span {font-family: 'SpoqaHanSansNeo-bold'; color:#07b8bc; font-size: 20px; margin-left: 6px; letter-spacing: normal;}
.review .review-wrap { padding: 0 0 5% 0;}
.review .review-wrap .cell { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid #eee;}
.review .review-wrap .cell::after { display: block; content: ""; clear: both;}
.review .review-wrap div:last-child {border-bottom: none; }
.review .review-wrap .cell ul { margin-bottom: 10px;}
.review .review-wrap .cell ul::after { display: block; content: ""; clear: both;}
.review .review-wrap .cell ul .review_prod_name { color:#444;}
.review .review-wrap .cell ul li {font-family: 'SpoqaHanSansNeo'; float: left; padding-right: 10px; border-right: 1px solid #eee; margin-right: 10px;}
.review .review-wrap .cell ul li:last-child {padding-right: 0; border-right: none; margin-right: 0;}
.review .review-wrap .cell ul li span { margin: 0;  width: 16px; height: 16px; display: inline-block;}
.review .review-wrap .cell div { float: left; margin-top: 20px; margin-right: 6px;}
.review .review-wrap .cell div:last-child {margin-right:0;}
.review .review-wrap .cell div img { width: 64px; border-radius: 10px;}
.bt_fixed { width:100%; padding:14px 0 20px; border-top: 1px solid rgba(37, 107, 232, .3); background: #fff; position:fixed; bottom: 0; z-index: 99;}
.bt_fixed ul li { width: 50%; float: left; padding: 0 20px;}
.bt_fixed .bt_ti {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 18px; color: #323232; letter-spacing: -0.04em; line-height: 28px; height:30px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.bt_fixed .bt_price {font-size: 16px; color: #0447be; line-height: 28px; font-weight: 700; letter-spacing: -0.01em;}


/*일정*/
.travel_plan {width:100%; margin: 20px auto 50px;}
.travel_plan .plan_area ._head {background-color: rgb(0 0 0 / 4%); border-top: 1px solid #323232; display: flex; justify-content: space-between; align-items: center;  padding: 20px 15px 20px 20px; font-size: 17px;font-weight:600; color:#323232;}
.travel_plan .plan_area ._head .date {color:rgb(0 0 0 / 50%); font-size: 14px; font-weight:500; margin-right: 10px;}
.travel_plan .plan_area ._head .open {transform: rotate(180deg);}
.travel_plan .plan_area ._body {padding: 30px 0;}
.travel_plan .plan_area ._body .airInfo {display: flex; flex-direction: column; padding: 10px 0 50px; width:94%; margin: 0 auto; color:#323232;}
.travel_plan .plan_area ._body .airInfo:last-child {padding-bottom: 0;}
.travel_plan .plan_area ._body .airInfo dl dt {font-size: 24px; font-weight:600; margin-bottom: 4px;}
.travel_plan .plan_area ._body .airInfo dl dd {line-height: 1.4;}
.travel_plan .plan_area ._body .airInfo .arrival { text-align: right;}
.travel_plan .plan_area ._body .airInfo .airtime {width:100%; display: flex; flex-direction: column; padding-top: 10px; margin: 16px 0;}
.travel_plan .plan_area ._body .airInfo .airtime .airline {font-size: 14px; font-weight:500; display: flex; align-items: center; justify-content: center; }
.travel_plan .plan_area ._body .airInfo .airtime .airline span {width: 26px;height: 26px;background: url(../../images/temp04/common/flight_depart.svg) 50% 50% / 26px no-repeat; transform: translateX(-26%) translateY(-20%);}
.travel_plan .plan_area ._body .airInfo .airtime .time {color:rgb(0 0 0 / 60%); font-size: 13px; text-align: center; background: url(../../images/temp04/common/airline_arrow.png) 50% 76% / 80% no-repeat; padding-bottom: 16px;}

.travel_plan .plan_area ._body .time_info {position:relative; padding:0 0 40px 20px; width:94%; margin: 0 auto;}
.travel_plan .plan_area ._body .time_info:first-child .tit:before {left:-34px;top:-5px;width:28px;height:28px;background:url('../../images/temp04/common/map_pin.svg') 0 50%/100% no-repeat;}
.travel_plan .plan_area ._body .time_info.last {padding-bottom:0}
.travel_plan .plan_area ._body .time_info .tit{position: relative; font-weight:600; color:#323232; font-size:16px;line-height:18px}
.travel_plan .plan_area ._body .time_info .tit::before{position: absolute; left:-23px; top:4px; display: block; content: ''; width:8px;height:8px;background:#256be8; border-radius: 100%;z-index:2; }
.travel_plan .plan_area ._body .time_info .tit + .txt{padding-top:20px;}
.travel_plan .plan_area ._body .time_info .txt {color:rgb(0 0 0 / 70%); font-size: 14px; line-height: 1.4; margin: 0;}
.travel_plan .plan_area ._body .time_info .photo {display: flex; flex-direction: column; margin-top: 20px;}
.travel_plan .plan_area ._body .time_info .photo .item_img {position: relative; flex: 1; width: 100%; height:240px; margin-bottom: 14px;}
.travel_plan .plan_area ._body .time_info .photo .item_img img {width: 100%; height: 100%; object-fit: cover;}

.travel_plan .plan_area ._body .time_info:before,
.travel_plan .plan_area ._body .time_info:after {content: '';display:block;position:absolute;left:0;}
.travel_plan .plan_area ._body .time_info:after{width:1px;height:100%;top:0;background:rgb(0 0 0 / 10%);z-index:1}
.travel_plan .plan_area ._body .time_info.end {padding-bottom: 15px;}
.travel_plan .plan_area ._body .time_info.location:before{left:-14px;top:-5px;width:28px;height:28px;background:url('../../images/temp04/common/map_pin.svg') 0 50%/100% no-repeat;}
.travel_plan .plan_area ._body .time_info.end.location:before{top:30px;}
.travel_plan .plan_area ._body .time_info.plan_box:before{display:none}

.travel_plan .plan_area ._body .optional_tour_box {position: relative; border:1px solid rgb(0 0 0 / 10%); width: 100%; display: flex; flex-direction: column; margin-bottom: 30px; padding: 60px 20px 20px 20px; }
.travel_plan .plan_area ._body .optional_tour_box span {position: absolute;background:#ed5351; top: -10px; left:20px; width:50px; height: 50px; color:#fff; text-align: center;padding-top: 7px;}
.travel_plan .plan_area ._body .optional_tour_box ul {display: flex; flex-direction: column; margin-top: 20px;}
.travel_plan .plan_area ._body .optional_tour_box ul .item_img {position: relative; width:100%; height:186px; border-radius:10px; background-size:cover; background-repeat: no-repeat; background-position: 50%; margin: 0 30px 14px 0;}
.travel_plan .plan_area ._body .optional_tour_box ul li dl { display: flex; flex-direction: row; color:rgb(0 0 0 / 80%); padding-top:10px;}
.travel_plan .plan_area ._body .optional_tour_box ul li dl dt {width:80px}
.travel_plan .plan_area ._body .plan_box {border:1px solid rgb(0 0 0 / 10%); width: 90%; display: flex; flex-direction: column; margin-top: 20px; margin-bottom: 30px; margin-left:8%;}
.travel_plan .plan_area ._body .plan_box div {width:100%; height: auto;}
.travel_plan .plan_area ._body .plan_box .hotel { height: auto; padding:20px 30px 20px 32%; background:url('../../images/temp04/common/plan_bed.svg') 13% 50%/30px no-repeat; border-bottom: 1px solid rgb(0 0 0 / 10%); display: flex; align-items: center;}
.travel_plan .plan_area ._body .plan_box .hotel span {font-weight:500;color:#323232; line-height: 24px;}
.travel_plan .plan_area ._body .plan_box .hotel .btn_hotelHome {display:block; border:1px solid rgb(0 0 0 / 60%); border-radius: 2px; width: auto; margin-top: 10px; font-size: 12px; color:rgb(0 0 0 / 60%)}
.travel_plan .plan_area ._body .plan_box .meal { display: flex; flex-direction:column; padding:20px 30px 20px 32%; background:url('../../images/temp04/common/plan_meal.svg') 13% 50%/30px no-repeat;}
.travel_plan .plan_area ._body .plan_box .meal span {width: auto; line-height: 24px;color:#323232}




/*여행상품 상세 견적요청 달력*/
.calHeader{
	position: sticky;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: 1000;
	text-align:center;
	margin-bottom:40px;
	padding-top:20px;
	background:#fff;
}
.calHeader .layer-close { 
	position: absolute;
	right:15px;
	top:15px;
}
.calSelect{
	width: 92%;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	box-sizing: border-box;
	border:0;
	border-bottom: 2px solid #222;
	background: #fff;
	font-size: 16px;
	color: #222;
	font-family: 'SpoqaHanSansNeo-Medium';
	vertical-align: middle;
	text-align: center;
    cursor: pointer;

}
.calSelect option {
	font-family: 'SpoqaHanSansNeo-Medium';
}
.datails-page-Active .item-1-option .date-select-box {
	position: fixed;
	width: 92%;
	height: 90%;
	bottom:0;
	left: 50%;
	background: #ffffff;
	border-radius: 30px 30px 0 0;
	box-shadow:0px 8px 10px 10px rgb(0 0 0 / 8%);
	z-index: 999;
	overflow:hidden;
	overflow-y:auto;
	transform:translateX(-50%);
	padding-bottom: 50px;
}
.datails-page-Active .item-1-option .date-select-box .date-box-head{
   position:relative;
   width:100%;
   padding-left:20px;  
}
.datails-page-Active .item-1-option .date-select-box .date-box-head span {
	color: #323232;
   font-size: 20px;
   font-family: 'SpoqaHanSansNeo-Medium';
}
.datails-page-Active .item-1-option .date-select-box .date-box-head .prev {
	position: absolute;
	top: 5px;
	left: 24px;
}
.datails-page-Active .item-1-option .date-select-box .date-box-head .next {
	position: absolute;
	top: 5px;
	right: 20px;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  {
	overflow:hidden;
	margin-bottom:40px;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar{
	border-collapse: collapse;
	border-spacing: 0;
	width:100%;
	margin-top: 20px;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr th{
	width: calc(100%/7);
	height: 20px;
	font-size:14px;
	color:#323232;
	font-weight:bold;
	text-align: center;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr td{
	width: calc(100%/7);
	height: 50px;
	line-height:50px;
	text-align: center;
	cursor: pointer;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr td div {
	width: 100%;
	height: 100%;
	display: inline;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	margin: 0 auto;
	line-height: 20px;
	position: relative;
	font-size: 14px;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr td div .cal_price {
	font-size:12px;
	color:#9f9f9f;
}

.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr td div.active {
	background: #92b47d !important;
	color: #fff;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr td div.End {
	cursor:no-drop;
	color:#d3d3d3;
	text-decoration: line-through;
}
.datails-page-Active .item-1-option .date-select-box .date-box-body  .Calendar tr td div:hover {
	width: 100%;
	height: 40px;
	background: #e2e2e2;
	display: block;
	margin: 0 auto;
	line-height: 20px;
}
.datails-page-Active .item-1-option .option-select-box {
	position: fixed;
	width: 92%;
	height: 90%;
	bottom:0;
	left: 50%;
	background: #ffffff;
	border-radius: 30px 30px 0 0;
	box-shadow:0px 8px 10px 10px rgb(0 0 0 / 8%);
	z-index: 999;
	overflow:hidden;
	overflow-y:auto;
	transform:translateX(-50%);
	padding-bottom: 50px;
	padding-top:30px;
}

.datails-page-Active .item-1-option .option-select-box .option_close{
    position: absolute;
    right: 15px;
    top: 15px;
}

.datails-page-Active .item-1-option .option-select-box .option-popover__content {
	padding: 16px 0;
	width: 92%;
	margin:0 auto;
	font-size: 14px;
	font-weight: 500;
	color: #343a40;
	border-bottom: 1px solid #eee;
	overflow: hidden;
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .content--wrapper {
	width: 65%;
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
	word-break: break-all;
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .content--wrapper .s1{
	font-family: 'SpoqaHanSansNeo-Medium';
	font-size: 18px;
	color: #323232;
	margin-top: 4px;
	display:block;
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .content--wrapper .s2{
	font-family: 'SpoqaHanSansNeo';
	font-size: 14px;
	color: #9f9f9f;
	margin-top: 4px;
	display:block;
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .option--wrapper {
	width: 100px;
	display: inline-block;
	vertical-align: middle;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: center;
	float: right;
	cursor: pointer;
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .option--wrapper .check-price {
	background:rgb(37, 107, 232);
	border-radius:4px;
	padding:10px 40px;
	color:#fff;
	font-size:16px;
	font-family: 'SpoqaHanSansNeo-Medium';
	margin-right:10px;

}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .option--wrapper .box-plus {
	display: inline-block;
	width: 32px;
	height: 32px;
	background: #fff;
	border:1px solid #eee;
	background-image:url(../../images/temp04/minus_black_24dp.svg);
	background-size: 22px;
	background-repeat: no-repeat;
	background-position:50%;
	border-radius:50px;
	line-height:32px;
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .option--wrapper .box-minus {

	display: inline-block;
	width: 32px;
	height: 32px;
	background: #fff;
	border:1px solid #eee;
	background-image:url(../../images/temp04/plus_black_24dp.svg);
	background-size: 22px;
	background-repeat: no-repeat;
	background-position:50%;
	border-radius:50px;
	line-height:32px;
	cursor:pointer;
	
}
.datails-page-Active .item-1-option .option-select-box .option-popover__content .option--wrapper .box-number {
	vertical-align: middle;
	display: inline-block;
	font-family: 'SpoqaHanSansNeo';
	font-size: 16px;
	font-weight: 500;
	color: #222;
	margin: 0 6px;
	width: 24px;
	height: 20px;
	border:0px;
	text-align: center;
}

.datails-page-Active .option-details-box {overflow:hidden;}
.datails-page-Active .option-details-box .price-total-result {
	border-radius: 2px;
	background-color: #f8f9fa;
	padding: 16px;
	margin: 16px 0;
	overflow: hidden;
}
.datails-page-Active .option-details-box .price-total-result .option-list{
	overflow:hidden;
	height:35px;
	line-height:35px;
	border-bottom:1px #e4e4e4 solid;
}
.datails-page-Active .option-details-box .price-total-result .option-list .p1 {
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	color: #666d75;
	display: inline-block;
	max-width: 400px;
	word-break: break-all;
	float: left;
}
.datails-page-Active .option-details-box .price-total-result .option-list .price-item {
	float:right;
}
.datails-page-Active .option-details-box .price-total-result .option-list .p2 {
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	color: #666d75;
	display: inline-block;
	max-width: 400px;
	word-break: break-all;
	line-height: 1;
	margin-right:30px;
}
.datails-page-Active .option-details-box .price-total-result .option-list .p3 {
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	color: #666d75;
	display: inline-block;
	max-width: 400px;
	word-break: break-all;
}
.datails-page-Active .option-details-box .price-total-result .option-price {
	float: right;
	overflow: hidden;
	margin-top: 20px;
}
.datails-page-Active .option-details-box .price-total-result .option-price .txt{
	text-align: right;
	font-size: 14px;
	font-weight: 700;
	color: #343a40;
}
.datails-page-Active .option-details-box .price-total-result .option-price .txt .price01{
	color: #6c7aae;
	display: inline-block;
	font-size: 20px;
	margin-left: 16px;
}
.datails-page-Active .option-details-box .purchase_bt {
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	background: #475eb3;
	width: 193px;
	height: 45px;
	line-height: 45px;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
	float: right;
	width: 130px;
}

.details-more {overflow:hidden;}
.details-more .more-btn {
	height: 48px;
	font-size: 16px;
	background-color: #fff;
	color: #484848;
	margin: 20px auto 0px;
	width: 200px;
	border-radius: 5px;
	line-height: 48px;
	text-align: center;
	font-weight: 400;
	cursor: pointer;
	border: 1px #e4e4e4 solid;
}
.details-more .more-box {
	overflow:hidden;
	margin-top:20px;
}
.details-more .more-box img{
	max-width:100%;
}


/* hotel */
#search_tbg_hotel { background:#4287d2;}
.search_hotel { padding: 5% 0 30%; width: 90%; margin:0 auto;}
.search_hotel div { margin-bottom: 20px;}
.search_hotel div .ti { color:#323232; font-family: 'SpoqaHanSansNeo-Bold'; display: inline-block; margin-bottom: 6px;}
.search_hotel div label { width:20%;}
.search_hotel div input { width: 79%;}
.w60 { width: 60%; display: block; margin: 0 auto;}


.result { padding: 20px 30px;}
.result::after{display: block; content: ""; clear: both;}
.result div { float: left; width:23%;}
.result button { float: right; margin-top:12px;}
.result p { line-height: 16px; color: #fff;font-family: 'SpoqaHanSansNeo'; font-size: 13px;}
.result .search_input { width:100%;  cursor: pointer;}
.result .country { font-size: 15px; font-family: 'SpoqaHanSansNeo-Bold'; margin-bottom: 6px;  cursor: pointer;}
#search-list { width: 100%; margin: 0 auto; padding: 20px 0 60px; position: relative;}
.filter { width: 100%; position: absolute;  bottom: 5%; left:0;  z-index: 3;}
.filterbox { width: 20%; padding: 12px 0;   border-radius: 30px; background: #02b2be; box-shadow: 0 4px 8px 0 rgb(0 0 0 / 12%); margin: 0 auto;}
.filterbox::after { display: block; content: ""; clear: both;}
.filterbox button { width: 50%; display: inline; float: left; text-align: center; color:#fff; background: transparent;}
.filterbox button:first-child { border-right:1px solid rgba(255, 255, 255, .6);}
.filterbox button span {color:#fff; }
.cell_hotel { margin-bottom: 40px;  cursor: pointer;}
.cell_hotel::after { display: block; content: ""; clear: both;}
.cell_hotel div:last-child div {float: left; position: initial;}
.cell_hotel div:last-child div:last-child { float: right;}
.h_thumbox { height: 170px;  overflow: hidden; position: relative; border-radius: 4px; margin-bottom: 10px;}
.h_thumb { top: 50%; left: 50%; position: absolute; min-width: 100%; transform:  translate(-50%, -50%); min-height: 100%; object-fit: cover;}
.h_name {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 18px; line-height: 22px; color: #323232; letter-spacing: -0.04em; margin-bottom: 4%;}
.h_tt {margin-bottom: 3px;}
.h_tt span { font-family: 'SpoqaHanSansNeo'; font-size: 12px; color: #444;letter-spacing: -0.04em;}
.h_address { font-family: 'SpoqaHanSansNeo'; font-size: 12px; color:#a2a2a2; letter-spacing: -0.01em; line-height: 16px;}
.h_price {font-size: 18px; color: #019597; font-weight: 700; letter-spacing: -0.01em; margin-top: 24px;}
.h_price span {display: block; line-height: 26px; float:right; font-size: 13px; color:#c2c2c2; font-family: 'SpoqaHanSansNeo'; font-weight: normal;}

/* 호텔 상세 */
.detail_hti {width:100%; font-family: 'SpoqaHanSansNeo-Medium'; font-size: 26px; color: #323232; letter-spacing: -0.04em; line-height: 32px; padding: 0;margin: 0;}
.detail_hsti {font-family: 'SpoqaHanSansNeo'; font-size: 16px; color: #9f9f9f; letter-spacing: -0.04em; line-height: 34px; padding-bottom: 26px;}
.detail_price {font-size: 24px;color: #000;font-weight: 700;letter-spacing: -0.01em;}
.tab_hotel { margin-bottom: 30px;}
.tab_hotel::after {display:block; content: ""; clear: both;}
.tab_hotel div { width: 50%; float: left; text-align: center; }
.tab_hotel div::after { display:block; content: ""; clear: both;}
.tab_hotel div a { width: 100%; border-bottom:2px solid #96a09b; display: inline-block; font-size: 16px; color:#979696; text-align: center; padding: 10px 0;}
.tab_hotel div a.nav_on {border-bottom:2px solid #0d0f0e; color:#323232; font-family: 'SpoqaHanSansNeo-bold';}
.roominfo { border: 1px solid rgba(0, 0, 0, .1); border-radius: 4px; padding: 14px 20px; margin-bottom: 20px;}
.roominfo p {color:#7d7d7d; font-size: 14px;}
.roominfo p:first-child {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 18px; line-height: 22px; color: #323232; letter-spacing: -0.04em; margin-bottom: 10px; }
.roominfo p:first-child span { border-radius: 20px; background:#3b7aec; padding: 2px 10px; color: #fff; margin-right: 4px; font-size:14px;}
.roominfo ul {margin-top: 12px; padding-top: 6px; border-top: 1px solid rgba(0, 0, 0, .1);}
.roominfo ul::after { display: block; content: ""; clear: both;}
.roominfo ul li { float: left; width: 50%;}
.roominfo ul li:first-child { font-size: 12px; font-family: 'SpoqaHanSansNeo'; letter-spacing: normal; color:#9f9f9f;}
.roominfo ul li:last-child {font-size: 18px; color: #0abbbf; font-weight: 700; letter-spacing: -0.01em; text-align: right;}
.roominfo button { width: 100%; background:#0abbbf; border-radius: 4px; color:#fff;font-family: 'SpoqaHanSansNeo-Medium'; padding: 10px 20px; margin-top: 16px;}
.roominfo button:hover {background:#07a2a5;}
.stat ul li { margin-bottom: 20px;}
.stat ul li h4 { color:#323232;font-family: 'SpoqaHanSansNeo-Medium';}
.stat ul li p { color:#7d7d7d; font-size:14px;}

/* 골프 */
/* tag */ 
.golf-tag-area {width: 100%; margin: 100px auto 0; padding:0;}
.golf-tag-area::after { display: block; content: ""; clear: both;}
.golf-tag-area .tag {margin-bottom: 16px;}
.golf-tag-area .tag .on { background: #021717; color: #fff }
.golf-tag-area .tag span {font-size: 15px; letter-spacing: -0.04em; padding: 4px 10px; display: inline-block; margin-bottom: 8px; border-radius: 5px; background: #f5f5f5; margin-right: 6px; color:#7d7d7d;}


/*해외골프*/
#product-Area-form {
	overflow: hidden;
	margin-top: 20px;
}
#product-Area-form .ttit {
	display: block;
	margin-right: 8px;
	font-weight: bold;
	color: black;
	font-size: inherit;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom: 20px;
}
#product-Area-form .product-form01 {
	width: 100%;
	border-top: 1px solid #eee;
	padding: 20px 0;
}
#product-Area-form .product-form01:first-child {
	border-top:0;
}
#product-Area-form .product-form01 .form-in {
	overflow: hidden;
	cursor: pointer;
}
#product-Area-form .product-form01 .form-in .img-box {
	height: 150px;
	width: 225px;
	float: left;
	background-size: cover;
	background-position: 50%;
	border:1px solid red;
}

#product-Area-form .product-form01 .form-in .img-box img {
	height: 100%;
	width: 100%;
	border-radius:14px;
}

#product-Area-form .product-form01 .form-in .text-box {
	width: calc(100% - 260px);
	float: right;
	position: relative;
}

#product-Area-form .product-form01 .form-in .text-box .ttit01 {
	font-family: 'SpoqaHanSansNeo-Medium'; 
	font-size: 18px; 
	line-height: 36px; 
	color: #323232; 
	letter-spacing: -0.04em;
}
#product-Area-form .product-form01 .form-in .text-box .ttit01 .stit{
	font-size:14px;
	color: #7e8299;
	font-weight:500;
}
#product-Area-form .product-form01 .form-in .text-box .price {
	float: right;
	font-size: 18px;
	color:#000;
	/*color: #6c7aae;*/
	/*font-weight: 700;*/
	margin-top: 10px;
	letter-spacing: -0.01em; 
    font-family: 'SpoqaHanSansNeo-Medium';
}
#product-Area-form .product-form01 .form-in .text-box .price .s1 {
	color: #1bc5bd;
	font-size: 16px;
	text-align: right;
	margin-top: 5px;
	display: block;
}
#product-Area-form .product-form01 .form-in .text-box .explanation {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-height: 20px;
	max-height: 54px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	width: 100%;
	font-family: 'SpoqaHanSansNeo'; 
	font-size: 14px; 
	line-height: 18px; 
	color: #9f9f9f; 
	padding-bottom: 22px; 
	letter-spacing: -0.04em; 
	text-align:left;
}

#product-Area-form .product-Area-form-inner {
	width:100%;
	margin:0 auto;
/*	padding-top: 20px; */
}
#product-Area-form .product-Area-form-inner:after {
	display:block;
	content: "";
	clear:both;
}
.freetitt {
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	}
#product-Area-form .product-form02 {
	width: calc(94% / 4);
	float:left;
	margin-right:2%;
	margin-bottom:30px;
	cursor:pointer;
}
#product-Area-form .product-form02:nth-child(4n-4) {margin-right:0px;}
#product-Area-form .product-form02 .form-in .img-box {
	border-radius: 10px;
	width: 100%;
	height: 100%;
	padding-top: 60%;
	background-repeat : no-repeat;
	background-size: cover;
	position: relative;
}
#product-Area-form .product-form02 .form-in .text-box {
	overflow:hidden;
}
#product-Area-form .product-form02 .form-in .text-box .s-tit{
	margin-top: 14px;
	color: #9f9f9f;
	font-size: 12px;
	font-family: 'SpoqaHanSansNeo';
	font-weight:normal;
	height: 14px;
	line-height: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	
}
#product-Area-form .product-form02 .form-in .text-box .p-tit{
	height: auto;
	height: 22px;
	line-height: 22px;
	font-size: 14px;
	font-family: 'SpoqaHanSansNeo-Medium';
	word-break: keep-all;
	overflow-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
/*	display: -webkit-box;*/
	-webkit-box-orient: vertical;
	display: revert;
	white-space: nowrap;
	-webkit-box-orient: vertical;
	margin-bottom:10px;
}
#product-Area-form .product-form02 .form-in .text-box .price-box {
	overflow: hidden;
	margin-top: 5px;
}
#product-Area-form .product-form02 .form-in .text-box .price-box .p1 {
/*	font-size: 16px;*/
	font-size: 15px;
	font-family: 'SpoqaHanSansNeo-Medium';
	color: #0abbbf;
}
#product-Area-form .product-form02 .form-in .text-box .price-box .p2 {
	margin-left: 4px;
	color: rgb(187, 187, 187);
	font-size: 12px;
	text-decoration: line-through;
}


#product-Area-form .golf-form {
	width:100%;
	float:none;
	margin-bottom:30px;
	padding:0;
	cursor:pointer;
}
#product-Area-form .golf-form:nth-child(2n-1) {
	margin-right:2%;
}
#product-Area-form .golf-form:nth-child(2n-2) {
	margin-right:0px;
	padding-right:0;
}
#product-Area-form .golf-form .form-in{
	position: relative;
}
#product-Area-form .golf-form .form-in .img-box {
	width: 100%;  
	overflow: hidden; 
	position: relative; 
	border-radius: 4px; 
	margin-bottom: 10px;
	height: 222px;
}
#product-Area-form .golf-form .form-in .img-box img{
	width: 100%;
	height: 100%;
	border-radius: 20px
}
#product-Area-form .golf-form .form-in .text-box {
	overflow:hidden;
}
#product-Area-form .golf-form .form-in .text-box .s-tit {
	font-family: 'SpoqaHanSansNeo'; 
	font-size: 14px; 
	line-height: 18px; 
	color: #9f9f9f; 
	margin-bottom:20px; 
	letter-spacing: -0.04em; 
	height: 38px;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
#product-Area-form .golf-form .form-in .text-box .p-tit {
	font-family: 'SpoqaHanSansNeo-Medium'; 
	font-size: 18px; 
	line-height: 23px; 
	color: #323232; 
	letter-spacing: -0.04em;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-bottom:5px;
}
#product-Area-form .golf-form .form-in .text-box .price-box {
	overflow: hidden;
	margin-top: 5px;
}
#product-Area-form .golf-form .form-in .text-box .price-box .p1 {
	font-size: 18px; 
	font-family:'SpoqaHanSansNeo', Malgun Gothic, sans-serif;
	color: #000; 
	font-weight: 700; 
	letter-spacing: -0.01em;
}
#product-Area-form .golf-form .form-in .text-box .price-box .p2 {
	margin-left: 4px;
	color: rgb(187, 187, 187);
	font-size: 15px;
	text-decoration: line-through;
}
.p-w-100 {width:100% !important;}



/* 탭버튼 */
.tab_golf {width:94%; margin:100px auto 0;/*position: absolute; top:232px;*/}
.tab_golf::after { display: block; content: ""; clear: both;}
.tab_golf ul li {float: left; width: 50%;}
.tab_golf ul li a {float: left; width: 100%; padding: 8px 0 8px; text-align: center; background-color:#e9e9e9; border-top:2px solid #e9e9e9; border-bottom:1px solid #256be8; color:#525252; font-size: 18px; line-height: 28px; border-radius: 20px 20px 0 0;}
.tab_golf ul li a.tab_on {background-color: #fff; border-left:1px solid #256be8; border-top:2px solid #256be8; border-bottom:1px solid #fff; border-right:1px solid #256be8; color:#323232; font-family: 'SpoqaHanSansNeo-Medium';}
#schedule_calendar { margin-top:20px; overflow:hidden;}
.tab_calendar { width: 100%; margin:0 auto 20px;}
.tab_calendar::after {display:block; content: ""; clear: both;}
.tab_calendar .swiper .swiper-wrapper div { width: 33.3%; float: left; text-align: center;}
.tab_calendar .swiper .swiper-wrapper div::after { display:block; content: ""; clear: both;}
.tab_calendar .swiper .swiper-wrapper div a { width: 100%; border-bottom:2px solid #96a09b; display: inline-block; font-size: 16px; color:#979696; text-align: center; padding: 10px 0;}
.tab_calendar .swiper .swiper-wrapper div a.nav_on {border-bottom:2px solid #0d0f0e; color:#323232; font-family: 'SpoqaHanSansNeo-bold';}
.tab_calendar_jeju { width: 92%; margin:0 auto 20px;border-bottom:2px solid #0d0f0e; color:#323232; font-family: 'SpoqaHanSansNeo-bold'; font-size: 16px;text-align: center; padding: 10px 0;}
.cal_wrap { width: 94%; margin: 0 auto 40px; display: flex;}
.cal_wrap::after { display:block; content: ""; clear: both;}
.cal_wrap .arrow_left { content: url(../../images/arrow_left.svg);  width: 30px; margin-top:50%;}
.cal_wrap .arrow_right { content: url(../../images/arrow_right.svg);   width: 30px; margin-top:50%; }
.cal_wrap .cal_date_box { width:89%; margin: 0 10px; overflow: auto; white-space: nowrap; -ms-overflow-style: none; scrollbar-width: none;}
.cal_wrap .cal_date_box .clickable {width:calc((100% - 50px) / 4); display: inline-block; text-align: center; cursor: pointer; font-size: 16px;}
.cal_wrap .cal_date_box .clickable span { display: block; line-height: 22px;  }
.cal_wrap .cal_date_box .clickable .days {color:#4c4c4c; font-size: 14px;  font-family: 'SpoqaHanSansNeo-bold'; margin-bottom: 4px;}
.cal_wrap .cal_date_box .clickable .date {color:#767676; font-size: 16px; font-family: 'SpoqaHanSansNeo';  margin-bottom: 10px;}
.cal_wrap .cal_date_box .clickable .leftover { background: rgba(0, 0, 0, .04); padding: 0 10px; border-radius: 3px; color: #222; font-size: 14px;}
.sunday { color:#ff0000;}
.sunday span { color:#ff0000;}
.cal_wrap .cal_date_box .date_box { border-radius: 4px; padding: 6px 0;}
.cal_wrap .cal_date_box .date_box:hover {background: #eaf8f8;}
.cal_wrap .cal_date_box .date_box.selected {border:2px solid #0abbbf;}
.cal_date_box::-webkit-scrollbar{display:none;}

.step { width: 100%; margin: 0 auto 40px; padding: 14px 10px 10px; border-radius: 0 0 10px 10px; background:#f7fafb;}
.step::after { display: block; content: ""; clear: both;}
.step p:first-child { font-size: 14px; color:#323232; padding-left: 10px; margin-bottom:12px;}
.step p:first-child  span {color:#16b5b9; font-family: 'SpoqaHanSansNeo-Medium';}
.step_wrap { width: 100%;}
.step_wrap div { float: left; width:calc(100%/4); text-align:center;}
.step_wrap div:first-child{ background: url(../../images/icon_step1.png) no-repeat top center; background-size: 26px 26px; }
.step_wrap div:nth-child(2){ background: url(../../images/icon_step2.png) no-repeat top center; background-size: 26px 26px; }
.step_wrap div:nth-child(3) { background: url(../../images/icon_step3.png) no-repeat top center; background-size: 26px 26px;}
.step_wrap div:last-child { background: url(../../images/icon_step4.png) no-repeat top center; background-size: 26px 26px;}
.step_wrap div span {color:#00a5a9;  width: 100%; font-size: 11px; margin-top: 30px; display: block; height:18px;}
.step_wrap div p { font-size: 13px; line-height: normal;}

#golf_filter_wrap { width: 100%; margin: 0 auto 14px; }
#golf_filter_wrap::after { display: block; content: ""; clear: both;}
#golf_filter_wrap div {width:100%;}
#golf_filter_wrap div span {  font-family: 'SpoqaHanSansNeo-Medium'; font-size: 14px;}
#golf_filter_wrap div:first-child {width:100%;}
#golf_filter_wrap div:first-child span { display: inline-block; padding: 3px 16px;}
#golf_filter_wrap div:last-child { width: 100%; padding: 6px 0; margin-top:10px; display:flex; align-items: center; justify-content:center; }
#golf_filter_wrap div:last-child span {text-align:center; padding:0 1.5%; border-right:1px solid #eee; height:16px; line-height:16px; display: inline-block;float: left;}
#golf_filter_wrap div:last-child span:last-child {border-right:0; padding-right: 0;}
#golf_filter_wrap div:last-child span.on {color:#0abbbf}

#golfReal_filter_wrap { width: 100%; margin: 0 auto 14px; }
#golfReal_filter_wrap::after { display: block; content: ""; clear: both;}
#golfReal_filter_wrap div { float: left; }
#golfReal_filter_wrap div span {  font-family: 'SpoqaHanSansNeo-Medium'; font-size: 14px;}
#golfReal_filter_wrap div:first-child span { display: inline-block; padding: 4px 10px;}
#golfReal_filter_wrap div:last-child { float: right; width: 20%; padding: 6px 0;}
#golfReal_filter_wrap div:last-child span { border-right:1px solid #eee; padding: 0 3%; display: inline; align-items: center; justify-content: space-between; float: left;}
#golfReal_filter_wrap div:last-child span:last-child {border-right:0; padding-right: 0;}
#golfReal_filter_wrap div:last-child span.on {color:#0abbbf}

.g_list { width: 100%; margin: 0 auto;}
.g_list ul {margin-bottom: 30px;}
.g_list ul:after {display: block; content: ""; clear: both;}
.g_list ul li {float: left;}
.cell_golf { margin-bottom: 40px;}
.cell_golf::after { display: block; content: ""; clear: both;}
.cell_golf .g_thumbox { height: 160px;  overflow: hidden; position: relative; border-radius: 10px; }
.cell_golf .g_thumbox img { height:100%; overflow: hidden;}
.cell_golf .g_thumb { top: 50%; left: 50%; position: absolute; min-width: 100%; min-height: 100%; transform:  translate(-50%, -62%); object-fit: cover;  border-radius: 10px; }
.cell_golf .golfInfo div {width:100%;}
.cell_golf .golfInfo div:first-child { width: 100%;}
.cell_golf .golfInfo div:last-child { width: 100%; text-align: right;}
.cell_golf .golfInfo div p { width: 100%; line-height: 20px;}
.cell_golf .g_real_info { margin-bottom:20px;}
.cell_golf .g_real_info div {float: none; width:100%;}
.cell_golf .g_real_info::after { display: block; content: ""; clear: both;}
.cell_golf .g_real_info div:first-child { width: 100%; margin-bottom: 10px;}
.cell_golf .g_real_info div:last-child { width: 100%; text-align: right;}
.cell_golf .g_real_info div p { width: 100%; line-height: 20px;}
.cell_golf .g_real_info .g_price {margin-top: 0;}
.cell_golf .time-form .golf_option_card { float:left; margin-right: 10px; margin-bottom: 10px; border-radius: 4px; background:rgba(234, 248, 248, .5); padding:10px 12px; cursor: pointer;}
.cell_golf .time-form .golf_option_card p { font-size: 14px; line-height: 20px;}
.cell_golf .time-form .golf_option_card p.ti { font-family: 'SpoqaHanSansNeo-Medium'; color:#222; padding-bottom: 4px; border-bottom: 1px solid rgba(0, 0, 0, .06)}
.cell_golf .time-form .golf_option_card p.p1 { font-family: 'SpoqaHanSansNeo'; color:#222; font-size: 13px; padding-top: 4px;}
.cell_golf .time-form .golf_option_card .anpo { font-family: 'SpoqaHanSansNeo'; color:#de6154; font-size: 13px;}
.g_add { margin-bottom:6px;}
.g_add span { font-family: 'SpoqaHanSansNeo'; font-size: 12px; letter-spacing: -0.01em; line-height: 16px; color:#222; }
.g_add span:first-child {color: #444;}
.g_add span:nth-child(2) {color:rgb(255, 255, 255); border-radius: 10px; background: #fb843d; padding: 1px 6px; margin-left: 6px;}
.g_add span:last-child {border-radius: 10px; background: rgba(0, 0, 0, .09); padding: 1px 6px; margin-left: 4px;}
.g_name {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 16px; line-height: 22px; color: #323232; letter-spacing: -0.04em; margin-bottom: 6px; }
.g_tt { font-family: 'SpoqaHanSansNeo'; font-size: 14px; color:#7d7d7d; letter-spacing: -0.01em; line-height: 16px;}
.g_tt span { color:#5e5e5e;}
.g_price {font-size: 16px; color: #000; font-weight: 700; letter-spacing: -0.01em; margin-top: 14px; margin-bottom: 10px; }

/*제주*/
#product_list {display:flex; justify-content: flex-start; flex-wrap:wrap;}
#product_list .product_item {width:calc(100% / 1); overflow:hidden; border-radius:10px; box-shadow:0px 4px 8px rgb(0 0 0 / 10%);margin-bottom:15px; margin-right:2%; transition:all 0.2s ease-in-out; }
#product_list .product_item:nth-child(2n-2){ margin-right:0px;}
#product_list .product_item .thumbnail {width:100%; height:200px;object-fit:cover;overflow:hidden;  position: relative;}
#product_list .product_item .thumbnail img {width:100%; height:100%;}
#product_list .product_item .info {padding:30px 20px 10px;}
#product_list .product_item .product_title {font-size:18px; line-height:22px; margin-bottom:10px; font-family: 'SpoqaHanSansNeo-Medium'; color:#333;  white-space: normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
#product_list .product_item .product_t1 {height: 36px; line-height:20px; color:#767676; font-size:14px; white-space: normal; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
#product_list .product_item .product_price{ font-size: 20px; color: #0447be; font-weight: 700; margin-top:10px; margin-bottom:10px; color:#0447be;}
#product_list .product_item .product_date { font-size: 14px; color: #909090; font-weight: 500; line-height: 1; }
#product_list .product_item .cart_img { text-align:right; margin-bottom:10px; cursor:pointer;}

/*골프 상세*/
.view_thumbnail {margin-top:64px;}
.view_thumbnail img {width: 100%;}
.view_secition01 {
	box-shadow: 2px 4px 10px rgb(0 0 0 / 15%);
	width: 95%;
	margin: 10px auto 0;
	border-radius: 10px;
	}
.view_secition01 .list {
	overflow: hidden;
	margin-bottom: 20px;
}
.view_secition01 .list .product01 {
	width: 100%;
	background: #ffffff;
	border: 1px #d6d9da solid;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.view_secition01 .list .product01 .thumbnail {
	width: 100%;
	height: 240px;
	background: #ffffff;
	position: relative;
}
.view_secition01 .list .product01 .thumbnail .title {
	height: 55px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	background: rgba(0,0,0,0.2);
	color: #ffffff;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 0px;
	line-height: 55px;
	font-size: 20px;
	z-index: 999;
}
.view_secition01 .list .product01 .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.view_secition01 .list .product01 .product_form {
	width: 100%;
	position:relative;
}
.view_secition01 .list .product01 .product_form .info01 {
	padding-left: 10px;
	width: 100%;
	padding-right: 10px;
	overflow: hidden;
}
.view_secition01 .list .product01 .product_form .info01 .title {
	display: -webkit-box;
	margin: 15px 0 4px;
	line-height: 23px;
	font-size: 16px;
	color: #333333;
	font-weight: 700;
}
.view_secition01 .list .product01 .product_form .info01 .text-1 {
	overflow: hidden;
}
.view_secition01 .list .product01 .product_form .info01 .title img {
	float: left;
	margin-top: 4px;
	margin-right: 8px;
}
.view_secition01 .list .product01 .product_form .info01 .text_box {
	overflow: hidden;
}
.view_secition01 .list .product01 .product_form .info01 .text_box ul li {
	font-size: 15px;
	color: #333333;
	font-weight: 400;
	margin-bottom: 3px;
	background: url(../../images/temp04/bullet.png)no-repeat;
	background-size: 10px 10px;
	padding-left: 16px;
	background-position: 0px 6px;
	word-break: keep-all;
	font-family: 'SpoqaHanSansNeo';
}
.view_secition01 .list .product01 .product_form .info01 .text_box .open_tab {
	width: 100%;
	height: 40px;
	color: #ff9231;
	border: 1px #ff9231 solid;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	font-size: 12px;
}
.view_secition01 .list .product01 .product_form .info01 .text_box .open_tab .arrow2 {
	margin-left: 10px;
}
.view_secition01 .list .product01 .check_time {
	padding-top: 12px;
	padding-right: 10px;
	float: right;
}
.view_secition01 .list .product01 .check_time p {
	float: left;
	color: #f06c5e;
	font-size: 16px;
}
.view_secition01 .list .product01 .check_time p:nth-child(1) {
	margin-right: 20px;
}
.view_secition01 .list .product01 .total {
   overflow: hidden;
	width: 100%;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
}
.view_secition01 .list .product01 .total .sum {
	padding-right: 5px;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	color: #2b2b2b;
	margin-bottom: 10px;
	text-align: right;
}
.view_secition01 .list .product01 .total .sum span {
	font-size: 18px;
	color: #656565;
	font-weight: 300;
}
.view_secition01 .list .product01 .total .btn01 {
   width: 100%;
	height: 40px;
	background: #256be8;
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	border: none;
	color: #ffffff;
	cursor: pointer;
	margin-top: 5px;
	padding: 0px;
	border-radius:6px;
	box-sizing:border-box;
}
.view_secition01 .tab01 {
	width: 100%;
	background: #ffffff;
	border: 1px #d6d9da solid;
	overflow: hidden;
	border-top: none;
	padding-bottom: 50px;
}
.view_secition01 .tab01 .left {
	width: 100%;
}

.view_secition01 .tab01 .info01 {
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 20px;
	width: 100%;
	padding-right: 20px;
}
.view_secition01 .tab01 .info01 .title img {
	float: left;
	margin-top: 4px;
	margin-right: 8px;
}
.view_secition01 .tab01 .info01 .title {
	font-size: 16px;
	color: #333333;
	font-weight: 700;
	border-bottom: 1px dashed #cccccc;
	padding-bottom: 10px;
}
.view_secition01 .tab01 .right {
	width: 100%;
}
.view_secition01 .tab01 .info01 .text_box {
	overflow: hidden;
	padding-top: 20px;
}
.view_secition01 .tab01 .info01 .text_box ul li {
	font-size: 15px;
	color: #333333;
	font-weight: 400;
	margin-bottom: 3px;
	background: url(../../images/temp04/bullet.png)no-repeat;
	background-size: 10px 10px;
	padding-left: 16px;
	background-position: 0px 6px;
	word-break: keep-all;
	font-family: 'SpoqaHanSansNeo';
}
.view_secition01 .images_view_btn {
	width: 204px;
	height: 48px;
	background: #023167;
	text-align: center;
	line-height: 48px;
	color: #ffffff;
	font-size: 16px;
	margin-left: 30px;
	margin-top: 50px;
	border-radius: 5px;
	cursor: pointer;
}
.view_secition01 .images_view_btn img {
	margin-right: 10px;
}
.view_popup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #000000;
	z-index: 999999;
}
.view_popup .popup_close {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 30px;
	z-index: 99;
	cursor: pointer;
}
.view_popup .swiper-slide > img {
	max-width: 100% !important;
	height: auto !important;
	width: fit-content;
}
.rwh600 {
	color: #ffffff;
	font-size: 14px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.rwh601 {
	position:relative;
	margin: 0 auto 10px;
}
.rwh601 img{
	width: 100%;
}
.section02 {
	overflow: hidden;
	margin-bottom: 30px;
}
.section02 .div01 {
	width: 100%;
	height: auto;
	border: 8px #eeeeee solid;
	padding-top: 45px;
	margin: 0 auto;
}
.section02 .div01 .title01 {
	font-size: 20px;
	color: #333333;
	font-weight: 400;
	text-align: Center;
	line-height: 1;
}
.section02 .div01 .bar {
	margin:25px auto 25px;
	width:232px;
	height:6px;
	background:#023167;
}
.section02 .div01 .text01 {
	font-size: 13px;
	color: #333333;
	font-weight: 400;
	text-align: Center;
}

.section02 .div01 .text01 img {
	width: 324px;
	padding-bottom:10px;
}


/*일정*/
.itinerary-section{
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.itinerary-section .s_title{
	font-size: 16px;
	color: #454444;
	font-weight: 300;
	margin-bottom: 10px;
}
.itinerary-section-forwarg{
	padding-bottom: 100px;
	border-bottom: 1px dotted #ccc;
}

.itinerary-section .point{
	position: absolute;
	top: -16px;
	left: -20px;
}
.travel-plans{
	margin-top: 30px;
}

.travel-plans .travel-plans-box{
	width: 100%;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: start;
}
.day-mark{
		display: none;
		padding: 20px 20px 10px 20px;
		width: 113px;
		position: relative;
}

.day-mark p{
	padding: 17px 25px;
	border-radius: 100px;
	border: 1px solid #ff9231;
	color: #ff9231;
	font-size: 18px;
	text-transform: capitalize;
}
.day-travel{
		margin: 0 20px;
		width:calc(100% - 40px);
}

.day-travel .travelcourse-title{
	width: 100%;
	color: #044ed1;
	font-size: 14px;
	font-weight: 700;
	padding: 25px 0 10px 0;
}
.tour-designer-wrap .experience-box li{
		height: calc(34vw + 120px);
}
.travelcourse{
	width: 100%;
	border-top: 1px solid #ccc;
}
.travelcourse li{
	display: flex;
	justify-content: start;
	margin: 15px 0;
	color: #454444;
	position: relative;
}
.travelcourse li .course-point{
	width: 24px;
	margin-right: 10px;
	height: 24px;
}
.cuorse-dot{
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: #5a5a5a;
	margin: 8px;
	transform: translateX(28%);
}
.course-line{
	position: absolute;
	height: calc(100% + 16px);
	width: 1px;
	border-right: 1px solid #cccccc;
	top: 12px;
	left: 11px;
	transform: translateX(50%);
	z-index:0;
}
.travelcourse .course-name{
	font-size: 14px;
	transform: translateY(2px);
}
.travelcourse .clock{
	width: 60px;
	font-size: 12px;
	font-weight: bold;
	border:1px solid red;
}

.shopping-section{
	padding-top: 100px;
}


.course-point .course-line-last{
	border-right: none;
}

.checklist-wrap{
	width: 100%;
	color: #454444;
}

.checklist-wrap .checklist-left{
	width: 100%;
	font-weight: 600;
	padding: 25px 0 10px 0;
	font-size: 14px;
}

.checklist-wrap .checklist-right{
	width: 100%;
	font-size: 14px;
	line-height: 180%;
}

.plan_plus_check{
	margin-top: 15px;
	padding-bottom: 15px;
	padding-top: 15px;
	border-top: 1px dotted #ccc;
	font-size: 14px;
}

.hotel_name_plan{
	display: flex;
	justify-content: start;
	margin-bottom: 10px;
}

.meal_plan_p{
	display: flex;
	margin-right: 15px;
}

.hotel_icon_width{
	width: 20px;
	margin-right: 15px;
}

.plan_titie_text{
	margin-right: 10px;
}

.planninf_name{
	font-weight: bold;
	color:#2D3142;
}

.meal_plan_p img{
	margin-right: 5px;
}
/*
.meal_plan_none p{
	color: #adadad;
}*/

/*골프상세 견적문의 달력*/
#product_calendar {
	width: 100%;
	height: 100vh;
	position: fixed;
	background-color: rgba(0,0,0,0.3);
	top: 0px;
	right:0;
	z-index: 9999;
}
#product_calendar .calendar_box {
	width: 100%;
	height: 100%;
	background: #ffffff;
	position: fixed;
	top: 0px;
	padding-bottom: 50px;
}
#product_calendar .calendar_inner {
	position: relative;
}
#product_calendar .calendar_box .title {
	font-weight: 600;
	line-height: 1.5;
	color: #24334A;
	text-align: center;
	margin-top: 40px;
}
#product_calendar .calendar_box .s_title {
	font-weight: 600;
	line-height: 1.5;
	color: #333333;
	font-size: 20px;
	text-align: center;
	margin-top: 40px;
}
#product_calendar .calandar_close {
	font-weight: 600;
	line-height: 1.5;
	color: #333333;
	font-size: 20px;
	text-align: center;
	margin-top: 40px;
}
#product_calendar .left_btn {
	position: absolute;
	top: 62px;
	left: 20px;
	cursor: pointer;
	box-shadow: 0px 0px 5px #969696;
	border-radius: 50%;
}
#product_calendar .right_btn {
	position: absolute;
	top: 62px;
	right: 20px;
	cursor: pointer;
	box-shadow: 0px 0px 5px #969696;
	border-radius: 50%;
}
#product_calendar .calnder_table {
	width: 95%;
	border-collapse: collapse;
	margin: 0 auto;
}
#product_calendar .calnder_table tr th {
	font-size: 14px;
	color: #023167;
	height: 4.5em;
	width: 14%;
}
#product_calendar .calnder_table tr td {
	font-size: 14px;
	color: #333333;
	text-align: center;
	height: 4.5em;
	padding: .2em;
	cursor: pointer;
}

#product_calendar .calnder_table tr td span:hover {
	background: #256be8 !important;
	color: #ffffff !important;
}

#product_calendar .calnder_table .on {
	background: #256be8 !important;
	color: #ffffff !important;
}

#product_calendar .calnder_table .calCell {
	border: 1px solid #dcdcdc;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#reservation_form {
	border: 4px #eeeeee solid;
	padding: 10px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	width: 95vw;
	margin: 0 auto;
	}
#reservation_form .images_box {
	width: 100%;
	height: calc(800px / 4);
}
#reservation_form .images_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#reservation_form .title {
	margin-top: 10px;
	font-size: 15px;
	color: #333333;
	word-break: keep-all;
	font-weight: 700;
	padding-left: 10px;
	height: 100%;
}
#reservation_form .location {
	margin-top: 5px;
	font-size: 14px;
	color: #484848;
	word-break: keep-all;
	padding-left: 10px;
	background: url(../images/icon03.png)no-repeat;
	background-position: 10px 2px;
	padding-left: 40px;
	border-bottom: 1px #e4e4e4 solid;
	height: 50px;
}
#reservation_form  .date {
	font-size: 14px;
	color: #232323;
	word-break: keep-all;
	padding-left: 5px;
	background: url(../images/icon04.png)no-repeat;
	background-position: 5px 14px;
	padding-left: 32px;
	border-bottom: 1px #e4e4e4 solid;
	height: 45px;
	line-height: 45px;
	font-weight: 500;
	padding-right: 5px;
}
#reservation_form  .f_r {
	float:right;
}
#reservation_form .room_info {
	font-size: 14px;
	color: #232323;
	word-break: keep-all;
	padding-left: 10px;
	border-bottom: 1px #e4e4e4 solid;
/*	height: 58px;*/
	height: 100%;
	font-weight: 500;
	padding-right: 10px;
	position: relative;
}
#reservation_form .room_info .text01 {
	float: left;
	font-size: 14px;
	color: #232323;
	font-weight: 500;
}
#reservation_form .room_info .text02 {
	float: right;
	text-align: right;
	line-height: 1;
	margin-top: 9px;
}
#reservation_form .room_info .text02 .span01 {
	font-size: 16px;
	color: #333333;
	font-weight: 700;
}
#reservation_form .total_sum {
	color: #232323;
	word-break: keep-all;
	padding-left: 10px;
	height: 58px;
	line-height: 58px;
	font-weight: 500;
	padding-right: 10px;
	position: relative;
}
#reservation_form  .total_sum .text01 {
	float: left;
	font-size: 14px;
	color: #232323;
	font-weight: 500;
}
#reservation_form .total_sum .text02 {
	float: right;
	font-size: 16px;
	color: #333333;
	font-weight: 700;
}

#reservation_form .explanation {padding-left:10px;}
#reservation_form .explanation p{font-size:12px;}
#reservation_form .input_box {
	width: 100%;
	min-height: 40px;
	border: 2px #eeeeee solid;
	margin-bottom: 10px;
	overflow: hidden;
	padding-top:5px;
	padding-bottom:5px;
}
#reservation_form .input_box .t1 {
	padding-left: 10px;
	font-size: 14px;
	margin-right: 10px;
}
#reservation_form .input_box .t1:after {
	content: "";
	width: 1px;
	background: 20px;
	background: #d4d4d4;
	height: 30px;
	float: right;
	margin-top: 10px;
	margin-left: 30px;
}
#reservation_form .input_box .select01 {
	width: 95%;
	height: 40px;
	border: none;
	padding-left: 20px;
	font-size: 16px;
	outline: none;
	background: -webkit-linear-gradient(transparent, transparent);
	-webkit-appearance: none;
	background: url(../images/arrow4.png)no-repeat;
	background-position: 95% 50%;
	background-size: 12px 7px;
	font-family: 'Noto Sans KR', sans-serif !important;
	border: 1px #e4e4e4 solid;
	margin-left: 2.5%;
	background-color: #f6f6f6;
	border-radius: 5px;
}
#reservation_form .input_box .input01 {
	float: left;
	width: 95%;
	height: 40px;
	border: none;
	background: #f6f6f6;
	margin-top: 5px;
	padding-left: 20px;
	margin-left: 2.5%;
	border: 1px #e4e4e4 solid;
	border-radius: 5px;
}
#reservation_form .input_box .span01 {
	font-size: 13px;
	line-height: 1px;
	color: #ff0000;
	margin-left: 7px;
}
.box800 {
	margin-bottom: 20px;
	padding-bottom: 20px;
	width: 95vw;
	margin: 0 auto;
	}
#reservation_terms .terms {
	width: 100%;
	overflow: hidden;
	margin-top: 15px;
	padding-left:15px;
	font-size:13px;
}
#reservation_terms .terms .terms_check{
   appearance: auto !important;
   margin-right: 3px;
   margin-bottom:15px;
}
.mt10 {
	margin-top: 10px !important;
}

.reservation_btn {
	width: 95vw;
	margin: 0 auto 20px;
	overflow: hidden;
}
.reservation_btn .btn01{
	width: 100%;
	height: 50px;
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	line-height: 50px;
	font-weight: 500;
	float: left;
	border: none;
	cursor: pointer;
	background: #ff9231;
	}
.reservation_btn .btn50{
	width: 49% !important;
	}

.s_page {width:95vw;margin: 0 auto;padding-top:15px;}
.s_page .s_page_t1{
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	}
.s_page01 .content01 .text01 {
	font-size: 18px;
	font-weight: 600;
}
.s_page01 .content01 .text02 {
	font-size: 14px;
	font-weight: 400;
}
.s_page01 .content02 {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 10px;
}
.s_page01 .content02 input{
	width:calc(100%/3);
	font-size:14px;
}
.s_page01 .content02 .button {
	height: 33px;
	width:calc(100%/3);
	border-radius: 5px 5px 5px 5px;
	background-color: #ff9231;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mr10 {margin-right:10px;}

.s_page01 .content_item {
	width: 100%;
	margin-bottom: 30px;
	overflow: hidden;
}
.s_page01 .content_item .item_top {
	height: 50px;
	width: 100%;
	border-top: 2px solid #696969;
	border-bottom: 1px solid #696969;
	line-height: 50px;
	font-size: 16px;
}
.s_page01 .content_item .item_top p {
	float: left;
	text-align: center;
	font-weight: 600;
	line-height:50px;
}
.s_page01 .content_item .item_top p:nth-child(1) {
	width: 50%;
}
.s_page01 .content_item .item_top p:nth-child(2) {
	width: 20%;
}
.s_page01 .content_item .item_top p:nth-child(3) {
	width: 30%;
}
.content_item .scroll {
	width: 100%;
	overflow: hidden;
}
.s_page01 .content_item > div {
	float: left;
}
.s_page01 .content_item .item_left {
	width: 50%;
	height: 178px;
	padding: 10px 10px;
	overflow: hidden;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}
.s_page01 .content_item .item_left img {
	display: block;
	float: left;
	width: 236px;
	height: 100%;
}
.s_page01 .content_item .item_left img {
	display: none;
}
.s_page01 .content_item .item_left .text_box {
	float: left;
}
.s_page01 .content_item .item_left .text_box p{
	font-size:13px;
	}
.s_page01 .content_item .item_center {
	width: 20%;
	height: 178px;
	float: left;
	text-align: center;
	font-weight: 600;
	color: #696969;
	display: flex;
	align-items: center;
	justify-content: center;
}
.s_page01 .content_item .item_center p{
	font-size: 12px;
}
.s_page01 .content_item .item_right {
	width: 30%;
	height: 178px;
	float: right;
	display: flex;
	align-items: center;
	justify-content: center;
}
.s_page01 .content_item .item_right .button {
	font-size: 12px;
	text-align: center;
	color: #ffffff;
	line-height: 30px;
	width: 80px;
	height: 30px;
	margin: 0 auto;
	border-radius: 5px 5px 5px 5px;
	margin-bottom: 10px;
	cursor: pointer;
	font-weight:400;
}
.s_page01 .content_item .item_right .button p {line-height:30px;font-size:12px;}

.s_page01 .content_item .item_bottom {
	width: 100%;
	border-top: 1px solid #696969;
	border-bottom: 1px solid #696969;
	height: 50px;
	line-height: 50px;
	padding: 0px 20px 0px 20px;
	overflow: hidden;
}
.s_page01 .content_item .item_bottom .text01 {
	float: left;
	font-size: 14px;
	line-height: 50px;
}
.s_page01 .content_item .item_bottom .text01 span {
	color: #e14530;
}
.s_page01 .content_item .item_bottom .text02 {
	float: right;
	font-size: 14px;
	line-height: 50px;
}
.s_page01 .content_item .item_bottom .text02 span {
	color: #ff9231;
	font-size: 16px;
}


/* 국내골프 예약하기 */
.golfName{font-family:'SpoqaHanSansNeo-Medium'; font-size:18px; color:#323232; letter-spacing:-0.04em;}
.golf-icon {background:url(../../images/golf_course_black_24dp.svg)no-repeat; background-position: 0 1px; padding-left:32px;}
.product-detail .sti {font-family:'SpoqaHanSansNeo-Medium'; font-size:15px; line-height:30px; color:#323232; letter-spacing:-0.04em; margin-right:6px;}
.product-detail .date {background:url(../../images/calendar_month_black_24dp.svg)no-repeat; background-position: 0 -1px; padding-left:32px; background-size:22px;}
.room_info {padding:10px 0; border-top:1px dashed rgba(0, 0, 0, .3); margin-top:16px;}
.price-area {text-align:right; font-size:18px; margin-bottom:10px; border-top:1px dashed rgba(0, 0, 0, .3); padding-top:20px;}
.price-area .t01 {font-size:18px;}
.price-area .t02 {font-size:18px;}
.explanation {color:#7c9595; font-size:14px; text-align:right;}
.notice-area {padding-top:20px; margin-bottom:0;}
.notice-area .ti { font-size:16px font-family:'SpoqaHanSansNeo-Medium'; margin-bottom:10px;} 
.notice-box { height:140px; overflow-y:scroll; border:1px solid #dadada; border-radius:4px; margin-top:10px; padding:10px; font-family:'SpoqaHanSansNeo'; font-size:13px;word-break:keep-all;line-height:18px; color:#7c7c7c;}
.reservation_form { padding:0; width:100%; border:0;}
.reservation_form .input_box { width:100%; margin-bottom:10px; overflow:hidden; border:0; display:flex;}
.reservation_form .input_box .ti {width:24%; float:left; line-height:42px; font-size:16px; margin-right:20px; font-family:'SpoqaHanSansNeo'; color:#323232; border-right:0; padding-left:0; }
.reservation_form .input_box .input {width:76%; float:left; font-family:'SpoqaHanSansNeo'; font-size:16px; color:#323232; padding:8px 20px;box-sizing:border-box; border:1px solid #ddd; border-radius:4px;}
.reservation_form .input_box .input:focus {background: #fff; border: 1px solid #5189ed;}
.reservation_form .input_box .span01 {font-size:16px; line-height:36px; color:#ff0000;}
.btn-reservation {background:#0abbbf; text-align:center; cursor:pointer; height:50px; line-height:50px; color:#fff; border-radius:4px; font-size:16px; font-family:'SpoqaHanSansNeo-Bold'; width:100%; margin:0 auto 60px;}
.terms-area .terms {border:1px solid #dadada; border-radius:4px; margin-top:4px; margin-bottom:0; padding:10px; font-family:'SpoqaHanSansNeo'; font-size:12px;}
.terms-area .terms div { height:20px; line-height:20px;}
.check-txt input.ruleCheck {margin-top:0; margin-right:6px; margin-bottom:3px}
.allCheck { margin-bottom:30px; padding-left:12px; margin-top:0;}
.allCheck input.ruleCheck {margin-top:0; margin-right:6px; margin-bottom:3px}
.rule-txt {font-size:14px; cursor:pointer;}


/* company */
.company_wrap {width:94%; margin:20px auto;}
.company_category{width:100%; margin: 30px auto;}
.company_category::after { display: block; content: ''; clear: both;}
.company_category div { width: calc(100% / 3 - 4px); margin-right:4px; float: left;}
.company_category div:last-child {margin-right:0;}
.company_category div a { width: 100%; display: inline-block; font-size: 16px; color:#979696; border-bottom:2px solid #979696;  text-align: center;  padding: 10px 0 ;}
.company_category div a.on { color:#323232; font-family: 'SpoqaHanSansNeo-bold'; border-bottom:2px solid #0d0f0e;   padding: 10px 0 ;}
.company_ti {font-family: 'SpoqaHanSansNeo-Bold'; color:#323232; font-size: 22px; letter-spacing: -0.04em; margin-bottom: 20px;}
.agree {color:#7d7d7d;  width: 100%; max-width: 100%; margin: 0 auto 50px;}
.agree dl {padding: 0 0 20px 0;}
.agree dt {font-family: 'SpoqaHanSansNeo'; font-size:14px; color:#555; padding-bottom:6px;}
.agree dd {font-family: 'SpoqaHanSansNeo'; font-size:13px; line-height:20px}
.agree li {font-family: 'SpoqaHanSansNeo'; padding: 0 0 0 6px;}
.agree .law dt {font-size:12px;font-family: 'SpoqaHanSansNeo'; padding:0;}
.agree p { font-size: 14px; line-height: 22px; }
.agree p.end { margin-bottom: 30px;}
.agree ul li dl { padding-bottom: 0;}
.person_list { background: rgba(0, 0, 0, .04); border-radius: 5px; padding: 14px; margin: 30px 0;}
.person_list .person_title {color:#000; padding: 4px 0 0 4px; margin-bottom: 10px;}
.person_list ul::after { display: block; content: ''; clear: both;}
.person_list ul li { font-size: 13px; line-height: 24px; float: left; width: 49%;}
.person_list ul li span { color:#222; padding-right: 4px;}
.company_txt { font-family: 'SpoqaHanSansNeo'; margin-bottom:20px;}
.input_box label {font-family: 'SpoqaHanSansNeo'; color:#323232; font-size:16px; margin-bottom:6px; display:inline-block;}
.input_box .input01 {width: 100%; font-family: 'SpoqaHanSansNeo'; font-size: 16px; color:#7d7d7d; padding: 10px 20px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 6px; -webkit-transition: 0.3s; transition: 0.3s; outline: none; margin-bottom:20px;}
.input_box .input01:focus {background: #fff; border: 1px solid #5189ed;}
.input_box .textarea_box {overflow:auto; outline-style:none;  width:100%; height:140px; font-family: 'SpoqaHanSansNeo'; font-size: 16px; color:#7d7d7d; padding: 10px 20px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 6px; -webkit-transition: 0.3s; transition: 0.3s; outline: none; margin-bottom:20px;}
.total .btn_blue { padding:10px 50px; border-radius:4px; font-family: 'SpoqaHanSansNeo-Bold'; font-size:16px;}

/* 결제하기 */
.form-left-new { width:100%;}
.form-right-new { width:100%;}
.section-title { font-size: 18px; font-family: 'SpoqaHanSansNeo-Medium'; padding: 20px 0 10px 0; border-bottom: 1px solid #e7e7e7; margin-bottom: 17px;}
.section-title .small { font-size: 13px; font-weight: normal;}
.pay-s01-new { width:100%;  background:#edf4fb; padding:24px; margin-bottom:30px; border-radius:20px;}
.pay-s01-new .product-info-new { margin-bottom:10px;}
.pay-s01-new .product-info-new:after { display:block; content:''; clear:both;}
.pay-s01-new .product-info-new .product-name-new { width:100%; margin-bottom:10px;}
.pay-s01-new .product-info-new .product-name-new p {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 18px; line-height:26px; color: #323232; letter-spacing: -0.04em;}
.pay-s01-new .product-info-new .product-name-new p .room-num { font-size:16px; line-height:24px;}
.pay-s01-new .product-info-new .product-img {width:24%; text-align:left; display:inline-block; border-radius:10px; background-size: cover; background-position:center center;}
.pay-s01-new .product-info-new .product-img img { border-radius:10px; width:100%;}
.pay-s01-new .product-detail .st01 {font-family: 'SpoqaHanSansNeo-Medium'; font-size: 15px; line-height: 30px; color: #323232; letter-spacing: -0.04em; margin-right:6px;}
.pay-s01-new .product-detail .st02 {font-family: 'SpoqaHanSansNeo'; font-size: 15px; line-height: 30px; color: #7d7d7d; letter-spacing: -0.02em;}
.pay-s01-new .product-detail .totalprice{color:#de1414; font-family: 'SpoqaHanSansNeo-Medium';}
.price01 { text-align:right; font-size:18px; margin-bottom:2px; margin-top:20px; border-top:1px dashed rgba(0, 0, 0, .3); padding-top:20px;}
.price02 { text-align:right; font-size:14px; color:#8794a0;}
.pay-s03-new .section-title { padding:20px 0 10px; margin-bottom:17px; font-size:18px; font-family: 'SpoqaHanSansNeo'; font-weight:normal; border-bottom:1px solid #222;}
.pay-s03-new .section-title .addtxt {margin-left:10px; color:#164e98; font-size:14px;}
.pay-s03-new .form_wrap { width:100%; margin:0 auto 40px;}
.pay-s03-new .form_wrap .input-list { height:70px; line-height:36px; margin-bottom:20px;}
.pay-s03-new .form_wrap .input-list .input-title {width:100%; float:none; display:inline-block; margin:0;}
.pay-s03-new .form_wrap .input-list .pay-input {width: 100%; font-family: 'SpoqaHanSansNeo'; font-size: 16px; color:#323232#; padding: 6px 14px; box-sizing: border-box; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: 0.3s; transition: 0.3s; outline: none;}
.pay-s03-new .form_wrap .input-list .pay-input:focus {background: #fff; border: 1px solid #5189ed;}
.pay-s03-new .form_wrap .phone-box { width:100%; float:none;}
.pay-s03-new .form_wrap .phone-box::after {display:block; content:''; clear:both;}
.pay-s03-new .form_wrap .phone-box .phone { width:36%; float:left; height:40px; border:1px solid #ddd; border-radius:4px; padding-left:5px;font-family:'SpoqaHanSansNeo'}
.pay-s03-new .form_wrap .phone-box .phone:focus {background: #fff; border: 1px solid #5189ed;}
.pay-s03-new .form_wrap .phone-box .phonenumber { width:62%;float:right; height:40px; padding: 6px 14px; border:1px solid #ddd; border-radius:4px; padding-left:5px; font-size:16px;font-family:'SpoqaHanSansNeo'}
.pay-s03-new .form_wrap .phone-box .phonenumber:focus {background: #fff; border: 1px solid #5189ed;}
.pay-s05-new { padding: 0 20px 20px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; background: #fbfbfb; width:100%;}
.pay-s05-new .method { padding:0;}
.pay-s05-new .method:after { display:block; content:''; clear:both;}
.pay-s05-new .method li { height: 30px; line-height: 30px; float:none; width:100%; }
.pay-s05-new .method li img { vertical-align: middle;}
.pay-s05-new .method .method-ck { margin-right: 7px; vertical-align: middle;}
.pay-s06-new .form_wrap  { width:100%; margin:0 auto 60px;}
.pay-s06-new .section-title { padding:0 0 10px; margin-bottom:17px; font-size:20px; font-family: 'SpoqaHanSansNeo'; font-weight:normal; border-bottom:1px solid #222;}
.terms-box-pc .terms { border:1px solid #ddd; border-radius:4px; margin:20px 0 10px;}
.terms-box-pc .terms-box { height:140px; overflow-y:scroll; border:1px solid #dadada; border-radius:4px; margin-top:10px; padding:10px;font-family: 'SpoqaHanSansNeo'; font-size:12px;}
.terms-box-pc .terms-box .ti {font-family: 'SpoqaHanSansNeo-Medium'; margin-bottom:6px; color:323232;}
.terms-box-pc .terms-box p {color:#7d7d7d; line-height:18px;}
.terms-box-pc .terms-box p.start {color:#323232;}
.terms-box-pc .terms-box p.end { margin-bottom:20px;}
.pay-btn {background:#256be8; text-align:center; cursor:pointer; height:50px; line-height:50px; color:#fff; border-radius:4px; font-size:16px; font-family:'SpoqaHanSansNeo-Bold'; width:100%; margin:0 auto 60px;}

/*약관-모바일*/
.terms-box-pc {display:none;}
.terms-box-mobile {display:contents;}

/*레이어팝업*/
.terms-mobile { width:94%; margin:0 auto; height:80%;  margin-top:10px; padding:10px;font-family: 'SpoqaHanSansNeo'; font-size:12px;}
.terms-mobile .ti {font-family: 'SpoqaHanSansNeo-Medium'; margin-bottom:6px; color:#323232;}
.terms-mobile p {color:#7d7d7d; line-height:18px; font-size:14px;}
.terms-mobile p.start {color:#323232;}
.terms-mobile p.end { margin-bottom:20px;}
.of-x	{ overflow-x:auto;}
.terms-mobile .personal-table { width:714px; padding:0; margin:0; text-align:center; margin:6px 0 20px; }
.terms-mobile .personal-table col { width:33.3%;}
.terms-mobile .personal-table thead tr th { background:#efefef; padding:10px; font-size:13px;vertical-align: middle; }
.terms-mobile .personal-table tbody tr td { border-bottom:1px solid #efefef; padding:10px; color:#7d7d7d; line-height:20px; vertical-align: middle; font-size:13px;}
.terms-mobile .personal-table2 { width:94%; padding:0; margin:6px 0 20px; border-top:1px solid #efefef; border-bottom:1px solid #efefef; }
.terms-mobile .personal-table2 col { width:50%;}
.terms-mobile .personal-table2 tbody tr th {background:#efefef; text-align:left; padding:10px; border-bottom:1px solid #fff;vertical-align: middle; }
.terms-mobile .personal-table2 tbody tr th:last-child { border-bottom:none; font-size:13px;}
.terms-mobile .personal-table2 tbody tr td { border-bottom:1px solid #efefef; text-align:left; padding:10px; color:#7d7d7d; line-height:20px; font-size:13px; vertical-align: middle; }
.terms-mobile .personal-table3 { width:714px; padding:0; text-align:center; margin:6px 0 20px; font-size:13px;}
.terms-mobile .personal-table3 thead tr th { background:#efefef; padding:10px; font-size:13px;vertical-align: middle; }
.terms-mobile .personal-table3 tbody tr td { border-bottom:1px solid #efefef; padding:10px; color:#7d7d7d; line-height:20px;vertical-align: middle; font-size:13px;}
.terms-mobile .check-txt label {padding-left:6px; font-size:14px;}
.terms-mobile .check-all-txt { font-size:15px;}
/*------------------*/

.terms-box-mobile .terms { border: 1px solid #ddd; border-radius: 10px; background: #ffffff; margin-bottom: 10px;}
.terms-box-mobile .terms-list { border-bottom: 1px solid #ddd; padding: 12px 10px; cursor: pointer; font-size: 13px;}
.terms-box-mobile .terms-list:last-child {border-bottom: 0;}
.terms-box-mobile .terms-list input { vertical-align: middle; margin-right: 5px;}
.terms-box-mobile .terms-list img { float: right; vertical-align: middle; margin-right: 10px; margin-top:7px;}
.personal-table { width:100%; padding:0; margin:0; text-align:center; margin:6px 0 20px; }
.personal-table col { width:33.3%;}
.personal-table thead tr th { background:#efefef; padding:10px;}
.personal-table tbody tr td { border-bottom:1px solid #efefef; padding:10px; color:#7d7d7d; line-height:20px;vertical-align: middle;}
.personal-table2 { width:100%; padding:0; margin:0; margin:6px 0 20px;  border-top:1px solid #efefef; border-bottom:1px solid #efefef; }
.personal-table2 col { width:50%;}
.personal-table2 tbody tr th {background:#efefef; text-align:left; padding:10px; border-bottom:1px solid #fff;}
.personal-table2 tbody tr th:last-child { border-bottom:none;}
.personal-table2 tbody tr td { border-bottom:1px solid #efefef; text-align:left; padding:10px; color:#7d7d7d; line-height:20px;}
.personal-table3 { width:100%; padding:0; margin:0; text-align:center; margin:6px 0 20px; }
.personal-table3 thead tr th { background:#efefef; padding:10px;}
.personal-table3 tbody tr td { border-bottom:1px solid #efefef; padding:10px; color:#7d7d7d; line-height:20px;vertical-align: middle;}
.check-txt label {padding-left:6px; font-size:14px;}
.check-all { font-size:15px; padding-left:6px;}
.btn-area {display:block; width:100%; text-align:center; margin:30px 0 100px;}

/*할인쿠폰*/
.coupon_area { padding: 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; background: #fbfbfb; width: 100%;flex-direction: column;}
.coupon_area .title_area {display:flex; justify-content: space-between; margin-bottom: 17px;border-bottom: 1px solid #222; padding-bottom:10px;}
.coupon_area .title_area .tit {font-size: 20px; font-weight: normal;}
.coupon_area .title_area .t-ck {display:flex; align-items:center;}
.coupon_area .title_area .t-ck input {margin-right:6px}
.coupon_area .input-list {margin-bottom:16px; display: flex; flex-direction: column;}
.coupon_area .input-list div:last-child {width: 100%; display: flex; flex-direction: row;}
.coupon_area .input-list div:last-child .btn-receive {display: inline-block; width: 25%; margin-left: 6px; height: 40px; line-height: 40px; background-color: #222;  color: #ffffff; border-radius:5px;    text-align: center;    font-size: 12px;    vertical-align: middle;    cursor: pointer;}
.coupon_area .input-list div:last-child .couponselect { width: 74%; height: 40px; border: 1px solid #dddddd; border-radius: 4px; padding-left: 5px;}
.coupon_area .input-list .input-title {width:100%; display: inline-block; margin-bottom:10px;}
.coupon_area .input-list .couponcode { height: 40px; border-radius: 5px 0px 0px 5px;  border: 1px solid #dddddd; width: 75%; float: left; padding-left: 10px;}

.coupon_area .input-list .saleprice {width: 100%; text-align: right; color: #8e8e8e;}
.coupon_area .total-price {display:flex; justify-content: space-between; border-top: 1px solid #e7e7e7; line-height: 40px; padding-top:10px}
.coupon_area .total-price .txt { color: #222; font-weight:500; font-size: 16px;}
.coupon_area .total-price .price {font-size: 20px; color: #de1414; font-weight:600;}
/*결제하기 END*/


/* 비회원 예약조회 */
.noMb_content { width: 92%; margin:30% auto 10%; text-align:center;}
.noMb_content .ti {font-family:'SpoqaHanSansNeo-Bold'; color:#323232; font-size:22px; letter-spacing:-0.04em; margin-bottom:20px;}
.noMb_content .input-wrap { margin-top:10px;}
.noMb_content .input-phone_num { position: relative; }
.noMb_content .input-wrap .phone_num { border:1px solid #222; font-size:12px; background:#222; color:#fff; padding:5px 9px; border-radius:15px; position: absolute; right:2%; top:22%; z-index:3;}
.noMb_content .txt {width: 100%; padding: 10px; height: 50px; -webkit-appearance: none; -moz-appearance: none; appearance: none; box-shadow: none; border-radius: 4px; box-sizing: border-box; border: 1px solid #dadada; background: #fff; font-size: 16px; color: #555; vertical-align: middle; font-family: 'SpoqaHanSansNeo'; letter-spacing:normal;}
.noMb_content .txt:focus { background: #fff; border: 1px solid #5189ed;}
.noMb_content .btn_area { margin-top:20px; }
.noMb_content .noMb-btn_basic { width:100%; background:#256be8; height:50px; font-size:15px; color:#fff; font-family: 'SpoqaHanSansNeo-Medium'; border-radius:4px;}


/* 이벤트 */
.event-wrap {  width:100%; height: 1546px; /*position: relative;*/ background-color:#e0cab3;}
.event-wrap::after { display: block; content: ''; clear: both;}
.e-back { background: url(../images/event/event_hnmoon_back.png) no-repeat; background-size:100%; background-color:#ead7c3;}
.event-wrap .form-wrap  {width:100%; position: absolute; top: 706px; }
.event-wrap .form-wrap::after { display: block; content: ''; clear: both;}
.event-wrap .form-wrap .form-box { width:620px; background: #fff; border-radius: 30px; padding: 60px 80px; margin: 0 auto;}
.event-wrap .form-wrap .form-box .ti {font-size:20px; font-family: 'SpoqaHanSansNeo-Medium';}
.event-wrap .form-wrap .form-box .boxline-sec { height:50px; line-height:50px;}
.event-wrap .form-wrap .form-box .boxline-sec .ti {width:112px; display:inline-block;}
.event-wrap .form-wrap .form-box .boxline-sec .boxline { width:344px; border:0; border-radius:0; border-bottom:1px solid #0b0f0f; padding:0 10px 6px; font-size:20px; color:#222; font-family: 'SpoqaHanSansNeo-Medium';  position: relative;}
.event-wrap .form-wrap .form-box .boxline-sec .calendar { position: absolute; right:174px; width:28px; height:auto;}
.event-wrap .form-wrap .form-box .boxline-sec .calendar img {width:100%}
.event-wrap .form-wrap .form-box .place { padding:14px 0; }
.event-wrap .form-wrap .form-box .place-etc { padding-top:4px; }
.event-wrap .form-wrap .form-box .place-etc .boxline {width:377px; border:0; border-radius:0; border-bottom:1px solid #0b0f0f; padding:0 10px 6px; font-size:20px; color:#222; font-family: 'SpoqaHanSansNeo-Medium';}
.event-wrap .form-wrap .e-btn-area { width:100%; text-align:center; padding-bottom:27px;}
.event-wrap .form-wrap .e-btn-area .e-btn	{width:340px; height: 70px; margin: 30px auto 0; background:#463822; color:#fff; font-size:30px; font-family: 'SpoqaHanSansNeo-Medium'; border-radius: 50px;}
.event-wrap .e-step img { width:100%;}
.e-step { background:#e0cab3;}
/* 체크박스 스타일 */
.place-area {margin-bottom:20px;}
.place-check { position: relative; padding-left: 26px; cursor: pointer; font-family: 'SpoqaHanSansNeo'; font-size: 18px; color:#737373; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; display:inline-block; margin-right:20px;}
.place-check input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;}
.place-check .checkmark {position: absolute; top: 0; left: 0; height: 22px; width: 22px; background-color: #fff; border:2px solid #222; border-radius:25px;}
.place-check input:checked ~ .checkmark { background-color: #05bdc0; border:2px solid #05bdc0;}
.place-check .checkmark:after { content: ""; position: absolute; display: none;}
.place-check input:checked ~ .checkmark:after { display: block;}
.place-check .checkmark:after {left: 5px; top: 2px;width: 4px; height: 8px; border: solid white; border-width: 0 3px 3px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);}


.modal_box{display: none;width: 100vw; height: 100vh;position: fixed; top: 0;left: 0; background-color: rgba(118, 127, 159, 0.5); z-index: 3000000;}

/*항공 비주얼*/
.air_visual {width: 100% !important; height: 132px !important; position: relative; overflow:hidden; margin-top:64px;}
.air_visual>h3 { width:100%; margin-top: 10%; position: absolute; color: #fff; font-size: 17px; padding-left:30px; font-weight:normal; line-height:16px;}
.air_visual>h3 span {display: block; color:#fff;font-size: 14px; font-family: 'SpoqaHanSansNeo'; margin-bottom: 5px; font-weight:normal;}
.v03 {background: url(../../images/v03.jpg) no-repeat;  background-size:100%;}
.v04 {background: url(../../images/v04.jpg) no-repeat;  background-size:100%;}

@media screen and (max-width:480px){
	.air_visual {height: 158px !important;}
}
@media screen and (max-width:414px){
	.air_visual {height: 136px !important;}
}
@media screen and (max-width:412px){
	.air_visual {height: 138px !important;}
	.company_category{margin: 20px auto 40px;}
	.company_category div { width:100%; margin-right:0; float:none;}
	.company_category div a {text-align:left;}
}
@media screen and (max-width:390px){
	.air_visual {height: 130px !important;}
}
@media screen and (max-width:375px){
	.air_visual {height: 126px !important;}
	.cal_wrap .cal_date_box .clickable {width: calc((100% - 50px) / 3);display: inline-block;text-align: center;cursor: pointer;font-size: 14px;}
	.cal_wrap .cal_date_box .clickable span { display: block; line-height: 22px;  }
	.cal_wrap .cal_date_box .clickable .days {color:#4c4c4c; font-size: 14px;  font-family: 'SpoqaHanSansNeo-bold'; margin-bottom: 4px;}
	.cal_wrap .cal_date_box .clickable .date {color:#767676;font-size: 14px;font-family: 'SpoqaHanSansNeo';margin-bottom: 10px;}
	.cal_wrap .cal_date_box .clickable .leftover { background: rgba(0, 0, 0, .04); padding: 0 4px; border-radius: 3px; color: #222; font-size: 14px;}
}
@media screen and (max-width:320px){
	.air_visual {height: 108px !important;}
}








/* 잔액 결제 */
  .book_input {
	width: 100%;
  }
  .book_input .check_btn {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: relative;
    margin-right: 10px;
  }
  .book_input .check_btn > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .book_input .btn_on {
    background-color: #ff6f31;
   /* border: 5px solid #FFE0C0;*/
  }
  .book_input .btn_off {
    background-color: #E5E9F4;
/*    border: 5px solid #F6F7FC; */
  }
  .book_input .btn_off img {
    display: none;
  }
  .select_payment {
	flex-wrap: wrap;
  }
  .select_payment input {
	display: none;
  }
  .select_payment > div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 15px 0 15px 0;
  }
  .select_payment > div > p {
	font-size: 14px;
  }
  .select_payment > div > img {
	width: 30px;
	margin-right: 10px;
	border-radius: 6px;
  }
  .select_payment .sub_i_title {
	color: #4F5D75;
	padding-bottom: 10px;
  }

  .payfor {
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 10px;
/*    margin-bottom: 100px;*/
  }
  .payfor > p {
	text-align: center;
	background-color: #ff9231;
	color: #fcfcfc;
	font-size: 21px;
	padding: 10px;
	border-radius: 100px;
	transition: all 0.2s ease-in-out;
  }
  .payfor > p:hover {
	background-color: #f27e29*;
	cursor: pointer;
  }
  .payfor .confirm_btn {
	margin: 0 auto;
	text-align: center;
	background-color: #f27e29*;
	color: #fcfcfc;
	font-size: 21px;
	padding: 10px;
	border-radius: 100px;
	transition: all 0.2s ease-in-out;
  }
  .payfor .confirm_btn:hover {
	background-color: #f27e29*;
	cursor: pointer;
  }
.paySelect {
	  width: 50%;
	padding: 10px;
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	box-sizing: border-box;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 16px;
	color: #555;
	vertical-align: middle;
	margin-left:10px;
}
/* 잔액 결제 */

/* -----------------------------
          policies
--------------------------------- */
#smallPopup .policies {
    padding-top: 0;
    height: calc(100%);
    box-sizing: border-box;
    overflow: auto;
    padding-bottom: 0;
}


.policies {
    color: var(--gray);
    font-weight: 400;
    padding-top: 120px;
    padding-bottom: 80px;
    height: 100%;
}

.rule_table .layer_wrap, .rule_table .cont_box, .rule_table .layer_inner {
    height: 100%;
}

.policies h3 {
    border-bottom: 0;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 44px;
}

.policies h4 {
    width: 90%;
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.policies .inner {
    max-width: 1220px;
    margin: 0 auto;
}

.policies .person_list {
    background: rgba(0, 0, 0, .04);
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
}

.policies .person_list a {
    color: #000;
}

.policies .person_list ol::after {
    display: block;
    content: '';
    clear: both;
}

.policies .person_list ol li {
    line-height: 28px;
}

.policies dl {
    margin: 0 0 30px 0;
}

.policies dl dt, .policies .po_tit {
    font-size: 17px;
    color: var(--black);
    padding-bottom: 6px;
    font-weight: 600;
}

.policies, .policies dl dd, .policies dl dd .depth, .policies .person_list ol li {
    font-size: 14px;
}

.policies dl dd {
    line-height: 20px;
	color: #666;
}

.policies dl dd span {
    font-weight: 500;
}

.policies dl dd .depth {
    margin-bottom: 20px;
}

.policies dl dd .depth2 {
    margin-left: 0;
}

.policies dl dd .depth2 dt {
    color: var(--gray);
    font-size: 15px;
    padding-bottom: 6px;
    font-weight: 400;
}

.policies dl dd ul li {
    margin-bottom: 6px;
    list-style: disc;
}

.policies dl dd ul li span {
    color: rgb(0 0 0 / 66%);
}

.policies ol li {
    line-height: 22px;
}

.policies ol li span {
    color: rgb(0 0 0 / 80%)
}

.policies p {
    font-size: 15px;
    line-height: 22px;
}

.policies .end {
    margin-bottom: 30px;
}

.policies .form {
    margin-top: 40px;
}

.policies .form ul {
    margin-bottom: 20px;
}

.policies .form ul li {
    margin-bottom: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.policies .form ul li span:first-child {
    width: 15%;
    font-size: 16px;
    color: var(--black);
    min-width: 70px;
}

.policies .form ul li span:last-child {
    width: 85%;
}

.policies .form ul li input {
    width: 100%;
}

.policies .form ul li .email {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.policies .form ul li .email .email-at {
    width: 90px;
    text-align: center;
}

.policies .form ul li span textarea {
    height: 200px
}

.policies .btn_area .btn_black {
    width: 50%;
    max-width: 340px;
    margin: 50px auto 0;
}

.policies .btnReservation {
    margin: 0 auto;
}

.policies .of_y, .policies.of_y {
    overflow: auto;
    line-height: 22px;
    padding-right: 5px;
    /* height: 80vh; */
    height: calc(100% - 20px - 22px);
    box-sizing: border-box;
    padding-bottom: 20px;    
}

.policies .of_x {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.policies .btn_black {
    cursor: pointer;
    width: 100%;
    background: var(--black);
    border-radius: 3px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    box-sizing: border-box;
    letter-spacing: -0.6px;
    min-height: 50px;
    text-align: center;
}

.policies .personal-table {
    width: 100%;
    padding: 0;
    margin: 6px 0 20px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.policies .personal-table th {
    vertical-align: middle;
}

.policies .personal-table tbody tr {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.policies .personal-table tbody tr:last-child {
    border-bottom: 1px solid rgb(28 28 28 / 70%)
}

.policies .personal-table thead tr th {
    border-bottom: 1px solid rgb(28 28 28 / 40%);
    padding: 12px 20px;
    background: rgb(28 28 28 / 4%);
    font-weight: 500;
    color: var(--black);
    text-align: center;
}

.policies .personal-table tbody tr td {
    color: #666;
    padding: 12px 20px;
    line-height: 20px;
    vertical-align: middle;
}

.policies .policies .personal-table2 {
    width: 100%;
    padding: 0;
    margin: 6px 0 20px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.policies .policies .personal-table2 tbody tr {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.policies .policies .personal-table2 tbody tr:last-child {
    border-bottom: 0;
}

.policies .policies .personal-table2 tbody tr:last-child th {
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.policies .policies .personal-table2 tbody tr:last-child td {
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.policies .policies .personal-table2 tbody tr th {
    border-bottom: 1px solid rgb(28 28 28 / 40%);
    text-align: left;
    padding: 12px 20px;
    background: rgb(28 28 28 / 4%);
    font-weight: 500;
    color: var(--black);
}

.policies .policies .personal-table2 tbody tr td {
    text-align: left;
    padding: 12px 20px;
    color: var(--gray);
    line-height: 20px;
}

.policies .policies .personal-table3 {
    width: 100%;
    padding: 0;
    text-align: center;
    margin: 6px 0 20px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.policies .policies .personal-table3 col {
    width: 25%;
}

.policies .policies .personal-table3 tbody tr {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.policies .policies .personal-table3 tbody tr:last-child {
    border-bottom: 0;
}

.policies .policies .personal-table3 thead tr th {
    border-bottom: 1px solid rgb(28 28 28 / 40%);
    padding: 10px;
    background: rgb(28 28 28 / 4%);
    font-weight: 500;
    color: var(--black);
    text-align: center;
}

.policies .policies .personal-table3 tbody tr td {
    padding: 10px;
    color: var(--gray);
    line-height: 20px;
    vertical-align: middle;
}

.rule_table .personal-table2 {
    width: 100%;
    padding: 0;
    margin: 6px 0 20px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.rule_table .personal-table2 tbody tr {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.rule_table .personal-table2 tbody tr:last-child {
    border-bottom: 0;
}

.rule_table .personal-table2 tbody tr:last-child th {
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.rule_table .personal-table2 tbody tr:last-child td {
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.rule_table .personal-table2 tbody tr th {
    border-bottom: 1px solid rgb(28 28 28 / 40%);
    text-align: left;
    padding: 10px;
    background: rgb(28 28 28 / 4%);
    font-weight: 500;
    color: rgb(0 0 0 / 75%)
}

.rule_table .personal-table2 tbody tr td {
    text-align: left;
    padding: 10px;
    color: rgb(0 0 0 / 60%);
    line-height: 20px;
}

.rule_table .personal-table3 {
    width: 100%;
    padding: 0;
    text-align: center;
    margin: 6px 0 20px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgb(28 28 28 / 70%);
}

.rule_table .personal-table3 col {
    width: 25%;
}

.rule_table .personal-table3 tbody tr {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.rule_table .personal-table3 tbody tr:last-child {
    border-bottom: 0;
}

.rule_table .personal-table3 thead tr th {
    border-bottom: 1px solid rgb(28 28 28 / 40%);
    padding: 10px;
    background: rgb(28 28 28 / 4%);
    font-weight: 500;
    color: rgb(0 0 0 / 75%)
}

.rule_table .personal-table3 tbody tr td {
    padding: 10px;
    color: rgb(0 0 0 / 60%);
    line-height: 20px;
    vertical-align: middle;
}

/* -----------------
       회사소개
-----------------*/
.page_company_intro .intro {
	width: 100%;
    padding: 20px;
    margin: 0 auto;
    margin-top: 65px;
}

.page_company_intro .intro img {
    width: inherit;
}

.share_warp {
    display: flex;
    align-items: center;
	position:absolute;
	right:0;
    top: 0;
}

.share_warp .sh.sh_kakao {
    background-image: url(../../images/common/share_icon_kakao.png);
}

.share_warp .sh {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-color: #e5e5e5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 36px;
    cursor: pointer;
    margin-right: 6px;
}

.share_warp .sh.sh_link {
    background-image: url(../../images/common/share_icon_link.png);
}

.share_warp .sh {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-color: #e5e5e5;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 36px;
    cursor: pointer;
    margin-right: 6px;
}

.info .detail_ti {
	padding-right: 90px;
}