@charset "utf-8";
/* 모바일 lang 폰트 font-family: 'Protest Strike', sans-serif !important */
@import url('https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap');
/* 일본어폰트 */
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Noto+Sans+JP:wght@100..900&display=swap');

body{
  font-size:15px;
  max-width:768px;
  margin:0 auto;
  font-family: 'Noto Sans KR', sans-serif;
}
:root {
  --whiteff: #fff;
  --whitef1: #f1f1f1;
  --graye6 : #e6e6e6;
  --black22: #222;
  --gray44: #444;
  --gray66: #666;
  --gray8e: #8e8e8e;
  --gray99: #999;
  --graydd: #ddd;
  --redec: #ec463d;
  --blue00: #004eff;
  --skyblue00: #0092e6;
  --surfcolor : #f47321;
  --yellowf3:#f3f302;
  --border-radius:5px;
  --border-radius-rem:.5rem;
  --border-style:1px solid #ddd;
  --border-style-black:1px solid #222;
}
.notScroll,
.not_scroll{
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
.mt5{
  margin-top:5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt70 {
  margin-top: 70px !important;
}

.mb5{
  margin-bottom: 5px !important; 
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}

.pt10 {
  padding-top: 10px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pt60{
  padding-top: 60px !important;
}
.pt70{
  padding-top: 70px !important;
}
.pb5{
  padding-bottom:5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pd20{
  padding:0 20px !important;
}
.pd30{
  padding:0 30px !important;
}
.border_top{
  border-top:1px solid #ddd;
}
.border_bottom{
  border-bottom:1px solid #ddd;
}
.sticky {
  position: sticky;
  top: 0;
  z-index: 3; /* 230509 5*/
}
.flex{
  display:flex !important;
}
.gap5{
  gap:5px !important;
}
.gap10{
  gap:10px !important;
}
.justify_center{
  justify-content: center !important;
}
.space_between{
  justify-content: space-between !important;
}
.align_center{
  align-items: center !important;
}
.center{
  text-align: center !important;
}

.black_bg{
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  z-index:10;
}

.jp_font{
  font-family: 'Noto Sans JP', sans-serif !important;
}

#header{
  position:relative;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  background:#fff;
  /* box-shadow: 0 0 4px rgba(0,0,0,.1); */
  box-shadow:none;
}
#header.sticky{
  position:sticky;
  top:0;
}
#header h1{
  width:250px;
  background:var(--whiteff);
  margin-top:30px;
  text-align: center;
  transition: .5s;
  z-index: 8;
}
#header h1 img{
  width:100%;
  display: block;;
}
#header h2{
  display: block;;
  font-size:20px;
  font-weight:700;
  color:var(--black222);
  height: auto;
  line-height: 1.2;
  width:calc(100% - 60px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
#header .close_button{
  width:30px;
  height:24px;
  background:url(../images/ico-close-thin.svg) center no-repeat;
  padding:0;
}
.headName{
  display:none !important;
}
.headName.show{
  display:flex !important;
}

#header ul{
  display:flex;
  align-items: center;
}
#header ul li{
  line-height: 30px;;
  text-align:center;
  padding:0px;
}
#header ul li i{
  width:22px;
  height:22px;
  display: block;;
}
#header ul li.star i{
  background:url(../images/ic_star.svg) center no-repeat;
  background-size:20px;
}
#header ul li.zoom i{
  background:url(../images/ic_search_black.svg) center no-repeat;
  background-size:27px;
}
#header ul li.Mobile_menu i{
  background:url(../images/ic_menu_bar.svg) center no-repeat;
  background-size:22px;
  width:18px;
}
#header ul li svg{
  font-size:20px;
  color:var(--black22);
  transition: .5s;
  cursor: pointer;
}
#header ul li.close_menu{
  width:23px;
}
#header ul li.close_menu span{
  width:100%;
  height:1px;
  background:var(--black22);
}
#header ul li.close_menu span:first-child{
  transform: rotate(-45deg);
}
#header ul li.close_menu span:last-child{
  transform: rotate(45deg);
}

#header h1.active,
#header h1.menuOpen{
  width:140px;
  margin-top:0;
  margin-left:0px;
}

#haeder .profile_img{

}

.Mobile_menu.hidden{
  display:none;
}

#header .profile_img{
  cursor: pointer;
  width:30px;
  height:30px;
  background:#f5f5f5 url("../images/ic_user.png?v=3") no-repeat 50% 41%;
  background-size:30px;
  border-radius: 50%;
  border:1px solid var(--graydd);
  box-sizing: border-box;
}
#header .profile_img a{
  display:block;
  height:100%;
}
#header .profile_img.noProfile{
  border:0;
}
#header .profile_img.noProfile img{
  border:1px solid var(--graydd);
}
#header .profile_img img{
  display: block;
  width:30px;
  height:30px;
  border-radius: 50%;
  object-fit: cover;
}

.m_menuslide {
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  position: fixed;
  right: -100%;
  z-index: 9;
  transition: 0.6s;
  touch-action: pan-y;
  overflow-y: scroll;
}
.m_menuslide + .black_bg {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}
.m_menuslide.on + .black_bg {
  display: block;
}
.m_menuslide.on {
  right: 0;
}
.m_menuslide .m_logo {
  width: 100%;
  height: 65px;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.m_menuslide .m_logo img {
  width: 120px;
}
.m_menuslide .m_logo h1 a{
  color: var(--surfcolor);
  font-weight: 600;;
}
.m_menuslide .m_logo h1 {
  display: flex;
  align-items: center;
  font-size: 20px;
  width: calc(100% - 60px);
  /* width: calc(100% - 140px); */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 25px;
  margin-top: 0px;
  line-height: 1.2;
  font-weight: 700;
}
.m_menuslide .m_logo span {
  width: 20px;
  height: 20px;
  background: url(../images/ico-close-thin.svg) no-repeat;
  background-size: 20px;
  margin: 12px 0px 12px 10px;
  position: absolute;
  right: 10px;
}

.m_menuslide.on .m_logo {
  position: fixed;
}
.m_menuslide.on .m_logo span {
  position: fixed;
  right: 10px;
}





.lang_hamberger{
  display: flex;
  align-items: center;
  margin-right:20px;;
}
.lang_hamberger .lang{
  font-size: 18px;
  font-weight: 400;;
}

#titleArea{
  width:100%;
  text-align: center;
  position:relative;
}
#titleArea h3{
  font-weight: 500;
  font-size:19px;
}
#titleArea a{
  width:25px;
  height:25px;
  background:url(../images/ic_arrow_left_gray.svg) center no-repeat;
  background-size:20px;
  position:absolute;
  left:0px;
  top:0px;
}
  

.member_info {
  position: relative;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}
.member_info .profile_img {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  background: #f5f5f5 url("../images/ic_user.svg?v=3") no-repeat 50% 41%;
  background-size:cover;
  box-sizing: border-box;
  margin: 0 auto 12px;
  overflow: hidden;
}
.member_info .profile_img a{
  width:50px;
  height: 50px;
  display:block;;
}
.member_info .profile_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height:100%;
  object-fit: cover;
}
.member_info .info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.member_info .info p {
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 7px;
}



 /* 언어설정 */
 .lang_pop{
  width:100%;
  max-width:360px;
  padding:25px;
  border-radius:var(--border-radius);
  background:#fff;
  box-shadow: 0px 3px 20px rgb(0,0,0,0.15);
  position:fixed;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index: 5;
 }
 .lang_pop span.close{
  display:block;
  width:30px;
  height:30px;
  background:url(../images/ico-close-white.svg) center no-repeat;
  background-size:80%;
  position:absolute;
  left:50%;
  top:-40px;
  transform: translateX(-50%);
 }
 .lang_pop h3{
  font-size:16px;
  color:var(--black22);
  font-weight: 600;
  padding-bottom:6px;
  border-bottom:var(--border-style);
  margin-bottom:20px;
 }
 .lang_pop .radio_chk li{
  margin:8px 0;
  text-align: center;
 }
 .lang_pop .radio_chk li input[type="radio"]+label{
  background:none;
  padding-left:0;
  font-weight: 500;
  font-size:16px;;
 }
 .lang_pop .radio_chk li input[type="radio"]:checked+label{
  background:none;
  color: var(--redec);
 }
.lang_select{
	position:relative;
	text-align: left;
	margin-bottom:20px;;
}
.lang_select .lang_five{
	position:fixed;
	top:50%;
	left:50%;
	width:250px;
	background:#fff;
	z-index: 15;
	border-radius: 20px;
	padding:0;
	transform: translate(-50%, -50%);
}
.lang_select .lang_five span.close{
	width:30px;
	height:30px;
 background:url(../images/ico-close-white-thin.svg) center no-repeat;
	background:none;
	background-size:80%;
	position:absolute;
	top:-40px;
	left:50%;
	transform: translateX(-50%);
}
.lang_select .lang_five span.close:before{
	content:"";
	width:100%;
	height:1px;
	background:var(--whiteff);
	transform: rotate(-45deg);
	position:absolute;
	left:0;
	bottom: 10px;
}
.lang_select .lang_five span.close:after{
	content:"";
	width:100%;
	height:1px;
	background:var(--whiteff);
	transform: rotate(45deg);
	position:absolute;
	right:0;
	bottom: 10px;
}

.lang_select .lang_five div.box{
	padding:10px 0;
}
.lang_select .lang_five button{
	font-size:17px;
	width:100%;
	display:block;
	font-weight: 400;
	margin:2px 0;;
	color: var(--gray44);
}
.lang_select .lang_five button.active{
	color:var(--redec)
}


.btn.allViewBtn{
  padding:0px;
  background:none;
  color:var(--whiteff);
  font-size:14px;
  position:absolute;
  bottom:10px;
  right:20px;
  z-index: 9999;
  width: 65px;
  height:30px;;
}
.btn.allViewBtn:after{
  content:"";
  width:100%;
  height:1px;
  background:var(--whiteff);
  position:absolute;
  bottom:-1px;
  left:0;
}




/* 사이드메뉴 */

#side{
  padding:30px 40px;
  background:var(--whiteff);
  overflow: hidden;
  transition: .5s;
  width:100%;
  max-width:768px;;
  overflow: hidden;
  z-index: 4;;
  height: calc(100vh - 80px);
  position:fixed;
  top:-100%;
  opacity: 0;
}
#side.active{
  height: calc(100vh - 80px);
  opacity: 1;
  top:80px;
}
#side h3,
.surfLineTitle{
  font-size:20px;
  font-weight: 500;
  text-align: center;
  position:relative;
  text-transform: uppercase;
}
#side h3:before,
.surfLineTitle:before{
  content:"";
  display:block;
  width:70%;;
  max-width:600px;
  height:1px;
  background:var(--surfcolor);  
  position:absolute;
  bottom:0;
  left:50%;
  transform: translateX(-50%); 
}
#side ul.m_menu li{
  border-bottom:var(--border-style-black);
  background:url(../images/arrow-right.svg) 97% center no-repeat;
  background-size:9px;
  padding:10px 0;
}

#side ul.m_menu li:last-of-type{
  border-bottom:0;
}
.area_map_menu li a,
#side ul.m_menu li a{
  text-transform: uppercase;
  font-size:16px;
  font-weight: 500;
  color: var(--black22);
  line-height: 35px;
  display: block;;
}
.area_map_menu {
  margin-top:20px;
  border-top:1px solid var(--graydd);
}
.area_map_menu li{
  border-bottom:1px solid var(--graydd);
  background:url(../images/arrow-right.svg) calc(100% - 20px) center no-repeat;
  background-size:9px;
  padding:10px 0;
}
.area_map_menu li a{
  font-size:15px;
  padding:0 20px;
}


#side .lang{
  width:100%;
  background:url(../images/ic-website-black.svg) left center no-repeat;
  background-size:20px;
  color:var(--black22);
  padding:10px 0 10px 30px;
  border-bottom:var(--border-style-black);
  
}
#side .lang p{
  font-family: 'Protest Strike', sans-serif !important;
  background:url(../images/arrow-right.svg) 97% center no-repeat;
  background-size:9px;
  font-size:20px;
}
.title_bar{
  font-size:20px;
  font-weight: 600;
  color: var(--black22);
  text-align: center;
  text-transform: uppercase;
  position:relative;
}
.title_bar:after{
content:"";
display:block;
width:70%;
max-width: 600px;
height: 1px;
background:var(--surfcolor);
position:absolute;
bottom:0;
left:50%;
transform: translateX(-50%);
}
#footer{
  width:100%;
  height:auto;
  padding:50px 0;
  text-align: center;
  background:var(--whitef1);
}
#footer > img{
  width:80px;
}
#footer h4{
  font-size:14px;
  font-weight: 600;
  color: var(--gray44);
}
#footer p{
  font-size:13px;
  color:var(--gray66);
}




/* 검색창 */


.search_box{
  width:100%;
  background:var(--black22);
  padding:20px;
}
.search_box dl{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}
.search_box dl dt{
  width:35px;
  height:35px;
  border:1px solid var(--whiteff);
  text-align: center;

}
.search_box dl dt svg{
  color:var(--whiteff);
  font-size:16px;
  margin-top:8px;
}
.search_box dl dd{
  display:flex;
  width: calc(100% - 45px);
  gap:5px;
}
.search_box dl dd select{
  flex:1;
  height:35px;
  width:100%;
  border:var(--border-style);
  background:#fff url('../images/arrow-down.svg') no-repeat 97% 50% / 10px;
}

.in_search_btn{
  width:100%;
  padding-left:45px;
}
.in_search_btn button{
  padding:5px 0;
  width:100%;
  height:35px;
  color:var(--whiteff);
  font-size:15px;
  font-weight: 400;
}
.in_search_btn button.line{
  border:1px solid var(--whiteff);
}

/* range */
.double_slider_box{
  width:100%;
}
.range_slider{
  position:relative;
  width:100%;
  height:5px;
  margin:35px 0 22px;
  background:#8e8e8e;
}
.slider-track{
  height:100%;
  position:absolute;
  background:var(--surfcolor);
}
.range_slider input{
  position:absolute;
  width:100%;
  background:none;
  pointer-events: none;
  top:50%;
  transform: translateY(-50%);
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
  height:25px;
  width:25px;
  border-radius: 50%;
  border:3px solid var(--whiteff);
  background:var(--whiteff);
  pointer-events: auto;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 .125rem .5625rem -0.125rem rgba(0,0,0,.3);
}
input[type="range"]::-moz-range-thumb{
  height:25px;
  width:25px;
  border-radius: 50%;
  border:3px solid var(--whiteff);
  background:var(--whiteff);
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 0 .125rem .5625rem -0.125rem rgba(0,0,0,.3);
}
.tooltip{
  padding:.25rem .5rem;
  border:0;
  background:var(--gray44);
  color:var(--whiteff);
  font-size:.75rem;
  line-height: 1.2;
  border-radius: 10%;
  display:block;
  position:absolute;
  text-align: center;
  white-space: nowrap;
}
.min-tooltip{
  left:50%;
  transform: translate(-50%, -100%);
  top:-10px;
}
.max-tooltip{
  top:-10px;
  right:50%;
  transform: translate(-50%, -100%);
}
.input-box{
  display:flex;
}
.min-box,
.max-box{
  width:50%;
}
.min-box{
  margin-right:.5rem;
}
.input-wrap{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  align-items: stretch;
  width:100%;;
}
.input-addon{
  display:flex;
  align-items: center;
  padding:.3rem 1rem;
  font-size:.9375rem;
  font-weight: 400;
  line-height:1.5;
  color:var(--gray44);
  text-align: center;
  white-space: nowrap;
  background:var(--whiteff);
  border:1px solid var(--whiteff);
}
.input-field{
  margin-left:-1px;
  padding:.425rem .75rem;
  font-size:0.8125rem;
  border-radius: .25rem;
  position:relative;
  flex:1 1 auto;
  width: 1%;
  min-width:0;
  color:var(--black22);
  border:1px solid #ddd;
  background-clip:padding-box;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.input-field:focus{
  outline:none;
}

/* //검색창 */




.box_wrap{
  padding:0 20px;
}

#scontainer{
  width:100%;
  padding:0 20px;
}
#scontainer.topArea{
  padding-top:20px;
}
#sub_container{
  padding-top:0px;
  min-height:700px;
}
.restaurant{
  min-height:600px;
}
.cal_wrap .cal_nav .year_month p{
  margin:7px 10px 0 0;
}

/* 팝업 */
.pop {
  width: 80%;
  max-width:700px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 11;
}
.pop h3 {
  font-size: 16px;
  color: #494949;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.pop h4{
  font-weight: 600;
  font-size:18px;
  margin-bottom:10px;
  padding-bottom:2px;
  text-align: center;
}
.pop span.close {
  width: 30px;
  height: 30px;
  background: url(../images/ico-close-white.svg) center no-repeat;
  background-size: 25px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: 1001;
}
.scroll{
  overflow-y: scroll;
  height:100%;
  max-height: 400px;
  padding-bottom:50px;;
}
.mini_scroll{
  overflow-y: scroll;
  height:100%;
  max-height: 250px;
}

.AlertMent{
  text-align: center;
}
.AlertMent p{
  font-size:14px;
  line-height:1.5;
  color: var(--gray66);
}
.AlertMent .radio_chk_half{
  width:250px;
  margin:auto;
}
/* 검색버튼 */
.btn_box{
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:20px 0 0;
}
.btn_box button{
  padding:8px 20px;
  color:#fff;
  font-size:14px;
  border-radius: 4px;;
}
.btn_box button.search_btn{
  background:var(--surfcolor);
}


/* 라디오버튼 */
.radio_chk {
  display:flex;
  flex-wrap: wrap;
}
.radio_chk li{
  width:100%;
}
.radio_chk.half li{
  width:50%;
}
.radio_chk li input[type="radio"]{
  display:none;
}
.radio_chk li input[type="radio"] + label{
  height:25px;
  line-height:25px;
  font-size:14px;
  background:url("../images/radio.svg") left center no-repeat;
  background-size:15px;
  padding-left:23px;
}
.radio_chk li input[type="radio"]:checked + label{
  background:url("../images/radio_on.svg") left center no-repeat;
  background-size:15px;
  /* color: #ff6600; */
}


/* 체크박스 */
.chk_list_half input[type="checkbox"],
.chk_list input[type="checkbox"]{
  display:none;
}
.chk_list_half input[type="checkbox"] + label,
.chk_list input[type="checkbox"] + label{
  padding-left:22px;
  background:url(../images/chk1_bg.svg) left 4px no-repeat;
  background-size:15px;
  font-size:14px;
  display:inline-block;
}
.chk_list_half input[type="checkbox"]:checked + label,
.chk_list input[type="checkbox"]:checked + label{
  background:url(../images/chk1_bg_on.svg) left 4px no-repeat;
  background-size:15px;
}


.detailSetPop .chk_list_half,
.detailSetPop .chk_list {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.detailSetPop .chk_list li,
.detailSetPop3_sub .radio_chk li{
  width:auto;
  margin-bottom:0 !important;
}
.detailSetPop .chk_list_half li{
  width:calc(50% - 5px);
}








.pop .scroll_ment{
  font-size:12px;
  color: var(--gray66);
  text-align: right;
}


@media (width <= 480px){
  #header h1{
    width:220px;
  }

    /* 팝업 */
  .pop {
    width: 90%;
    padding: 20px;
  }

}