html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  color: #333;
  -webkit-text-size-adjust: 100%;
}

#wrap {
  font-size: 14px;
}

a {
  color: #333;
}
a:visited, a:focus, a:active {
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.inner {
  width: 1152px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 601px) and (max-width: 1151px) {
  .inner {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  .inner {
    width: 90%;
  }
}

@media only screen and (min-width: 1152px) {
  .flL {
    float: left;
  }

  .flR {
    float: right;
  }

  .hoverOpacity {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -ms-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .hoverOpacity:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }

  .pcH {
    display: none !important;
  }
}
@media only screen and (max-width: 1151px) {
  .spTabH {
    display: none !important;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1151px) {
  .tabH {
    display: none !important;
  }
}
@media only screen and (max-width: 600px) {
  .spH {
    display: none !important;
  }
}
.alignL {
  text-align: left;
}

.alignC {
  text-align: center;
}

.alignR {
  text-align: right;
}

@media only screen and (min-width: 601px) and (max-width: 1151px) {
  .tabAlignL {
    text-align: left;
  }

  .tabAlignC {
    text-align: center;
  }

  .tabAlignR {
    text-align: right;
  }
}
@media only screen and (max-width: 600px) {
  .spAlignL {
    text-align: left;
  }

  .spAlignC {
    text-align: center;
  }

  .spAlignR {
    text-align: right;
  }
}
.required {
  color: #c00;
  font-size: 10px;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.tabBox {
  width: 100%;
  display: none;
}
.tabBox.active {
  display: block;
}

body.active {
  height: 100%;
  position: fixed;
  width: 100%;
  overflow: hidden;
}
body.reserveactive {
  height: 100%;
  position: fixed;
  width: 100%;
  overflow: hidden;
}
body.reserveactive #header #globalNavBtnWrap {
  z-index: 0;
}

#header {
  background-color: #575757;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: relative;
  z-index: 100;
}
#header .logo img {
  width: 180px;
}
#header #globalNavBtnWrap {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 300;
}
#header #globalNavBtnWrap #globalNavBtn {
  height: 60px;
  width: 60px;
}
#header #globalNavBtnWrap #globalNavBtn a {
  height: 60px;
  width: 60px;
  display: flex;
  background-color: #5d5d5d;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}
#header #globalNavBtnWrap #globalNavBtn a .navWraP {
  width: 26px;
  height: 15px;
  position: relative;
}
#header #globalNavBtnWrap #globalNavBtn a .navWraP span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all .2s ease-in;
  opacity: 1;
}
#header #globalNavBtnWrap #globalNavBtn a .navWraP:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 0;
  left: 0;
  position: absolute;
  transition: all .2s ease-in;
}
#header #globalNavBtnWrap #globalNavBtn a .navWraP:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all .2s ease-in;
}
#header #globalNavBtnWrap #globalNavBtn.active a {
  background-color: rgba(255, 255, 255, 0);
}
#header #globalNavBtnWrap #globalNavBtn.active a .navWraP span {
  opacity: 0;
}
#header #globalNavBtnWrap #globalNavBtn.active a .navWraP:after {
  transform: rotate(45deg);
  top: 7px;
}
#header #globalNavBtnWrap #globalNavBtn.active a .navWraP:before {
  transform: rotate(-45deg);
  bottom: 7px;
}
@media only screen and (max-width: 1151px) {
  #header #reserveBtnWrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    line-height: 60px;
  }
}
#header #reserveBtnWrap #reserveNavBtn {
  vertical-align: middle;
}
#header #reserveBtnWrap #reserveNavBtn a {
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #626262;
  border: none;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
  position: relative;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header #reserveBtnWrap #reserveNavBtn a:hover {
  background-color: #262626;
}
@media only screen and (max-width: 1151px) {
  #header #reserveBtnWrap #reserveNavBtn a {
    width: 60px;
    height: 60px;
  }
}
#header #reserveBtnWrap #reserveNavBtn a span {
  line-height: 1.2;
}
#header #reserveBtnWrap #reseveWrap {
  right: 0%;
  position: fixed;
  top: 60px;
  transition: all .2s ease-in;
  z-index: 500;
  color: #fff;
  z-index: 15000;
  line-height: 1.3;
  opacity: 0;
  display: none;
}
@media only screen and (max-width: 1151px) {
  #header #reserveBtnWrap #reseveWrap {
    right: 0%;
    opacity: 0;
    display: none;
    transition: all .2s ease-in;
    overflow-y: scroll;
    height: 100%;
  }
}
#header #reserveBtnWrap #reseveWrap .reserveForm {
  width: 560px;
}
@media only screen and (max-width: 1151px) {
  #header #reserveBtnWrap #reseveWrap .reserveForm {
    width: auto;
  }
}
#header #reserveBtnWrap #reseveWrap .reserveForm #frmplanseek #booking_inner .booking_date h4 {
  line-height: 1;
  margin-bottom: 10px;
}
#header #reserveBtnWrap #reseveWrap h3 {
  text-align: center;
  font-size: 1.3em;
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 40px;
}
#header #reserveBtnWrap #reseveWrap .reserveClose {
  width: 26px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}
#header #reserveBtnWrap #reseveWrap .reserveClose a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#header #reserveBtnWrap #reseveWrap .reserveClose a span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
#header #reserveBtnWrap #reseveWrap .reserveClose a span:last-child {
  transform: rotate(-45deg);
}
#header #reserveBtnWrap #reseveWrap + .reserveOver {
  opacity: 0;
  transition: all .3s ease-in;
}
#header #reserveBtnWrap.reserveactive #reseveWrap {
  right: 0;
  position: fixed;
  min-width: 320px;
  top: 0;
  display: block;
  opacity: 1;
  background-color: #1a1a1a;
  padding: 30px;
  display: block;
}
@media only screen and (max-width: 1151px) {
  #header #reserveBtnWrap.reserveactive #reseveWrap {
    width: 100%;
    box-sizing: border-box;
    min-height: 100vh;
    opacity: 1;
  }
}
@media only screen and (max-width: 1151px) {
  #header #reserveBtnWrap.reserveactive #reseveWrap .reserveForm {
    width: auto;
    padding-bottom: 30px;
  }
}
#header #reserveBtnWrap.reserveactive #reseveWrap .reserveForm .guarantee2 {
  line-height: 1.2;
  margin-bottom: 30px;
}
#header #reserveBtnWrap.reserveactive #reseveWrap + .reserveOver {
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap {
    position: absolute;
    top: 0;
    right: -100%;
    min-height: 100vh;
    background-color: aliceblue;
    width: 100%;
    background-color: #666;
    transition: all .2s ease-in;
    overflow-y: scroll;
    height: 100%;
    z-index: 200;
    background-color: #000;
    padding: 60px 0;
  }
  #header #glovalNavWrap.active {
    right: -0%;
  }
}
#header #glovalNavWrap .newlanguage {
  display: none;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap .newlanguage {
    display: block;
    margin-bottom: 30px;
  }
  #header #glovalNavWrap .newlanguage ul {
    display: flex;
    justify-content: center;
  }
  #header #glovalNavWrap .newlanguage ul li a {
    color: #fff;
    padding: 15px;
  }
}
#header #glovalNavWrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#header #glovalNavWrap > ul > li:hover {
  background-color: #262626;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li {
    width: 100%;
  }
}
#header #glovalNavWrap > ul > li > a {
  display: block;
  height: 60px;
  line-height: 60px;
  transition: all .2s ease-in;
  color: #fff;
  padding: 0 15px;
  font-weight: lighter;
  font-size: 13px;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > a {
    text-align: center;
  }
}
#header #glovalNavWrap > ul > li.active > .childMenu {
  opacity: 1;
  display: flex;
}
@media only screen and (max-width: 600px) {
  #header #glovalNavWrap > ul > li.active > .childMenu {
    display: block;
  }
}
#header #glovalNavWrap > ul > li .toggleClass {
  padding: 15px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
#header #glovalNavWrap > ul > li > .childMenu {
  position: fixed;
  top: 60px;
  left: 0;
  opacity: 0;
  margin-bottom: -60px;
  background-color: #262626;
  width: 100%;
  display: none;
  justify-content: flex-start;
  z-index: 10;
  flex-wrap: wrap;
  transition: all .2s ease-in;
  z-index: 90;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu {
    display: none;
    opacity: 1;
    position: relative;
    background-color: #2e2e2e;
    text-align: center;
    margin-bottom: -0px;
    top: 0;
  }
  #header #glovalNavWrap > ul > li > .childMenu.active {
    display: block;
  }
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  color: #fff;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu .childMenuInner {
    width: 100%;
    padding: 0;
    display: block;
  }
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner h3 {
  font-size: 20px;
  width: 210px;
  text-align: left;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu .childMenuInner h3 {
    display: none;
  }
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox {
  width: 790px;
  vertical-align: top;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox {
    width: 100%;
  }
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul {
  display: inline-block;
  width: 300px;
  vertical-align: top;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul {
    width: 100%;
    display: block;
  }
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul li {
  margin-top: 35px;
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul li:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul li {
    margin-top: 0;
  }
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul li a {
  color: #fff;
}
#header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu .childMenuInner .menuBox ul li a {
    padding: 15px;
    border-bottom: 1px solid #2f2f2f;
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul > li > .childMenu > li {
    width: 100%;
  }
}
#header #glovalNavWrap > ul.commonNav {
  display: none;
}
@media only screen and (max-width: 1151px) {
  #header #glovalNavWrap > ul.commonNav {
    display: flex;
  }
}
#header #glovalNavWrap > ul.commonNav li {
  width: 50%;
}
#header #glovalNavWrap > ul.commonNav li a {
  text-align: center;
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0;
}

#kvArea {
  height: 80vh;
  width: 100%;
  background-color: aquamarine;
}