/* 추가 201218 */
/*---- Input Style ----*/
input.iptStyle {
  padding: 0 15px;
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

input.phone {
  width: 30%;
}

/*-- END Input Style --*/
/*---- checkBox ----*/
ul.checkBox {
  margin-top: 15px;
  text-align: right;
}

ul.checkBox li {
  display: inline-block;
  margin-left: 15px;
}

ul.checkBox li input[type="checkbox"] {
  display: none;
}

ul.checkBox li input[type="checkbox"]+label {
  padding-left: 32px;
  display: inline-block;
  height: 25px;
  background: url('../img/common/checkbox.png') no-repeat;
  background-position: 0 0;
  font-size: 17px;
  line-height: 25px;
  color: #444;
}

ul.checkBox li input[type="checkbox"]:checked+label {
  background-position: 0 -25px;
}

ul.radioBox {
  margin-top: 0;
  text-align: center;
}

ul.radioBox li {
  /*  margin:0 8px; */
  margin: 0;
}

ul.radioBox li input[type="radio"] {
  display: none;
}

ul.radioBox li input[type="radio"]+label {
  padding-left: 25px;
  display: inline-block;
  height: 23px;
  background: url('../img/common/radiobox.png') no-repeat;
  background-position: 0 0;
  font-size: 14px;
  line-height: 18px;
  color: #444;
}

ul.radioBox li input[type="radio"]:checked+label {
  background-position: 0 -23px;
}

/*-- END checkBox --*/
/*---- button 버튼 ----*/
div.bigBtn, div.mediumBtn {
  margin-top: 50px;
  text-align: center;
}

div.bigBtn a {
  display: inline-block;
  margin: 0 10px;
  width: 260px;
  height: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border: 1px solid #262161;
  color: #262161;
  border-radius: 4px;
}

div.bigBtn a.col, div.mediumBtn a.col, div.smallBtn a.col {
  background-color: #262161;
  color: #fff;
}

div.mediumBtn a {
  display: inline-block;
  margin: 0 10px;
  width: 160px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
  border: 1px solid #c2935f;
  color: #c2935f;
}

a.miniBtn {
  display: inline-block;
  width: 80px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #c2935f;
  font-size: 15px;
  text-align: center;
  line-height: 35px;
  color: #c2935f;
}

a.miniBtn.col {
  background-color: #c2935f;
  color: #fff;
}

div.smallBtn {
  margin-top: 50px;
  text-align: right;
}

div.smallBtn a {
  display: inline-block;
  margin-left: 8px;
  width: 80px;
  height: 35px;
  background-color: #caced1;
  font-size: 16px;
  text-align: center;
  line-height: 35px;
  color: #fff;
}

div.smallBtn a.col02 {
  background-color: #334652;
}

/*-- END button 버튼 --*/
/*---- table ----*/
table.tbl01 {
  margin-top: 15px;
  width: 100%;
}

table.tbl01 caption {
  margin-bottom: 5px;
  text-align: right;
  font-size: 14px;
  color: #999;
}

table.tbl01 tr th {
  padding: 12px 0;
  border: 1px solid #e9e9e9;
  background-color: #f9f9f9;
  font-size: 15px;
  font-weight: 500;
  color: #454545;
}

table.tbl01 tr td {
  padding: 12px 0;
  font-size: 15px;
  text-align: center;
  border: 1px solid #e9e9e9;
  color: #454545;
}

table.tbl02 {
  width: 100%;
  text-align: center;
  border-top: 2px solid #3b4856;
}

table.tbl02 tr {
  border-bottom: 1px solid #ccc;
}

table.tbl02 tr th {
  position: relative;
  height: 50px;
  background-color: #f9f9f9;
  font-weight: 500;
  color: #454545;
}

table.tbl02 tr th:first-child::after {
  display: none;
}

table.tbl02 tr th::after {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background-color: #e0e0e0;
}

table.tbl02 tr td {
  height: 55px;
  font-size: 15px;
  color: #555;
}

table.tbl03 {
  border-top: 2px solid #ddd;
  margin-top: 0px;
  width: 100%;
}

table.tbl03 tr th {
  border: 1px solid #ddd;
}

table.tbl03 tr td {
  border: 1px solid #ddd;
  text-align: center;
}

table.tbl01 tr td.price {
  color: #E70003;
}

/*-- END table --*/
/* 캘린더 */
.reserve_wrap {
  display: flex;
  padding-top: 50px;
}

.calendar_box {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.calendar_tit {
  font-size: 20px;
  line-height: 46px;
  color: #000;
  font-weight: bold;
  text-align: right;
}

.calendar_tit img {
  padding: 0 20px;
  cursor: pointer;
  vertical-align: baseline;
}

.calendar_days .calendar_s1 td {
  height: 50px;
  border-bottom: 1px solid #efefef;
}

.calendar_s1 tr td:first-child {
  color: #FF5151;
}

.calendar_s1 tr td:last-child {
  color: #30ACBB;
}

.calendar_s1 {
  width: 100%;
}

.calendar_s1 th,
.calendar_s1 td {
  padding: 4px 0;
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
}

.calendar_s1 td .bg_box {
  width: 100%;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.calendar_s1 td .bg_box>div {
  width: 30px;
  height: 100%;
  margin: 0 auto;
  line-height: 30px;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.calendar_s1 td .bg_box .last {
  color: #ccc;
}

.calendar_s1 tr td p.last {
  padding-top: 8px;
  font-size: 12px;
  color: #ccc;
}

.calendar_s1 .sel_bg1 {
  background-color: #f4f4f4;
  color: #666;
  padding: 14px;
}

.opt__br-b th, .opt__br-b td {
  border: 1px solid #e8e8e8;
}

.calendar_s1 tr td.sel {
  padding: 0;
}

.calendar_s1 tr td.sel .bg_box div {
  background: #1e769e;
  color: #fff;
  border-radius: 50%;
}

.calendar_s1 tr td p {
  padding-top: 8px;
  font-size: 12px;
}

.reserve_box {
  width: 50%;
  padding: 10px;
}

.reserve_box .mg_t_b_22 {
  width: 100%;
  margin: 22px 0;
}

.reserve_box .tit_st1 .day_sat {
  color: #1e769e;
  vertical-align: initial;
}

.reserve_box .tit_st2 {
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border-bottom: 0;
}

.reserve_box .tit_st2 .day_sat {
  color: #1e769e;
  vertical-align: initial;
}

.reserve_box .popup_rule {
  font-size: 0.85rem;
  line-height: 1.45rem;
  color: #777;
}

.reserve_box .tr_choice {
  background: #E1F6FF;
}

.reserve_box .minus {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: url(../img/common/icon_minors.svg) no-repeat 50% 50%;
  background-size: 100%;
  cursor: pointer;
  vertical-align: middle;
}

.reserve_box .input_s2 {
  width: 34px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  text-align: center;
  font-weight: 600;
  border: none;
  box-sizing: border-box;
}

.reserve_box .plus {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: url(../img/common/icon_plus_on.svg) no-repeat 50% 50%;
  background-size: 100%;
  cursor: pointer;
  vertical-align: middle;
}

.reserve_box .blk-tit {
  text-align: center;
  background: #F9F9F9;
  color: #000;
}

.reserve_box .blk-tit-lf {
  text-align: left !important;
  background: #F9F9F9;
  color: #000;
}

.reserve_box .noti1 {
  color: #FF5151;
  font-weight: 500;
}

.reserve_box .total {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  padding: 4%;
}

.bonus_box {
  width: 50%;
  padding: 10px;
}

.bonus_box .user_info_st1 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

.bonus_box .user_info_st1 td,
.bonus_box .user_info_st1 th {
  padding: 4px;
  height: 38px;
  vertical-align: middle;
}

.bonus_box .user_info_st1 td.noti_h {
  height: 20px !important;
}

.bonus_box .user_info_st1 .al_le_tit {
  text-align: left;
  font-size: 12px;
  color: #999;
}

.bonus_box .user_info_st1 .al_ct_txt {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}

.bonus_box .user_info_st1 .al_le_txt {
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

.bonus_box .user_info_st1 .al_rh_txt {
  text-align: right;
  font-size: 14px;
  line-height: 26px;
}

.bonus_box .user_info_st1 .input_s2_60 {
  width: 47%;
}

.bonus_box .user_info_st1 a {
  color: #415968;
  font-size: 16px;
}

.bonus_box .user_info_st2 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 20px;
}

.bonus_box .user_info_st2 td,
.bonus_box .user_info_st2 th {
  padding: 8px;
  height: 42px;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #F4F2F0;
}

.bonus_box .user_info_st2 .al_le_tit {
  text-align: left;
  font-size: 12px;
  color: #999;
}

.bonus_box .user_info_st2 .al_le_txt {
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

.bonus_box .user_info_st2 .al_ct_tit {
  text-align: center;
  font-weight: 500;
  background: #fffce9;
  height: 35px;
}

.bonus_box .input_s2_60 {
  width: 50%;
  font-size: 13px;
  height: 32px;
  line-height: 20px;
  text-align: right;
  color: #333;
  background: #f9f9f9;
  border-bottom: 1px solid #999;
  padding-right: 10px;
  margin-top: 0;
}

.bonus_box .fs16_bold {
  font-size: 16px;
  font-weight: bold;
  line-height: 32px;
}

.bonus_box .btn_s3_30 {
  display: inline-block;
  width: 30%;
  font-size: 13px;
  font-weight: 500;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: #6a7f8c;
  color: #fff;
  cursor: pointer;
  vertical-align: middle;
  border-radius: 3px;
}

.rule_txt {
  position: relative;
  text-align: left;
  width: 100%;
  margin-top: 8px;
  padding-left: 32px;
  font-size: 13px;
  line-height: 36px;
  margin: 4% 0;
}

.icon_box50 {
  display: inline-block;
  font-size: 14px;
  width: 48.5%;
  text-align: center;
  padding: 8px 0;
  border: 1px solid #DDDBD7;
  border-radius: 3px;
  margin: 8px 0;
  cursor: pointer;
}

.icon_box50_on {
  display: inline-block;
  font-size: 14px;
  width: 48.5%;
  text-align: center;
  padding: 8px 0;
  color: #000;
  font-weight: 600;
  border: 1px solid #000;
  border-radius: 3px;
  margin: 8px 0;
  cursor: pointer;
}

.icon_box50 img,
.icon_box50_on img {
  vertical-align: middle;
}

.icon_buy_ok {
  display: inline-block;
  vertical-align: initial;
  margin-left: 2px;
  padding: 4px 6px;
  border: 1px solid #2AB24E;
  color: #2AB24E;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.icon_buy_no {
  display: inline-block;
  vertical-align: initial;
  margin-left: 2px;
  padding: 4px 6px;
  border: 1px solid #999;
  color: #999;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.chk_box_s {
  position: absolute;
  left: 8px;
  top: 50%;
  margin-top: -10px;
  height: 18px;
  cursor: pointer;
}

.checkbox_s1 {
  position: absolute;
  height: 0;
  width: 0;
}

.checkbox_s1+label {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_check.svg) no-repeat 50% 50%;
  background-size: 100%;
}

.checkbox_s1:checked+label {
  background: url(../img/common/icon_checked.svg) no-repeat 50% 50%;
  background-size: 100%;
}

.checkbox_s1s {
  position: absolute;
  height: 0;
  width: 0;
}

.checkbox_s1s+label {
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/icon_check_s.svg) no-repeat 50% 50%;
  background-size: 100%;
}

.checkbox_s1s:checked+label {
  background: url(../img/common/icon_checked_s.svg) no-repeat 50% 50%;
  background-size: 100%;
}

.txt_a_rh {
  text-align: right;
}

.day_sat {
  color: #1e769e;
}

.txt_bold {
  font-weight: bold;
}

/* 하단버튼 2-결제 */
.btn_cancel {
  float: left;
  width: 38%;
  height: 52px;
  line-height: 52px;
  cursor: pointer;
  text-align: center;
  background: #6a7f8c;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
}

.btn_book {
  float: right;
  width: 60%;
  height: 52px;
  line-height: 52px;
  cursor: pointer;
  text-align: center;
  background: #FF5151;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
}

.btn_booking {
  float: left;
  width: 100%;
  height: 52px;
  line-height: 52px;
  cursor: pointer;
  text-align: center;
  background: #1e769e;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
}

/* 회사소개 */
.company_slide {
  max-width: 840px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}

.company_slide img {
  width: 100%;
}

.company_slide .swiper-pagination-bullet {
  background: #fff !important;
}

/* 강화루지 이야기 */
.news_wrap {
  margin-top: 50px;
}

.news_wrap .news_list {
  margin-top: 10px;
}

.news_wrap .news_list ul {
  display: flex;
}

.news_wrap .news_list ul li {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 50%;
  text-align: center;
  margin-right: 5px;
}

.news_wrap .news_list ul li:nth-child(2n) {
  margin: 0 0 0 5px;
}

.news_wrap .news_list ul li .news_tit {
  font-weight: 600;
  border: solid #666;
  background: #fbfbfc;
  border-width: 2px 0 1px;
  padding: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.news_wrap .news_list ul li .news_con {
  flex: 1;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.news_wrap .news_list ul li .news_con img {
  max-width: 100%;
}

.news_wrap .news_list ul li .more_btn {
  display: inline-block;
  width: 150px;
  font-size: 13px;
  background: #f4f4f4;
  border-radius: 20px;
  padding: 5px;
  margin: 10px auto 0;
}

.board_view {}

.board_view .board_view_info {
  display: flex;
  border: 1px solid #ddd;
}

.board_view .board_view_info dl {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  height: 40px;
  border-left: 1px solid #000;
}

.board_view .board_view_info dl:first-child {
  border-left: none;
}

.board_view .board_view_info dl dt {
  line-height: 40px;
}

.board_view .board_view_info dl dd {
  line-height: 40px;
}

.board_view .board_view_tit {
  text-align: center;
  border: solid #ddd;
  border-width: 0 1px 1px;
  padding: 10px;
}

.board_view .board_view_con {
  border: solid #000;
  border-width: 0 1px 1px;
  padding: 10px;
}

.board_view .board_view_con img {
  max-width: 100%;
}

.photo_list {}

.photo_list ul {
  display: flex;
  flex-wrap: wrap;
}

.photo_list ul li {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  justify-content: space-between;
  box-sizing: border-box;
  margin-top: 22px;
  border: 3px solid #fff;
}

.photo_list ul li:hover {
  border: 0;
  box-shadow: 8px 16px 24px 0 rgba(0, 0, 0, 0.2);
}

.photo_list ul li:hover {
  border: 0;
  border: 3px solid #1e769e;
}

.photo_list ul li:hover .txt_area .tit,
.photo_list ul li:hover .txt_area .txt {

}

.photo_list ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.photo_list ul li .img_area {
  flex: 1;
}

.photo_list ul li .img_area img {
  width: 100%;
  height: 100%;
}

.photo_list ul li .txt_area {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  padding: 16px;
}

.photo_list ul li .txt_area span {
  display: block;
}

.photo_list ul li .txt_area .tit {
  font-family: 'NotoSans-Bold', '맑은 고딕', 'Malgun Gothic', sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.photo_list ul li .txt_area .txt {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.photo_list ul li .txt_area .tag {
  position: absolute;
  top: -23px;
  right: 20px;
  min-width: 46px;
  padding-top: 56px;
  font-size: 16px;
  color: #51accf;
  text-align: center;
  background: url("/common/images/icon/mainCon5_tag_icon.png") no-repeat 50% 0;
}

.guide_wrap {
  margin-top: 50px;
}

.guide_wrap .guide_txt {
  background: #fffbf6;
  padding: 50px;
}

.guide_wrap h3 {
  font-size: 20px;
  color: #000000;
  font-family: 'Noto Sans Medium';
  margin: 20px 0 10px 0;
}

.commonT01 {
  border-bottom: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  width: 100%;
  padding: 0;
  margin: 0;
}

.commonT01 th {
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  padding: 5px;
  background: #fbfbfb;
}

.commonT01 td {
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  padding: 8px 16px;
}

.commonT01s {
  border-bottom: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  width: 100%;
  padding: 0;
  margin: 0;
}

.commonT01s th {
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  padding: 5px;
  background: #fbfbfb;
  font-size: 14px;
}

.commonT01s td {
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  padding: 5px;
  font-size: 14px;
}

.commonT01s td a {
  color: #000000;
}

.commonT01s td .prdt {
  font-size: 16px;
  color: #000000;
  display: block;
  font-family: 'Noto Sans Medium';
}

.commonT01s td.price {
  font-size: 15px;
  color: #E70003;
}

.commonTnb {
  border: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.commonTnb th {
  border: none;
  padding: 0px;
  background: #fbfbfb;
  font-size: 14px;
}

.commonTnb td {
  border: none;
  padding: 0px;
  font-size: 14px;
}

.commonTnb td a {
  color: #000000;
}

.commonTnb td h3 {
  margin: 5px 0;
}

.commonUl {
  margin: 8px 0 24px 16px;
}

.commonUl li {
  background: url(../img/common/spot_01.png) left 8px no-repeat;
  font-size: 16px;
  padding-left: 15px;
}

.commonUl2 {
  margin: 0 0 20px 0;
}

.commonUl2 li {
  background: url(../img/common/spot_01.png) left 8px no-repeat;
  font-size: 15px;
  padding-left: 15px;
}

.btn_wrap {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  width: 100px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #1e769e;
  text-align: center;
  border-radius: 2px;
}

.prev_btn {
  margin-right: 2.5px;
}

.next_btn {
  margin-left: 2.5px;
}

.list_btn {
  margin-left: auto;
}

/* 오시는 길 */
.location_wrap {}

.location_wrap h2 {
  background: url(../img/common/h2_bg.png) no-repeat left top;
  font-size: 30px;
  font-family: 'Noto Sans Medium';
  letter-spacing: -1px;
  color: #000000;
  text-align: left;
  margin: 50px 0 0;
  padding: 10px 0 0 0;
}

.locationUl li {
  background: url(../img/common/location_arw.gif) left 8px no-repeat;
  padding-left: 30px;
  margin-right: 10px;
  float: left;
}


/* 편의시설 */
h4.restrt {
  font-size: 18px;
  margin: 20px 0 0px 0;
  color: #009eaf;
  /* border-bottom: 1px solid #009eaf; */
  padding-bottom: 0px;
}

h4.sub {
  font-size: 16px;
  margin: 0px 0 0px 0;
  color: #000;
  /* border-bottom: 1px solid #009eaf; */
  padding-bottom: 0px;
}

.food_list {}

.food_list ul {
  display: flex;
  flex-wrap: wrap;
}

.food_list ul li {
  width: 33.33%;
  text-align: center;
  box-sizing: border-box;
}

.food_list.food_list01 ul li {
  width: 50%;
}

.food_list ul li .foodImg img {
  max-width: 100%;
}

.food_list ul li .prdtName_k {
  border-bottom: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  padding: 2px 0;
  margin: 2px 0;
  font-size: 16px;
  color: #000000;
  display: block;
  width: 90%;
  margin: 10px auto 0;
}

.food_list ul li .prdtName_e {
  padding: 0px 0;
  margin: 2px 0 0 0;
  font-size: 12px;
  color: #000000;
  display: block;
  line-height: 18px;
}

.food_list ul li .prdt_price {
  font-size: 18px;
  color: #E70003;
  font-family: "Century Gothic";
  display: block;
  padding: 0 0 10px 0;
}

/* 마이페이지 */
.mypage_wrap {
  margin-top: 50px;
}

.mypage_wrap h2 {
  display: block;
  font-size: 13px;
  font-weight: 200;
  line-height: 19px;
  text-align: left;
  padding-bottom: 3%;
  border-bottom: 1px solid #999;
  padding-top: 0;
  margin-top: 10px;
}

.mypage_wrap .mypage_tit {
  display: flex;
}

.mypage_wrap .mypage_tit p {
  font-size: 20px;
  font-weight: 600;
  line-height: 31px;
}

.mypage_wrap .mypage_tit span {
  display: inline-block;
}

.mypage_wrap .mypage_tit button {
  color: #fff;
  background: #1e769e;
  border-radius: 3px;
  padding: 5px;
  margin-left: 10px;
}

.mypage_wrap .mypage_info {
  margin-top: 10px;
}

.mypage_wrap .mypage_link {
  display: flex;
  margin: 30px 0;
}

.mypage_wrap .mypage_link a {
  flex: 1;
  height: 100px;
  line-height: 100px;
  background: #f4f4f4;
  text-align: center;
  margin-left: 10px;
}

.mypage_wrap .mypage_link a:first-child {
  margin-left: 0;
}

.mypage_wrap .mypage_link a img {
  vertical-align: middle;
}

.mypage_wrap .mypage_info ul {
  display: flex;
}

.mypage_wrap .mypage_info ul li {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  margin-left: 10px;
}

.mypage_wrap .mypage_info ul li:first-child {
  margin-left: 0;
}

.mypage_wrap .mypage_info ul li .info_dt {
  font-weight: 600;
}

.mypage_wrap .recent_list {
  margin-top: 20px;
}

.mypage_wrap .recent_list .recent_list_tit {
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 20px;
  font-weight: 600;
}

.mypage_wrap .recent_list table {}

.mypage_wrap .recent_list table thead {}

.mypage_wrap .recent_list table thead tr {
  height: 40px;
  border: solid #000;
  border-width: 2px 0 2px 0;
}

.mypage_wrap .recent_list table thead th {
  text-align: center;
}

.mypage_wrap .recent_list table tbody tr {
  height: 40px;
}

.mypage_wrap .recent_list table tbody td {
  text-align: center;
}

.mypage_wrap .recent_list table tbody td.total {
  font-weight: 600;
}

.mypage_wrap .pop_barcode {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 200px;
  text-align: center;
  background: #fff;
  margin-left: -150px;
  margin-top: -100px;
  padding: 10px;
  box-sizing: border-box;
}

.mypage_wrap .pop_barcode .pop_barcode_time {}

.mypage_wrap .pop_barcode .pop_barcode_time span {
  color: red
}

.mypage_wrap .pop_barcode .pop_barcode_time .time {
  color: #000;
  font-weight: 600;
}

.mypage_wrap .input_s3 {
  width: 80%;
}

.find_tab {
  display: block;
  width: 100%;
  border-bottom: 2px solid #262161;
  margin-bottom: 20px;
}

.find_tab:after {
  display: block;
  clear: both;
  content: "";
}

.find_tab ul li {
  float: left;
}

.find_tab li {
  display: inline-block;
  background-color: #f9f9f9;
  color: #666666;
  font-size: 16px;
  height: 46px;
  line-height: 46px;
  text-align: center;
}

.find_tab li.round {
  width: 50%;
  cursor: pointer;
}

.find_tab li.on {
  background-color: #262161;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

.my_cash_box {
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(to left, #8CD1F4, #1e769e 75%);
  border-radius: 8px;
}

.my_cash_box .my_cash_num {
  color: #fff;
  font-size: 16px;
  float: left;
}

.my_cash_box .my_cash_num .cash_won {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  padding: 4px 0;
}

.my_cash_box .my_cash_num .recharge {
  display: inline-block;
  padding: 4px 12px;
  background: #fff;
  font-weight: 500;
  color: #6a7f8c;
  font-size: 13px;
  border-radius: 14px;
  margin-top: 4%;
}

.my_cash_box .cs_box {
  text-align: center;
}

.my_cash_box .cs_box .cs_num {
  display: block;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding-top: 6px;
}

.my_cash_box .my_cash_bg {
  float: right;
  width: 20%;
}

.my_cash_box .my_cash_bg img {
  width: 60%;
}

.my_cash_st1 td,
.my_cash_st1 th {
  padding: 8px;
  font-size: 13px;
  color: #3c3c3c;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
}

.user_info_st1 .al_le_tit {
  text-align: left;
  font-size: 16px;
}

.user_info_st1 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 60%;
  margin: 10% auto;
}

.user_info_st1 td,
.user_info_st1 th {
  padding: 4px;
  height: 38px;
  vertical-align: middle;
}

.user_info_st1 select {
  width: 100%;
}

.sub_comen_st1 {
  width: 100%;
  padding: 16px 20px;
  line-height: 20px;
  font-size: 13px;
  font-weight: 200;
  position: relative;
}

.sub_comen_st2 {
  width: 100%;
  padding: 16px 0;
  line-height: 19px;
  font-size: 13px;
  font-weight: 200;
  position: relative;
  border-bottom: 1px solid #CCC;
}

.sub_comen_st3 {
  width: 100%;
  padding: 16px 0;
  line-height: 19px;
  font-size: 13px;
  font-weight: 300;
  position: relative;
  border-top: 1px solid #CCC;
}

.sub_comen_st4 {
  position: relative;
  width: 100%;
  padding: 24px 20px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 200;
  background: #FFFFD6;
}

.qnaUl {
  margin: 10px 0 20px 0px;
}

.qnaUl li.qtxt {
  background: url(../img/common/q.png) left 6px no-repeat;
  font-size: 16px;
  padding-left: 20px;
  color: #1E769E;
}

.qnaUl li.atxt {
  background: url(../img/common/a.png) left 6px no-repeat;
  font-size: 16px;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #000;
}

.qnaUl li.atxt span {
  color: #E70003;
}




.desc_box {
  background: #fbfbfb;
  padding: 20px;
}

.desc_box p {
  font-size: 20px;
}

/* 이용약관 */
.use_wrap {
  padding-top: 50px;
}

.use_wrap strong {
  font-weight: bold;
}

/* 게시판 리스트 */
.blist {
  position: relative;
  width: 100%;
}

.blist table {
  width: 100%;
  table-layout: fixed;
  border-top: 2px solid #666;
}

.blist table colgroup col:nth-child(1) {
  width: 8%;
}

.blist table colgroup col:nth-child(2) {
  width: auto;
}

.blist table colgroup col:nth-child(3) {
  width: 8%;
}

.blist table colgroup col:nth-child(4) {
  width: 8%;
}

.blist table colgroup col:nth-child(5) {
  width: 8%;
}

.blist table thead tr {
  padding: 0 20px;
  margin: 0 20px;
  overflow: hidden;
}

.blist table thead th {
  height: 50px;
  color: #6a6a6a;
  background: #fbfbfc;
  border-bottom: 1px solid #eaeaee;
  text-align: center;
  font-weight: normal;
  box-sizing: border-box;
}

.blist table tbody tr {
  width: 100%;
  margin-right: 20px;
  border-bottom: 1px solid #eaeaee;
}

.blist table tbody tr.on {
  background: #f6f6f6;
}

.blist table tbody tr.checked {
  background: #dbdbdb;
}

.blist table tbody td {
  height: 50px;
  color: #6a6a6a;
  text-align: center;
  vertical-align: middle;
  margin-left: 20px;
}

.blist table tbody td.title {
  text-align: left;
}

.blist table tbody td.title a {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* 게시판 쓰기*/
.bwrite {
  position: relative;
}

.bwrite table {
  width: 100%;
  line-height: 20px;
  border-top: 2px solid #666;
}

.bwrite table tbody tr {
  height: 50px;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  vertical-align: middle;
}

.bwrite table thead th,
.bwrite table tbody th {
  height: 50px;
  background: #fbfbfc;
  color: #6a6a6a;
  text-align: center;
  vertical-align: middle;
  font-weight: 800;
}

.bwrite table tbody td {
  height: 50px;
  color: #666;
  text-align: left;
  vertical-align: middle;
  padding: 10px;
  box-sizing: border-box;
}

.bwrite table tbody td.double {
  /*height:100px; */
}

.bwrite table tbody td.double input {
  margin-bottom: 10px;
}

.bwrite table tbody td.double a {
  margin-bottom: 10px;
}

.bwrite table tbody td.double input.none {
  margin-bottom: 0;
}

.bwrite table tbody td input {
  margin-right: 0px;
}

.bwrite table tbody td input [type="button"] {
  margin-left: 10px;
}

.bwrite table tbody td img {
  max-width: 800px;
  vertical-align: bottom;
  margin-top: 10px;
}

.bwrite table tbody td .img_list {
  height: 80px;
  margin: 10px 0 0 0;
}

.bwrite table tbody td .img_list li {
  position: relative;
  float: left;
  margin: 0 10px 10px 0;
}

.bwrite table tbody td .img_list li .delete_btn {
  position: absolute;
  top: 5px;
  right: 5px;
  float: left;
  margin: 0;
}

.bwrite table tbody td a.file_down {
  color: #666;
}

.bwrite table tbody td a.file_down:hover {
  color: #b9b9b9;
}

.bwrite table tbody td a.file_down:active {
  color: #494949;
}

.bwrite table tbody td>span {
  color: #666;
}

.bwrite table tbody td>span.password {
  color: #666;
  /*  padding-left:20px;  */
}

.bwrite table tbody td pre {
  color: #666;
  padding: 10px 0;
}

.bwrite input[type="text"] {
  /* min-width:295px; */
  width: 40%;
  border: 1px solid #eaeaee;
  color: #6a6a6a;
  height: 30px;
  padding-left: 10px;
  box-sizing: border-box;
  vertical-align: middle;
}

.bwrite input[type="text"].num {
  min-width: inherit;
  width: 100px;
  margin-right: 10px;
}

.bwrite input[type="text"].post {
  width: 100px;
}

.bwrite input[type="text"].small {
  width: 50% !important;
}

.bwrite input[type="text"].medium {
  width: 60% !important;
}

.bwrite input[type="text"].large {
  width: 80% !important;
}

.bwrite input[type="text"].width80 {
  width: 86%;
}

.bwrite input[type="password"] {
  /* min-width:295px; */
  width: 40%;
  color: #6a6a6a;
  height: 30px;
  border: 1px solid #eaeaee;
}

.bwrite input[type="file"] {
  min-width: 330px;
  height: 33px;
  color: #6a6a6a;
}

.bwrite input[type="checkbox"]:not(old)+label {
  margin: 0 20px 0 0;
}

.bwrite input[type="checkbox"]:not(old)+label>span {
  display: inline-block;
}

.bwrite select {
  /* width:400px; */
}

.bwrite select {
  /* float:left;  */
  height: 30px;
  padding: 0 30px 0 5px;
  border: 1px solid #eaeaee;
  font-size: 13px;
  /* vertical-align:middle; */
  color: #706a5f;
  display: inline;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  background: url('../img/select_arrow.gif') no-repeat 95% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bwrite select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.bwrite textarea {
  width: 94%;
  /* height:400px; */
  padding: 10px;
  border: 1px solid #eaeaee;
  color: #333;
  resize: none;
  /*margin:10px 0 5px;*/
}

.bwrite p {
  /*width:94%;*/
  width: 100%;
  color: #333;
  text-align: center;
  /* margin:10px 0 5px; padding:10px 0; */
}

.bwrite>a {
  margin-top: 37px;
}

/* 페이지 번호 */
.pagination {
  height: 26px;
  margin-top: 30px;
  font-size: 0;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  min-width: 30px;
  height: 26px;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  vertical-align: middle;
  color: #888;
}

.pagination a.first,
.pagination a.prev,
.pagination a.next,
.pagination a.last {
  display: inline-block;
  min-width: 21px;
  height: 26px;
  margin: 0 0 0 -1px;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  vertical-align: middle;
  color: #888;
}

.pagination a.prev {
  margin-right: 10px;
}

.pagination a.next {
  margin-left: 10px;
}

.pagination strong {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #1e769e;
  font-weight: 700;
  border: 1px solid #1e769e;
  vertical-align: middle;
  border-radius: 2px;
}

.pagination a img {
  vertical-align: top;
}

@media all and (max-width:1000px) {
  input.iptStyle {
    padding: 0 5px;
    height: 40px;
  }

  div.bigBtn a {
    width: auto;
    padding: 0 10px;
    margin: 0 5px;
  }

  ul.findTab li {
    width: 50%;
  }

  .reserve_wrap {
    flex-direction: column;
    padding-top: 20px;
  }

  .calendar_box {
    width: 100%;
    padding: 10px;
  }

  .reserve_box {
    width: 100%;
    padding: 0;
  }

  .bonus_box {
    width: 100%;
    padding: 0;
  }

  .news_wrap {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .story_wrap .story_list ul {
    flex-direction: column;
  }

  .story_wrap .story_list ul li {
    width: 100%;
    margin: 20px 0 0;
  }

  .story_wrap .story_list ul li:nth-child(2n) {
    margin: 20px 0 0;
  }

  .story_wrap .story_list ul li:first-child {
    margin-top: 0;
  }

  .photo_list ul li {
    width: 50%;
    margin-top: 10px;
  }

  .photo_list ul li .txt_area {
    padding: 10px;
  }

  .photo_list ul li .txt_area .tit {
    font-size: 14px;
    line-height: 18px;
    width: 100%;
  }

  .photo_list ul li .txt_area .txt {
    font-size: 10px;
    margin-top: 5px;
  }

  .location_wrap h2 {
    font-size: 20px;
  }

  .mypage_wrap {
    margin-top: 30px;
  }

  .mypage_wrap .mypage_tit p {
    font-size: 18px;
  }

  .mypage_wrap .mypage_info ul li p {
    font-size: 18px;
  }

  .mypage_wrap .recent_list table th,
  .mypage_wrap .recent_list table td {
    font-size: 12px;
  }

  .guide_wrap .guide_txt {
    padding: 20px;
  }

  .news_wrap .news_list ul {
    flex-direction: column;
  }

  .news_wrap .news_list ul li {
    width: 100%;
    margin: 20px 0 0;
  }

  .news_wrap .news_list ul li:nth-child(2n) {
    margin: 20px 0 0;
  }

  .board_view .board_view_info dl dt {
    font-size: 12px;
    line-height: initial;
  }

  .board_view .board_view_info dl dd {
    font-size: 12px;
    line-height: initial;
  }

  .blist table colgroup col:nth-child(1) {
    width: 12%;
  }

  .blist table colgroup col:nth-child(2) {
    width: auto;
  }

  .blist table colgroup col:nth-child(3) {
    width: 12%;
  }

  .blist table colgroup col:nth-child(4) {
    width: 18%;
  }

  .blist table colgroup col:nth-child(5) {
    width: 12%;
  }

  .blist table thead th,
  .blist table tbody td {
    height: 40px;
    font-size: 12px;
  }

  .bwrite table tbody th {
    font-size: 12px;
  }

  .bwrite table tbody td {
    font-size: 12px;
    padding: 10px;
  }

  .bwrite table tbody td img {
    max-width: 100%;
    width: 100%;
  }

  .my_cash_box .my_cash_bg img {
    width: 100%;
  }

  .user_info_st1 {
    width: 100%;
  }

  .food_list ul li {
    width: 50%;
    padding: 5px;
  }

  .food_list ul li .prdtName_k {
    font-size: 13px;
  }

  .food_list ul li .prdt_price {
    font-size: 13px;
  }
}
