@-webkit-keyframes a {
  0% {
    -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    height: 100%;
    width: 100%;
  }
  to {
    -webkit-box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    height: 100%;
    width: 100%;
  }
}
@keyframes a {
  0% {
    -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    height: 100%;
    width: 100%;
  }
  to {
    -webkit-box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    height: 100%;
    width: 100%;
  }
}
@-webkit-keyframes b {
  0% {
    -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    height: 70%;
    width: 70%;
  }
  to {
    -webkit-box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    height: 70%;
    width: 70%;
  }
}
@keyframes b {
  0% {
    -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0.9);
    height: 70%;
    width: 70%;
  }
  to {
    -webkit-box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    box-shadow: 0 0 0 10px hsla(0, 0%, 100%, 0);
    height: 70%;
    width: 70%;
  }
}
.map-ico {
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  height: 7.5%;
  position: absolute;
  width: 7.5%;
}
@media (min-width: 520px) {
  .map-ico {
    height: 5.5%;
    width: 5.5%;
  }
}
.map-ico__base {
  height: 8%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 9%;
}
.map-ico__bld {
  height: 7.69%;
  width: 7.69%;
}
.map-ico:before {
  border-bottom: 9px solid rgba(0, 0, 0, 0);
  border-top: 9px solid rgba(0, 0, 0, 0);
  content: "";
  margin-top: -9px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  visibility: hidden;
  z-index: 3;
}
@media (min-width: 520px) {
  .map-ico:before {
    border-bottom: 13px solid rgba(0, 0, 0, 0);
    border-top: 13px solid rgba(0, 0, 0, 0);
    margin-top: -13px;
  }
}
@media (min-width: 620px) {
  .map-ico:hover:before {
    opacity: 1;
    visibility: visible;
  }
}
.map-ico:hover:after {
  opacity: 0;
}
.map-ico__right:before {
  border-right: 9px solid #000;
  right: -40%;
}
@media (min-width: 520px) {
  .map-ico__right:before {
    border-right: 16px solid #000;
  }
}
.map-ico__left:before {
  border-left: 9px solid #000;
  left: -40%;
}
@media (min-width: 520px) {
  .map-ico__left:before {
    border-left: 16px solid #000;
  }
}
.map-ico__shadow:after {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.map-ico__shadow-rounded:after {
  -webkit-animation: a 1.3s ease-out infinite;
  animation: a 1.3s ease-out infinite;
  border-radius: 50%;
}
.map-ico__shadow-rhomb:after {
  -webkit-animation: b 1.3s ease-out infinite;
  animation: b 1.3s ease-out infinite;
  border-radius: 8%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.map-ico__shadow-square:after {
  -webkit-animation: b 1.3s ease-out infinite;
  animation: b 1.3s ease-out infinite;
  border-radius: 8%;
}
.map-ico_img {
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  width: 100%;
  will-change: transform, opacity;
}
.map-ico:hover .map-ico_img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.map-ico__viewed .map-ico_img {
  opacity: 0.6;
}
.map-tooltip {
  background: #000;
  -webkit-box-shadow: 0 0 16px 0 hsla(0, 0%, 100%, 0.36);
  box-shadow: 0 0 16px 0 hsla(0, 0%, 100%, 0.36);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  max-width: 315px;
  opacity: 0;
  padding: 10px 10px 15px;
  position: absolute;
  text-align: center;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  visibility: hidden;
  width: 53vw;
  z-index: 2;
}
@media (min-width: 520px) {
  .map-tooltip {
    padding-bottom: 20px;
    width: 29vw;
  }
}
@media (min-width: 1100px) {
  .map-tooltip {
    width: 23vw;
  }
}
@media (min-width: 620px) {
  .map-ico:hover .map-tooltip,
  .map_square-wrapp:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
  }
}
.map-tooltip_text {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
  text-align: left;
}
@media (min-width: 520px) {
  .map-tooltip_text {
    line-height: 1.5;
  }
}
.map-popup_wrapper .map-tooltip_text {
  text-align: center;
}
.map-tooltip_title {
  color: #f9f5e1;
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
}
@media (min-width: 520px) {
  .map-tooltip_title {
    font-size: 16px;
    margin-top: 10px;
  }
}
.map-ico__right .map-tooltip {
  left: 140%;
}
.map-ico__left .map-tooltip {
  right: 140%;
}
.map-ico__top .map-tooltip {
  top: -25px;
}
.map-ico__bottom .map-tooltip {
  bottom: -25px;
}
.map-ico__center .map-tooltip {
  top: 50%;
}
.map-tooltip_img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.map-tooltip_expand {
  cursor: default;
  height: 32px;
  right: 10px;
  top: 10px;
  width: 32px;
}
@media (min-width: 720px) {
  .map-tooltip_expand {
    height: 45px;
    width: 45px;
  }
}
.map-popup {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  bottom: 0;
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.map-popup__show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map-popup_wrapper {
  max-width: 900px;
  padding: 0 16px;
  text-align: center;
}
.map-popup_wrapper img {
  height: auto;
  max-width: 100%;
}
.global-crop2 {
  overflow-x: hidden;
}
.videopopup_close {
  background-color: rgba(47, 47, 47, 0.7);
  font-size: 0;
  height: 44px;
  line-height: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease-out;
  -o-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  width: 44px;
}
.videopopup_close:hover {
  cursor: pointer;
}
.videopopup_close:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNTM2IDUuOTUuMjkzIDEwLjE5M2ExIDEgMCAwIDAgMS40MTQgMS40MTRMNS45NSA3LjM2NGw0LjI0MyA0LjI0M2ExIDEgMCAwIDAgMS40MTQtMS40MTRMNy4zNjQgNS45NWw0LjI0My00LjI0M0ExIDEgMCAwIDAgMTAuMTkzLjI5M0w1Ljk1IDQuNTM2IDEuNzA3LjI5M0ExIDEgMCAwIDAgLjI5MyAxLjcwN0w0LjUzNiA1Ljk1eiIgZmlsbD0iI0I4QjM5NyIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
  bottom: 0;
  content: "";
  height: 12px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
}
.map_square {
  background: rgba(68, 3, 3, 0.75);
  height: 19%;
  position: absolute;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 19%;
  z-index: 1;
}
.map_square__orange {
  background: rgba(240, 163, 78, 0.45);
}
.map_square-wrapp {
  cursor: pointer;
}
.map_square-wrapp:hover .map_square {
  opacity: 0.8;
}
body {
  position: relative;
}
.map {
  background-size: contain;
  border: 2px solid #323233;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Roboto Condensed, Arial Narrow, Arial, sans-serif;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
}
.map:lang(ja),
.map:lang(ko),
.map:lang(zh-tw) {
  font-family: Noto Sans JP, гѓ’гѓ©г‚®гѓЋи§’г‚ґ ProN W3,
    Hiragino Kaku Gothic ProN, Meiryo, л§‘мќЂ кі л”•, Malgun Gothic, кµґл¦ј,
    Gulim, Helvetica, sans-serif;
}
.map__active,
.map__single {
  opacity: 1;
  visibility: visible;
}
.map__single {
  margin: 0 auto 20px;
  max-width: 750px;
  position: relative;
}
.map_wrapper {
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.map-menu {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Roboto Condensed, Arial Narrow, Arial, sans-serif;
  justify-content: flex-start;
}
.map-menu:lang(ja),
.map-menu:lang(ko),
.map-menu:lang(zh-tw) {
  font-family: Noto Sans JP, гѓ’гѓ©г‚®гѓЋи§’г‚ґ ProN W3,
    Hiragino Kaku Gothic ProN, Meiryo, л§‘мќЂ кі л”•, Malgun Gothic, кµґл¦ј,
    Gulim, Helvetica, sans-serif;
}
.map-menu_item {
  -ms-flex-preferred-size: 200px;
  border-left: 1px solid #333335;
  color: #e9e2bf;
  cursor: pointer;
  flex-basis: 200px;
  font-size: 14px;
  line-height: 1;
  margin-bottom: -2px;
  padding: 12px 3px;
  position: relative;
  text-align: center;
  -webkit-transition: border-color 0.15s ease-out, color 0.15s ease-out;
  -o-transition: border-color 0.15s ease-out, color 0.15s ease-out;
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
  z-index: 2;
}
.map-menu_item:lang(ko),
.map-menu_item:lang(zh-cn),
.map-menu_item:lang(zh-sg) {
  line-height: 1.2;
}
.map-menu_item:last-child {
  border-right: 1px solid #333335;
}
@media (min-width: 720px) {
  .map-menu_item {
    font-size: 16px;
  }
}
.map-menu_item:before {
  content: "";
  height: 0;
  position: absolute;
  -webkit-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.map-menu_item:after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.map-menu_item:hover:last-child,
.map-menu_item__active:last-child {
  border-right: 1px solid rgba(242, 83, 34, 0.2);
}
.map-menu_item:hover,
.map-menu_item__active {
  border-left: 1px solid rgba(242, 83, 34, 0.2);
}
.map-menu_item:hover:after,
.map-menu_item__active:after {
  background: -o-linear-gradient(
    bottom,
    rgba(242, 83, 34, 0.1),
    transparent 100%
  );
  background: linear-gradient(0deg, rgba(242, 83, 34, 0.1), transparent);
  opacity: 1;
  visibility: visible;
}
.map-menu_item:hover:before,
.map-menu_item__active:before {
  background: #f25322;
  bottom: 0;
  height: 2px;
  left: 0;
  width: 100%;
}
.map-menu_item__active + .map-menu_item {
  border-left: 1px solid rgba(242, 83, 34, 0.2);
}
.map-outer {
  height: 791px;
  margin: 0 auto 20px;
  max-width: 750px;
}
.map_block {
  position: relative;
}
.map-matter {
  background: #282828;
  border-bottom: 3px solid #4956d6;
  border-top: 1px solid #1c1c1e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Roboto Condensed, Arial Narrow, Arial, sans-serif;
  margin: 0 auto 16px;
  max-width: 750px;
  padding: 13px 10px;
}
.map-matter:lang(ja),
.map-matter:lang(ko),
.map-matter:lang(zh-tw) {
  font-family: Noto Sans JP, гѓ’гѓ©г‚®гѓЋи§’г‚ґ ProN W3,
    Hiragino Kaku Gothic ProN, Meiryo, л§‘мќЂ кі л”•, Malgun Gothic, кµґл¦ј,
    Gulim, Helvetica, sans-serif;
}
.map-matter_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: none;
  justify-content: center;
}
.map-matter_item__active {
  display: block;
}
@media (min-width: 520px) {
  .map-matter_item__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.map-matter_text {
  line-height: 18px;
  margin-bottom: 25px;
  text-align: center;
}
.map-matter_nums {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  align-items: center;
  background: center 0 no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
  margin-top: 15px;
  padding-top: 45px;
}
@media (min-width: 520px) {
  .map-matter_nums {
    margin: 0 2%;
  }
}
.map-matter_nums__one {
  background-image: url(https://content-wg.gcdn.co/locdoc/oyster_map_in_tabs/img/star.d2bf17.png);
}
.map-matter_nums__two {
  background-image: url(https://content-wg.gcdn.co/locdoc/oyster_map_in_tabs/img/star_2.bbc0b7.png);
}
.map-matter_nums__three {
  background-image: url(https://content-wg.gcdn.co/locdoc/oyster_map_in_tabs/img/star_3.c1bbd2.png);
}
.map-matter_num {
  background: url(https://content-wg.gcdn.co/locdoc/oyster_map_in_tabs/img/materia.1e55b1.png)
    no-repeat 100%;
  font-size: 34px;
  margin-left: 21px;
  padding-right: 43px;
}
.map-matter_num,
.map-matter_nums-text {
  color: #f8f5e0;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.map-matter_nums-text {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}
.map-text-under {
  background: url(https://content-wg.gcdn.co/locdoc/oyster_map_in_tabs/img/nostar.019604.svg)
    no-repeat 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #b8b8a2;
  font-family: Roboto, Arial Narrow, Arial, sans-serif;
  font-size: 12px;
  line-height: 12px;
  margin: 0 auto 16px;
  max-width: 750px;
  padding-left: 20px;
}
.map-text-under:lang(ja),
.map-text-under:lang(ko),
.map-text-under:lang(zh-tw) {
  font-family: Noto Sans JP, гѓ’гѓ©г‚®гѓЋи§’г‚ґ ProN W3,
    Hiragino Kaku Gothic ProN, Meiryo, л§‘мќЂ кі л”•, Malgun Gothic, кµґл¦ј,
    Gulim, Helvetica, sans-serif;
}
.map .videopopup_close {
  background-color: rgba(47, 47, 47, 0.7);
  font-size: 0;
  height: 44px;
  line-height: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease-out;
  -o-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  width: 44px;
}
.map .videopopup_close:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNTM2IDUuOTUuMjkzIDEwLjE5M2ExIDEgMCAwIDAgMS40MTQgMS40MTRMNS45NSA3LjM2NGw0LjI0MyA0LjI0M2ExIDEgMCAwIDAgMS40MTQtMS40MTRMNy4zNjQgNS45NWw0LjI0My00LjI0M0ExIDEgMCAwIDAgMTAuMTkzLjI5M0w1Ljk1IDQuNTM2IDEuNzA3LjI5M0ExIDEgMCAwIDAgLjI5MyAxLjcwN0w0LjUzNiA1Ljk1eiIgZmlsbD0iI0I4QjM5NyIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
  bottom: 0;
  content: "";
  height: 12px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
}
.map-zones,
.map-zones_item {
  height: 100%;
  position: absolute;
  width: 100%;
}
.map-zones_item {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}
.map-zones_item__active {
  opacity: 1;
  visibility: visible;
}
