@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;600&display=swap');
@import url("page.css");
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosub-eventanskr/v2/NotoSansKR-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 500;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 700;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf') format('opentype');
}
/* common */

* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  background: #fff;
  word-break: keep-all;
}
.wrap {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}
.wrap > section > * {
  display: block;
}
button, input, textarea {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
}

::-webkit-selection {
 color: #fff;
 background: #ed507a;
}

::-moz-selection {
 color: #fff;
 background: #ed507a;
}
::selection {
  color: #fff;
  background: #ed507a;
}
/*button*/
button {
  font-weight: 500;
}
.btn-lg {
  font-size: 18px;
  border: 1px solid transparent;
  width: 100%;
  height: 55px;
  max-width: 300px;
}
.btn-primary {
  color: #fff;
  background-color: #ed507a;
}
.btn-primary:hover {
  background-color: #ca4468;
}

/*dropdown*/
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .drop {
  position: relative;
  display: inline-block;
}
.dropdown > .dropdown-menu {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  float: left;
  max-height: 0;
  overflow: hidden;
  transition: all .3s;
  background-color: #fff;
  z-index: 1;
}
.dropdown > .dropdown-menu.open {
  max-height: 300px;
  height: auto;
  padding: 5px 0;
}
.dropdown > .dropdown-menu > li {
  display: block;
  color: #555;
  cursor: pointer;
  padding: 8px 0;
  text-align: center;
  font-size: 15px;
}
.dropdown > .dropdown-menu > li:hover {
  background: #f6f6f6;
}
.down-caret {
  display: inline-block;
  margin-top: 14px;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-135deg) translateY(-50%);
  transition: all .3s ease-in-out;
  transform-origin: 50% 0;
  margin-left: 15px;
}
.open-caret {
  transform: rotate(45deg);
  transition: all 0.25s ease-out;
}
.dropdown.drop-top > .dropdown-menu {
/* top: -96px;
  margin-top: 0;*/
}
/*common*/
.container {
  max-width: 1590px;
  width: 100%;
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
}
.down-caret {
  display: inline-block;
  margin-top: 14px;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-135deg) translateY(-50%);
  transition: all .3s ease-in-out;
  transform-origin: 50% 0;
  margin-left: 15px;
}
/*hall-area*/
.hall-area {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hall-area iframe {
  width: 100%;
  height: 100%;
}
.hall-menu {
  display: flex;
  align-items: center;/*height: 50px;*/
}
.hall-menu .down-caret {
  position: absolute;
  left: -12px;
  top: -5px;
  border-width: 4px;
  width: 10px;
  height: 10px;
}
.hall-menu .down-caret.open-caret {
  left: -8px;
}
.hall-menu .dropdown {
  width: 100%;
}
.hall-menu a {
  color: #fff;
  width: 100%;
  padding-left: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hall-menu .dropdown > .dropdown-menu > li {
  text-align: left;
  padding: 5px 15px 5px 2em;
  list-style-position: inside;
  text-indent: -1em;
}
.hall-menu .dropdown > .dropdown-menu {
  top: 35px;
  overflow: auto;
  max-width: 500px;
}
.hall-menu .dropdown > .dropdown-menu.open {
  max-height: 800px;
  padding: 15px 0;
}

@media screen and (max-width:991px) {
.hall-menu .dropdown > .dropdown-menu > li {
  font-size: 14px;
  margin-right: 0;
}
}
/*hall pop*/
.pop-layer {
  position: fixed;
  background-color: rgba(0,0,0,.8);
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.btn-today {
  color: #fff;
}
.guide-wrap {
  position: absolute;
}
.guide-img {
  width: 50%;
}
.guide-wrap img {
  width: 100%;
}
.guide {
  position: absolute;
  background: #5677f4;
  color: #fff;
  padding: 5px 10px 4px;
  border-radius: 3px;
  z-index: 99999;
  font-size: 14px;
  white-space: nowrap;
}
.guide:after {
  bottom: 100%;
  transform: translate(-1px, 3px);
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(56, 77, 157, 0);
  border-bottom-color: #5677f4;
  border-width: 11px;
}
.tip-left:after {
  left: -18px;
  transform: rotate(-90deg);
  top: 4px;
}
.tip-right:after {
  right: -18px;
  transform: rotate(90deg);
  top: 4px;
}
.tip-top:after {
  right: 15px;
  top: -23px;
}
.guide-hall {
  left: 26px;
  top: 99px;
}
.tip-hall {
  top: -8px;
  left: 115px;
}
.guide-uni {
  left: 12px;
  top: 20px;
}
.guide-uni .ico{
  display: inline-block;
    width:40px;
    height:40px;
    margin-right:10px;
    background: url(/Content/images/ico-guide-arw.png) center/cover no-repeat;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.3);
    border-radius:50%;
    vertical-align: middle;
}
.guide-uni .guide-img{
    width:auto;
    cursor:pointer;
}
.guide-uni .guide-list{
    display: inline-block;
    background: #fff;
    border-radius:50px;
    box-shadow:0 0 20px 0 rgba(0,0,0,0.3);
    padding:3px 12px;
    color:#000;
    font-weight: bold;
    font-size:20px;
    vertical-align: middle;
}
.tip-uni {
  top: 5px;
  left: 216px;
}
.guide-sound {
  right: 12px;
  bottom: 75px;
}
.tip-sound {
  bottom: 5px;
  right: 106px;
}
.guide-sound .guide-img, .guide-position .guide-img {
  float: right;
}
.guide-position .guide-img {
  width: 214px;
}
.guide-position {
  right: 12px;
  top: 20px;
}
.tip-position {
  top: 233px;
  right: 10px;
}

@media (max-width: 991px) {
.guide-hall {
  top: 89px;
}

.guide-sound {
  display: none;
}
}

@media (max-width:767px) {
.guide-position .guide-img {
  width: 127px;
}
.tip-position {
  top: 140px;
  right: 5px;
}
.guide {
  font-size: 12px;
}
.tip-uni {
  top: 55px;
  left: 12px
}
.tip-uni.tip-left:after {
  left: auto;
  transform: initial;
  right: 50%;
  top: -20px;
}
}
/*guide-btn-wrap*/
.guide-btn-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.guide-action {
  display: flex;
}
.guide-text {
  color: #fff;
  padding-top: 15px;
}
.guide-action-box {
  text-align: center;
  margin: 0 12px;
}
.guide-start {
  font-size: 18px;
  font-weight: 500;
  padding: 5px 15px;
  background: #ed507a;
  max-width: 150px;
}
.guide-img-wrap {
  width: 107px;
  margin: 0 auto;
}
.guide-img-wrap img {
  width: 100%;
}
.guide-text-info {
  color: #fff;
  font-size: 20px;
  padding: 20px 0 50px;
}
.btn-today {
  margin-top: 50px;
  text-decoration: underline !important;
  opacity: .5;
}
.btn-today:hover {
  opacity: 1;
}

@media (max-width: 991px) {
.guide-action, .guide-text-info {
  display: none;
}
.guide-btn-wrap {
  justify-content: flex-end;
  padding-bottom: 40px;
}
.btn-today {
  margin-top: 20px;
}
}
