html, html > body {
  width: 100%;
  height: 100%;
}

#tour {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#tour iframe {
  width: 100%;
  height: 100%;
}

#tour .msg {
  position: absolute;
  left: 50%;
  bottom: 10%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  overflow: hidden;
  width: 0;
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

#tour .msg.active {
  width: calc(30vw + 60px);
  left: 60%;
}

#tour .msg .msg-inner {
  width: 30vw;
  padding: 30px;
}

#tour .msg .msg-inner > div {
  color: #ffffff;
}

#tour .msg .msg-inner > div.title {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 16pt;
}

#tour .msg .msg-inner > div.content {
  line-height: 1.5em;
}

@media screen and (max-width: 640px) {
  #tour .msg {
    left: 5%;
  }
  #tour .msg.active {
    width: 80vw;
    left: 10%;
  }
  #tour .msg .msg-inner {
    width: 76vw;
    padding: 2vw;
  }
  #tour .msg .msg-inner > div.title {
    font-size: 4vw;
    margin-bottom: 0.5em;
  }
  #tour .msg .msg-inner > div.content {
    font-size: 3.5vw;
  }
}

#tour a.back {
  background: #fff000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: bold;
  padding: 0.5em 1em;
}

#tour a.back:before {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../../images/arrow-right.svg) center center/contain no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.1em;
  margin-right: 0.5em;
}

@media screen and (max-width: 640px) {
  #tour a.back {
    font-size: 4vw;
  }
}

/*# sourceMappingURL=tour.css.map */