@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
@font-face {
  font-family: 'Jalnan';
  src: url('../fonts/Jalnan.ttf') format('tff');
  src: url('../fonts/JalnanOTF.otf') format('off');
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Noto Sans', sans-serif;
}
a { text-decoration: none; color: #000;}
li { list-style: none;}
h1, h2, h3, h4, h5, h6 , p { margin: 0;}
input:focus {outline: none;}


.content {
  margin: 0 110px;
}

.content-wrap {
  max-width: 993px;
  margin: 0 auto;
}

.open-side {
  display: none;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  background-color: #008C41;
  overflow-x: hidden;
  transition: 0.5s;
  text-align:center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sidenav a {
  padding: 4px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: color 0.3s;

}
.sidenav a:hover{
  color: #f1f1f1;
  font-weight: 600;
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all .5s;
  background: #006A3F;
  color: #fff;
  padding: 22px 50px;
  box-sizing: border-box;
}
header .header-wrap {
  max-width: 993px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
header.down {
  background: #000;
}
header .logo {
  font-family: 'Jalnan';
  cursor: pointer;
}
header .logo h1 {
  font-size: 21px;
}
header .logo img {
  width: 100%;
}
header .logo a {
  display: flex;
  align-items: center;
}
header .nav {
  display: flex;
  gap: 40px;
}
header .nav form .form-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .nav form .form-grid .search-close {
  position: absolute;
  right: 5px;
  display: none;
  font-size: 30px;
  top: -9px;
  cursor: pointer;
}
header .nav input {
  border: none;
  border-bottom: 1px solid #fff;
  /* padding: 6px 15px; */
  box-sizing: border-box;
  color: #fff;
  background-color: transparent;
  width: 0;
  opacity: 0;
}
header .nav input::placeholder {
  color: #fff;
  font-size: 16px;
}
header .nav a {
  font-size: 18px;
  position: relative;
  transition: all .5s;
  color: #fff;
  font-family: 'Pretendard-Regular';
  transition: all .5s;
}
header .nav a:hover {
  color: #ffee89;
}
header .nav a .line {
  display: none;
}
header .nav a .line.active {
  display: block;
  position: absolute;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: #C2C2C2;
}

.modal_wrap {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.modal_wrap.active {
  display: block;
}

.modal_wrap .modal_dim {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, .5);
}

.modal_wrap .modal_cnt {
  position: relative;
  max-width: 700px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 100%;
  margin: 0 auto;
  ;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  border-radius: 4px;
}

.modal_wrap .modal_cnt .close_btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url('../img/btn_colse.png') no-repeat 0 0;
  background-size: 100% 100%;
  text-indent: -99999px;
}

.modal_wrap .modal_cnt .modal_header {
  border-radius: 8px;
  padding: 17px 29px;
  box-sizing: border-box;
  background-color: #FAFAFA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.modal_wrap .modal_cnt .modal_header .title {
  align-self: flex-end;
}
.modal_wrap .modal_cnt .modal_header .title p {
  font-size: 13px;
  color: #878787;
}
.modal_wrap .modal_cnt .modal_header .title h4 {
  font-size: 16px;
  color: #464646;
}
.modal_wrap .modal_cnt .modal_header .img-wrap {
  width: 45px;
}
.modal_wrap .modal_cnt .modal_header .img-wrap img {
  width: 100%;
}
.modal_wrap#Calendar .modal_cnt,
.modal_wrap#Location .modal_cnt {
  max-width: 480px;
}
.modal_wrap#Calendar .modal_cnt .modal_body,
.modal_wrap#Location .modal_cnt .modal_body {
  padding: 27px 37px 20px;
  box-sizing: border-box;
}
.modal_wrap#Calendar .modal_cnt .modal_body .date-area {
  display: flex;
  justify-content: space-between;
  padding: 20px 15px;
  box-sizing: border-box;
  border: 1px solid #006A3F;
  color: #006A3F;
  font-weight: 600;
  margin: 30px auto;
  border-radius: 10px;
}
.modal_wrap#Calendar .modal_cnt .modal_body .date-area p {
  font-size: 18px;
}
.modal_wrap#Calendar #StartInput,
.modal_wrap#Calendar #EndInput {
  visibility: hidden;
  position: absolute;
}
.modal_wrap#Calendar .btn-search,
.modal_wrap#Location .btn-search {
  padding: 10px;
  color: #006A3F;
  border: 1px solid #006A3F;
  background: #fff;
  border-radius: 10px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all .5s;
}
.modal_wrap#Calendar .btn-search:hover,
.modal_wrap#Location .btn-search:hover {
  color: #fff;
  background-color: #006A3F;
}

.modal_wrap#Location .modal_cnt .modal_body {
  max-width: 768px;
}
.modal_wrap#Location .city {
  margin: 30px auto;
}
.modal_wrap#Location .city-wrap {
  background: #FFFFFF;
  border: 1px solid #D2D2D2;
  box-sizing: border-box;
  padding: 17px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
}
.modal_wrap#Location .city-wrap span {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}
.modal_wrap#Location .states .city-wrap span {
  font-size: 16px;
  font-weight: 400;
}
.modal_wrap#Location .states .city-wrap span.active {
  color: #006A3F;
  padding: 2px 10px;
  box-sizing: border-box;
  border: 1px solid #006A3F;
  border-radius: 5px;
}
.modal_wrap#Location .city-wrap span.active {
  color: #006A3F;
}

.modal_wrap .modal_cnt .modal_body {
  position: relative;
  padding: 80px 30px 50px;
  max-width: 450px;
  margin: 0 auto;
  box-sizing: border-box;
}

.modal_wrap .modal_cnt .modal_body .social-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-top: 50px;
}
.modal_wrap .modal_cnt .modal_body .form-wrap {
  width: 100%;
  padding: 40px 0;
}
.modal_wrap .modal_cnt .modal_body .form-wrap input {
  width: 100%;
  border: 1px solid #C2C2C2;
  padding: 15px 25px;
  box-sizing: border-box;
  font-size: 18px;
  margin: 10px 0;
  border-radius: 6px;
}
.modal_wrap .modal_cnt .modal_body .form-wrap .btn-submit {
  width: 100%;
  border: 1px solid #006A3F;
  background-color: #006A3F;
  cursor: pointer;
  color: #fff;
  padding: 15px 25px;
  box-sizing: border-box;
  font-size: 20px;
  margin: 10px 0;
  border-radius: 6px;
  transition: all .5s;
}
.modal_wrap .modal_cnt .modal_body .form-wrap .btn-submit:hover {
  background-color: #006A3F;
}
.modal_wrap .modal_cnt .modal_body .form-wrap .search-password {
  display: block;
  text-align: center;
  color: #008C41;
}

.modal_wrap .modal_cnt .modal_body .form-wrap .non-member {
  display: block;
  text-align: center;  
  margin: auto;
}

.modal_wrap .modal_cnt .modal_body .form-wrap span .reservation-details {
  text-align: center;
  text-decoration: underline;
  color: #008C41;
}

.modal_wrap .modal_cnt .modal_body .social-wrap .img-wrap {
  width: 50px;
  height: 50px;
}

.modal_wrap .modal_cnt .modal_body .social-wrap .img-wrap img {
  width: 100%;
}

.modal_wrap .modal_cnt .modal_body .line {
  margin: 25px auto 20px;
  max-width: 400px;
  width: 100%;
  background-color: #696969;
  height: 3px;
}

.modal_wrap .modal_cnt .modal_body h3 {
  font-size: 32px;
  letter-spacing: 0.01em;
  font-family: "Jalnan";
  color: #006A3F;
  text-align: center;
  font-weight: 900;
}
.modal_wrap .modal_cnt .modal_body .policy-content {
  margin-top: 60px;
}
.modal_wrap .modal_cnt .modal_body .policy-content p {
  font-size: 27px;
  margin: 10px 0;
}
.modal_wrap .modal_cnt .modal_body .policy-content p span {
  color: #1A32C6;
  font-weight: 600;
  margin-right: 15px;
}

.modal_wrap .modal_cnt .modal_body .password-wrap {
  width: 80%;
  margin-top: 40px;
}
.modal_wrap .modal_cnt .modal_body .password-wrap input {
  padding: 10px 20px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #c2c2c2;
  font-size: 17px;
}
.modal_wrap .modal_cnt .modal_body .password-wrap .btn-submit {
  padding: 10px 0;
  width: 100%;
  color: #1A32C6;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #1A32C6;
  transition: all .5s;
  font-size: 17px;
  margin-top: 20px;
  cursor: pointer;
}
.modal_wrap .modal_cnt .modal_body .password-wrap .btn-submit:hover {
  background-color: #1A32C6;
  color: #fff;
}


.modal_wrap .modal_cnt .modal_body div img {
  width: 100%;
}

.fake_sjwidth {
  overflow: scroll;
  position: absolute;
  top: -99999px;
  width: 60px;
  height: 60px;
}

/* .title-header */
.title-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 130px 50px 20px;
}
.title-header .img-wrap {
  width: 35px;
}
.title-header .img-wrap img {
  width: 100%;
}
.title-header h1 {
  font-size: 28px;
  font-family: "Jalnan";
  color: #006A3F;
}

/* footer */
footer {
  width: 100%;
  background: #F8F8F8;
  font-size: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 50px;
  font-family: 'Pretendard-Regular';
}
footer .footer-wrap {
  box-sizing: border-box;
  width: 100%;
}
footer .footer-wrap .logo-wrap h2 {
  font-size: 24px;
  margin-bottom: 23px;
  color: #006A3F;
  font-family: "Jalnan";
  cursor: pointer;
}
footer .footer-wrap .footer-info p {
  color: #4E4E4E;
  font-size: 14px;
  font-family: 'NanumSquare';
  margin: 5px 0;
}
footer .footer-wrap .footer-info p span {
  font-weight: 700;
}
footer .operating-regulations a {
  color: #4E4E4E;
  font-size: 16px;
  font-family: 'NanumSquare';
  margin: 5px 0;
  font-weight: bold;
}
footer .operating-regulations .contents:hover {
  color: #006A3F;
}

@media all and (max-width:768px) {
  header {
    padding: 16px 25px;
  }
  .title-header {
    padding: 90px 25px 20px;
  }
  header .logo h1 {
    font-size: 16px;
  }
  header .nav {
    gap: 10px;
    align-items: center;
  }
  header .nav a {
    font-size: 16px;
  }
  header .nav .material-icons-outlined {
    font-size: 16px;
    align-self: flex-end;
  }

  .modal_wrap .modal_cnt {
    width: 90%;
  }
}
@media all and (max-width:400px) {
  header .logo h1 {
    font-size: 13px;
  }
  header .nav a {
    font-size: 12px;
  }
  .title-header h1 {
    font-size: 25px;
  }
  .title-header .img-wrap {
    width: 30px;
  }
}