@charset "utf-8";

body {
 -ms-overflow-style: none;
}

#wrap {
  max-width: 600px;
  min-width: 320px;
  margin: 0 auto;
  margin-bottom: 100px;
  color: #1e1e1e;
  font-family: 'SCoreDrheader naveam';
}
.inner_size {
  height: 100%;
  padding: 0 20px;
}

/* 헤더 */
header {
  max-width: 600px;
  background-color: #fff;
  /* overflow: hidden; */
}

header .afterLogin {
  width: 100%;
  padding: 0 20px;
  padding-top: 5px;
  text-align: right;
  font-size: 11px;
  box-sizing: border-box;
}
header .afterLogin .name {
  color: #f47920;
  font-weight: bold;
}

header .inner_size {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
}

header .left {
  display: flex;
  align-items: center;
  height: 100%;
}
header .left .btn_m {
  width: 6vw;
  max-width: 32px;
  min-width: 25px;
  height: 52px;
  background-image: url(/mobile/images/btn_menu.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left center;
}
header .left .btn_m a {
  display: block;
  width: 100%;
  height: 100%;
}

header .left h1 {
  width: 25vw;
  max-width: 120px;
  min-width: 60px;
  margin-left: 12px;
}
header .left h1 a {}
header .left h1 a img {
  width: 100%;
}

header .right {
  display: flex;
  height: 100%;
}
header .right .search {}
header .right .search .search_icon {
  display: block;
  width: 6vw;
  max-width: 32px;
  min-width: 25px;
  height: 60px;
  background-image: url(/mobile/images/icon_search.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
header .right .search #searchBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  padding: 0 20px;
  padding-top: 50px;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
header .right .search #searchBox.open {
  opacity: 1;
  visibility: visible;
}
header .right .search #searchBox input {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  padding-right: 42px;
  font-size: 13px;
  letter-spacing: -0.5px;
  border-radius: 20px;
  border: 2px solid #f47920;
}
header .right .search input:focus {
  outline: none;
}
header .right .search input::placeholder {
  font-size: 12px;
}
header .right .search .searchbox_icon {
  position: absolute;
  right: 30px;
  width: 38px;
  height: 38px;
  background-image: url(/mobile/images/icon_search.png);
  background-size: 22px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
header .right .search .hash {
  padding: 0 10px;
  margin-top: 10px;
}
header .right .search .hash a {
  font-size: 11px;
  color: #555;
  margin-right: 10px;
}
header .right .search .close_searchBox {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  background-color: rgba(0,0,0,0.8);
  border-radius: 50%;
}
header .right .search .close_searchBox::before,
header .right .search .close_searchBox::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 26px;
  height: 3px;
  margin-left: -13px;
  border-radius: 5px;
  background-color: #fff;
}
header .right .search .close_searchBox::before {
  transform: rotate(45deg);
}
header .right .search .close_searchBox::after {
  transform: rotate(-45deg);
}

header .right .my {
  width: 6vw;
  max-width: 32px;
  min-width: 25px;
  height: 60px;
  margin-left: 12px;
  background-image: url(/mobile/images/icon_my.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right center;
}
header .right .my a {
  display: block;
  width: 100%;
  height: 100%;
}
header .right .my a img {}

header nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  z-index: 999;
  box-sizing: border-box;
}
header nav.fix {
  position: fixed;
  top: 0;
  left: 0;
}
header nav .d1 {
  display: flex;
  width: 100%;
  padding-right: 25px;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  user-select: none;
  cursor: pointer;
  transition: all 0.2s;
  will-change: transform;
}
header nav .d1::-webkit-scrollbar {
  display: none;
}
header nav .d1.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
header nav .d1 li {
  flex-shrink: 0;
  margin-right: 24px;
}
header nav .d1 li:last-child {
  margin-right: 55px;
}
header nav .d1 li a {
  font-size: 15px;
  font-weight: bold;
  line-height: 48px;
}

header nav .more {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 48px;
  background-color: #fff;
  border-left: 1px solid #ddd;
  text-indent: -9999px;
}
header nav .more::before,
header nav .more::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background-color: #8a8a8a;
  border-radius: 2px;
  transition: all 0.3s;
}
header nav .more::before {
  left: 50%;
  margin-left: -8px;
  transform: rotate(45deg);
}
header nav .more::after {
  right: 50%;
  margin-right: -8px;
  transform: rotate(-45deg);
}
header nav .more.active::before {
  transform: rotate(135deg);
}
header nav .more.active::after {
  transform: rotate(-135deg);
}

header nav .more_click {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
header nav .more_click.view {
  max-height: 150px;
}
header nav .more_click li {
  width: 33.333%;
  height: 36px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
}
header nav .more_click li:nth-child(3n) {
  border-right: none;
}
header nav .more_click li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 13px;
  line-height: 36px;
}

/* 톡상담 */
.talk_center {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 74px;
  height: 26px;
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
  padding-left: 32px;
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  border-radius: 20px;
  z-index: 1000;
}
.talk_center a {}
.talk_center span {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #fae100;
  border-radius: 50%;
  background-image: url(/mobile/images/sns_kakao.png);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

/* 독바 */
#docbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 5px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -5px 10px rgba(0,0,0,0.1);
}
#docbar ul {
  display: flex;
  justify-content: space-between;
}
#docbar ul li {
  position: relative;
  width: 18%;
  height: 100%;
  padding-top: 5px;
  text-align: center;
}
#docbar ul li a {}
#docbar ul li a img {
  width: 48%;
}
#docbar ul li a p {
  margin-top: 3px;
  font-size: 2.8vw;
  letter-spacing: -1px;
}
#docbar ul #todayview span {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 14px;
  height: 14px;
  margin-top: -20px;
  margin-right: -16px;
  color: #fff;
  font-size: 8px;
  line-height: 14px;
  background-color: rgb(243, 52, 18);
  border-radius: 50%;
}

/* 사이드메뉴 */
body.sideFix {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#sideM {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #f3f3f4;
  z-index: 1000;
  transition: all 0.3s;
  overflow: auto;
}
#sideM.open {
  left: 0;
}
#sideM .sideM_inner {
  /* padding-bottom: 120px; */
}
#sideM .tit {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  height: 30px;
  margin: 0 auto;
  background-color: #262626;
}
#sideM .tit h3 {
  color: #fff;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
}
#sideM .close_sideM {
  position: relative;
  width: 30px;
  height: 30px;
}
#sideM .close_sideM::before,
#sideM .close_sideM::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background-color: #fff;
}
#sideM .close_sideM::before {
  transform: rotate(45deg);
}
#sideM .close_sideM::after {
  transform: rotate(-45deg);
}

#sideM .sideM_con {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}
#sideM .menu_cate {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 4px rgba(0,0,0,0.08);
}
#sideM .menu_cate h4 {
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 2.4em;
  border-bottom: 1px solid #eee;
}
#sideM .menu_cate ul {
  display: flex;
  flex-wrap: wrap;
}
#sideM .menu_cate li {
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}
#sideM .menu_cate .cell3 li {
  width: 33.333%;
}
#sideM .menu_cate li:nth-child(odd) {
  border-right: 1px solid #eee;
}
#sideM .menu_cate .cell3 li:nth-child(2) {
  border-right: 1px solid #eee;
}
#sideM .menu_cate .cell3 li:nth-child(3) {
  border-right: none;
}
#sideM .menu_cate .line2 li:nth-child(-n+2) {
  border-bottom: 1px solid #eee;
}
#sideM .menu_cate li a {
  font-size: 13px;
  color: #666;
  line-height: 2.4em;
  letter-spacing: -1px;
}

#sideM .cscenter {
  margin: 40px -20px;
  padding: 10px 20px;
  background-color: #fff;
}
#sideM .cscenter h4 {
  font-size: 12px;
  font-weight: bold;
  line-height: 2.4em;
}
#sideM .cscenter ul {
  margin-top: 5px;
}
#sideM .cscenter li {
  margin-right: 20px;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: -1px;
  color: #666;
}
#sideM .cscenter li a {
  margin-left: 5px;
  color: rgb(34, 68, 219);
  letter-spacing: -0.5px;
  font-size: 15px;
  font-weight: bold;
}

main {
  min-height: 100vh;
}
main.fix {
  margin-top: 50px;
}

/* sns */
.sns {
  display: flex;
  justify-content: center;
}
.sns li {
  width: 12%;
  margin: 0 5px;
}
.sns li a {}
.sns li a img {
  width: 100%;
}

/* 주황배경제목 */
.orangeTit {
  height: 34px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 34px;
  background-color: #f47920;
}

/* 소제목 */
.sub_sel_tit {
  display: flex;
  width: 100%;
  height: 38px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.sub_sel_tit li {
  line-height: 37px;
  font-size: 16px;
  text-align: center;
  border-right: 1px solid #ddd;
}
.sub_sel_tit li:last-child {
  border-right: none;
}

.sub_sel_tit li:first-child:nth-last-child(2), /* 노드가 둘 일 때, 1번 노드 선택 */
.sub_sel_tit li:first-child:nth-last-child(2)+li { width: 50%; }     /* 노드가 둘 일 때, 2번 노드 선택 */

.sub_sel_tit li:first-child:nth-last-child(3), /* 노드가 셋 일 때, 1번 노드 선택 */
.sub_sel_tit li:first-child:nth-last-child(3)~li { width: 33.33%; }  /* 노드가 셋 일 때, 2~3번째 노드 선택 */

.sub_sel_tit li:first-child:nth-last-child(4), /* 노드가 넷 일 때, 1번 노드 선택 */
.sub_sel_tit li:first-child:nth-last-child(4)~li { width: 25%; }     /* 노드가 넷 일 때, 2~4번째 노드 선택 */

.sub_sel_tit li a {
  display: block;
}

/* --------------------------------- 메인화면 --------------------------------- */
/* 메인비주얼 */
.main .mainV {
  width: 100%;
  height: 360px;
  background-image: url(/mobile/images/mainV01.jpg);
  background-position: center center;
  background-size: cover;
}

/* 아이콘메뉴 */
.main .iconM {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.main .iconM li {
  width: 23%;
  margin-bottom: 30px;
  text-align: center;
}
.main .iconM li a {}
.main .iconM li a img {
  width: 80%;
}
.main .iconM li a p {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: -1px;
}

/* 카카오채널 소식받기 */
.main .kakaoCh_banner {
  padding: 10px 0;
  margin: 30px 20px 40px;
  font-size: 15px;
  text-align: center;
  line-height: 34px;
  letter-spacing: -1px;
  background-color: #fae100;
  border-radius: 14px;
}
.main .kakaoCh_banner a {}
.main .kakaoCh_banner a span {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-image: url(/mobile/images/icon_kakaochanel.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.main .kakaoCh_banner a b {}

/* --------------------------------- 상품리스트 --------------------------------- */
.pdlist {}

.recommand_pdlist_con {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 5px solid #eee;
}
.recommand_pdlist_con h3 {
  margin-bottom: 10px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 500;
}
.recommand_pdlist_con h3 span {
  color: #f50d20;
  font-weight: 800;
}

.pdlist_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
.pdlist_list li {
  width: 48%;
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid #ddd;
}
.pdlist_list li a {}
.pdlist_list li .image {
  position: relative;
  width: 100%;
  height: 110px;
  background-color: lightblue;
}
.pdlist_list li .image img {
  width: 100%;
  height: 100%;
}
.pdlist_list li .image .day {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 4px 6px 1px;
  font-size: 10px;
  color: #fff;
  border-radius: 10px;
  background-color: #f47920;
}

.pdlist_list li .text {
  margin-top: 8px;
}
.pdlist_list li .text .t1 {
  font-size: 10px;
  color: #f50d20;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.pdlist_list li .text .t1 span {
  font-weight: 600;
}
.pdlist_list li .text .t2 {
  height: 33px;
  margin: 5px 0 8px;
  font-size: 12px;
  letter-spacing: -0.5px;
  font-weight: 500;
  line-height: 1.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.recommand_pdlist_con li .text .t2 strong span {
  font-size: 12px !important;
  color: #1e1e1e !important;
  font-weight: normal !important;
}
.pdlist_list li .text .t3 {
  font-weight: 800;
  color: #f47920;
  letter-spacing: -0.5px;
  font-size: 13px;
}


/* --------------------------------- 로그인 --------------------------------- */
.login {}

.login main {
  padding: 0 20px;
}

.login h2 {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 18px;
  text-align: center;
}

.login .member_choise {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.login .member_choise input {}
.login .member_choise label {
  margin-left: 5px;
  font-size: 12px;
}

.login .kakao {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: center;
  font-size: 15px;
  line-height: 34px;
  letter-spacing: -0.5px;
  font-weight: 500;
  border-radius: 10px;
  background-color: #fae100;
  background-image: url(/mobile/images/sns_kakao.png);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: 26px center;
}

.login .orLine {
  position: relative;
  margin: 60px 0;
  text-align: center;
  font-size: 12px;
  color: #555;
}
.login .orLine span {
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #ddd;
}
.login .orLine .left {
  left: -20px;
}
.login .orLine .right {
  right: -20px;
}

.login form {}
.login form > input {
  width: 100%;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  border: 1px solid #ddd;
}
.login form > input:first-child {
  border-bottom: none;
}
.login form > input::placeholder {
  font-size: 12px;
  color: #bbb;
}

.login .remain_login {
  display: flex;
  margin-top: 8px;
}
.login .remain_login input {
  width: 13px;
  height: 13px;
  margin-right: 6px;
}
.login .remain_login label {
  font-size: 12px;
}

.login input[type="submit"] {
  height: 45px;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  background-color: #262626;
  border-radius: 10px;
  border: none;
}

.login .moreUtil {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.login .moreUtil a {
  font-size: 12px;
}

.login .notaMem {
  display: block;
  width: 100%;
  height: 45px;
  margin-top: 20px;
  line-height: 45px;
  color: #fff;
  text-align: center;
  background-color: #7a8299;
  border-radius: 10px;

}

/* --------------------------------- 회원가입-약관동의 --------------------------------- */
.join_conditions {}
.join_conditions h2 {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.join_conditions .condition {
  margin-bottom: 50px;
  padding: 0 20px;
}
.join_conditions .tit {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f47920;
  font-weight: bold;
}
.join_conditions .text {
  width: 100%;
  height: 150px;
  padding: 8px 10px;
  line-height: 1.4em;
  font-size: 12px;
  font-weight: normal;
  color: #777;
  font-family: 'Malgun Gothic','맑은고딕','돋움',Dotum, tahoma;
  border: 1px solid #dadada;
  resize: none;
  overflow-y: scroll;
}
.join_conditions .chekhArea {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.join_conditions .chekhArea input {}
.join_conditions .chekhArea label {
  margin-left: 5px;
  font-size: 12px;
}

.join_conditions .member_choise {
  display: flex;
  align-items: center;
  justify-content: center;
}
.join_conditions .member_choise input {}
.join_conditions .member_choise label {
  margin-left: 5px;
  font-size: 13px;
}

.join_conditions .btn_join {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 45px;
  border-radius: 5px;
  background-color: #f47920;
}

/* --------------------------------- 회원가입-정보입력 --------------------------------- */
.join_write {}
.join_write h2 {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.join_write .essential {
  margin-bottom: 10px;
  margin-right: 20px;
  text-align: right;
  font-size: 12px;
  color: #777;
}
.join_write .essential img {
  margin-right: 4px;
}

.join_write form {
  padding: 0 20px;
  border-top: 1px solid #ddd;
}
.join_write form > div {
  padding: 20px 0;
  font-size: 13px;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #ddd;
}
.join_write form label {
  display: block;
  margin-bottom: 3px;
  font-size: 9px;
  letter-spacing: -0.5px;
}
.join_write form label.essen {}
.join_write form label.essen::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background-image: url(../images/icon_check.gif);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.join_write form input {
  height: 30px;
  padding: 0 10px;
  margin-bottom: 5px;
  border: 1px solid #ddd;
}
.join_write form input[type="text"],
.join_write form input[type="password"] {
  width: 100%;
}
.join_write form .info {
  font-size: 10px;
  line-height: 1.5em;
}

/* id_box */
.join_write .id_box input:nth-child(2) {
  width: 94%;
  margin-bottom: 5px;
}
.join_write .id_box select {
  position: relative;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background-color: #f1f1f1;
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: 97% center;
}
.join_write .id_box .at {
  float: right;
  width: 5%;
  line-height: 30px;
}
.join_write .id_box button {
  width: 100%;
  height: 30px;
  margin: 5px 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #222;
}

/* gender_box */
.join_write .gender_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.join_write .gender_box input {}
.join_write .gender_box label {
  margin-left: 4px;
  font-size: 14px;
}

/* nativeplace_box */
.join_write .nativeplace_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.join_write .nativeplace_box input {}
.join_write .nativeplace_box label {
  margin-left: 4px;
  font-size: 14px;
}

/* address_box */
.join_write .address_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.join_write .address_box label {
  width: 100%;
}
.join_write .address_box input[type="text"] {
  width: 24%;
}
.join_write .address_box .bar {
  line-height: 30px;
}
.join_write .address_box .btn_addressSearch {
  width: 42%;
  height: 30px;
  margin-left: 2%;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
  background-color: #222;
}
.join_write .address_box #roadname,
.join_write .address_box #addressnum {
  width: 100%;
}

/* mobilenum_box */
.join_write .mobilenum_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.join_write .mobilenum_box label:first-child {
  width: 100%;
}
.join_write .mobilenum_box input[type="text"] {
  width: 31%;
}
.join_write .mobilenum_box .bar {
  line-height: 30px;
}

/* button */
.join_write .final_btn {
  display: flex;
  justify-content: space-between;
  border-bottom: none;
}
.join_write .final_btn button {
  width: 48%;
  height: 40px;
  color: #fff;
  text-align: center;
  font-size: 14pxs;
  border-radius: 5px;
}
.join_write .final_btn .btn_join {
  background-color: #f47920;
}
.join_write .final_btn .btn_cancle {
  background-color: #222;
}

/* --------------------------------- 회원가입-가입완료 --------------------------------- */
.join_thank .t1 {
  margin-top: 80px;
  padding: 0 20px;
  color: #f47920;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3em;
  text-align: center;
}
.join_thank .t2 {
  padding: 0 20px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: bold;
  color: #555;
  text-align: center;
}
.join_thank .join_notice {
  padding: 15px 20px;
  margin: 0 20px;
  margin-top: 50px;
  font-size: 10px;
  color: #999;
  line-height: 1.4em;
  font-size: 10px;
  background-color: #f1f1f1;
  border-top: 1px solid #ddd;
}
.join_thank .join_notice p {
  margin-bottom: 5px;
}
.join_thank .btn_finished {
  display: block;
  width: calc(100% - 40px);
  height: 40px;
  margin: 0 auto;
  margin-top: 80px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  background-color: #f47920;
}

/* --------------------------------- 아이디비밀번호 찾기 --------------------------------- */
.find_account {}
.find_account h2 {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 18px;
  text-align: center;
}
.find_account .subInfo {
  padding: 0 20px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
}
.find_account .subInfo span {
  color: #f47920;
}

.find_account .findBox {
  padding: 0 20px;
}
.find_account .findID {
  margin-bottom: 40px;
}
.find_account .findBox h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #f47920;
}
.find_account .member_choise {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.find_account .member_choise input {}
.find_account .member_choise label {
  margin-left: 4px;
  font-size: 13px;
}

.find_account form {}
.find_account form > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 13px;
}
.find_account form label {
  width: 18%;
  font-size: 13px;
  line-height: 30px;
  font-weight: bold;
}
.find_account form input {
  width: 80%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ddd;
}
.find_account form button {
  width: 100%;
  height: 40px;
  margin: 15px 0;
  color: #fff;
  text-align: center;
  background-color: #f47920;
}
/* 핸드폰 */
.find_account .phoneBox div {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.find_account .phoneBox div input {
  width: 31%;
}
.find_account .phoneBox div .bar {
  line-height: 30px;
}
/* 아이디 */
.find_account .idBox {
  align-items: flex-start;
}
.find_account .idBox div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
}
.find_account .idBox div input {
  width: 100%;
  height: 30px;
  margin-bottom: 5px;
}
.find_account .idBox div input:first-child {
  width: 94%;
}
.find_account .idBox div .at {
  margin-bottom: 5px;
  line-height: 30px;
}
.find_account .idBox div select {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background-color: #f1f1f1;
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 10px auto;
}

/* --------------------------------- 아이디/비밀번호 찾기-찾았을때 --------------------------------- */
.idpwSearch_actor {}
.idpwSearch_actor h2 {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.idpwSearch_actor .txt {
  padding: 0 20px;
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #f47920;
}
.idpwSearch_actor .notice {
  padding: 15px 20px;
  margin: 0 20px;
  margin-top: 50px;
  color: #999;
  line-height: 1.4em;
  font-size: 10px;
  background-color: #f1f1f1;
  border-top: 1px solid #ddd;
}
.idpwSearch_actor button {
  display: block;
  width: calc(100% - 40px);
  height: 40px;
  margin: 0 auto;
  margin-top: 40px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
  background-color: #f47920;
}


/* --------------------------------- 출발확정 --------------------------------- */
.confirm_start {}
.confirm_start main {
  background-color: #f8f8f8;
}

.confirm_type {
  display: flex;
  padding: 0 20px;
  margin-bottom: 20px;
}
.confirm_type a {
  width: 50%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.08);
}
.confirm_type .active {
  color: #fff;
  font-weight: 500;
  background-color: #555;
}

.date_type, .week_type {
  padding: 0 20px;
}

.date_type {
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.08);
}
.date_type .datepicker-here {}
.date_type .datepicker-inline .datepicker {
  width: 100%;
  border: none;
  border-radius: 0;
}
.date_type .datepicker--cell.-selected-,
.date_type .datepicker--cell.-selected-.-current- {
  color: #1e1e1e;
  font-weight: 600;
  background-color: #ffdd92;
}
.date_type .datepicker--nav {
  padding-bottom: 20px;
}
.date_type .datepicker--nav-title {
  font-size: 20px;
}
.date_type .datepicker--content {
  padding-top: 20px;
}
.datepicker--days-names {
  margin-bottom: 15px;
}
.date_type .datepicker--cells {
  font-size: 20px;
}
.date_type .datepicker--cell-day {
  height: 40px;
  margin-bottom: 8px;
  padding: 3px 0;
}

.date_type .option {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.date_type .option li {
  margin-right: 15px;
  font-size: 12px;
  letter-spacing: -0.5px;
}
.date_type .option li span {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 3px;
  vertical-align: sub;
}
.date_type .option li:nth-child(1) span {
  background-color: #ffdd92;
}
.date_type .option li:nth-child(2) span {
  background-color: #fff;
  border: 1px solid #aaa;
}
.date_type .option li:nth-child(3) span {
  position: relative;
  background-color: #fff;
  border: 1px solid #aaa;
}
.date_type .option li:nth-child(3) span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  width: 18px;
  height: 1px;
  background-color: #aaa;
  transform: rotate(-45deg);
}

.week_type {}
.week_type table {
  width: 100%;
  font-size: 12px;
  letter-spacing: -0.5px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.week_type tr {
  border-top: 1px solid #ddd;
}
.week_type th {
  font-size: 11px;
  text-align: center;
  padding: 5px 0;
}
.week_type td {
  padding: 10px 6px;
  line-height: 1.3em;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.week_type .week {
  border-right: 1px solid #ddd;
}
.week_type .days {
  font-size: 11px;
}
.week_type .tit {
  text-align: left;
}
.week_type .start {
  font-size: 11px;
}