@charset "UTF-8";
/* =====
 * / フロアガイド レイアウト
============================================================================= */
.map-area {
  position: relative;
  margin: 40px auto 0;
}

.map-area .overall-view {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  max-width: 40%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.map-area .map {
  position: relative;
  width: 980px;
  height: 650px;
  overflow: hidden;
}

.map-area .map .map-adjust {
  position: relative;
  transform: scale(1);
  transform-origin: left top;
  width: 980px;
  height: 650px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.map-area .map .map-adjust .image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.map-area .map .map-adjust .image img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: top;
}

.map-area .map .map-adjust svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  transform-origin: top left;
}

.map-area .map .map-adjust svg polygon {
  fill: #000;
  stroke: transparent;
  stroke-miterlimit: 10;
  transition: opacity 0.3s linear 0s;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.map-area .map .map-adjust svg a:hover {
  transition: none;
}

.map-area .map .map-adjust svg a:hover polygon {
  opacity: 0.65;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
}

.map-area .map-nav .zoom {
  position: absolute;
  z-index: 3;
  bottom: 5px;
  right: 5px;
}

.map-area .map-nav .zoom button {
  position: relative;
  display: block;
  outline: none;
  border-radius: 50%;
  border: none;
  width: 42px;
  height: 42px;
  background: #c6a575;
  margin-top: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.map-area .map-nav .zoom button:before {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8.5px;
  margin-top: -0.5px;
  background: #fff;
}

.map-area .map-nav .zoom button.zoom-plus:after {
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.5px;
  margin-top: -8.5px;
  background: #fff;
}

.map-area .map-nav .zoom button.-js-disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default;
}

.map-area .map-nav .link a {
  position: absolute;
  width: 40px;
  height: 60px;
  top: 50%;
  margin-top: -20px;
  background: #c6a575;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

.map-area .map-nav .link a:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: #fff;
  left: 50%;
  margin-top: -7px;
  transform: rotate(45deg);
}

.map-area .map-nav .link a.link-prev {
  left: 3px;
}

.map-area .map-nav .link a.link-prev:before {
  transform: rotate(-135deg);
  margin-left: -4px;
}

.map-area .map-nav .link a.link-next {
  right: 3px;
}

.map-area .map-nav .link a.link-next:before {
  margin-left: -12px;
}

.map-area.-js-debug .map {
  border: 1px solid #0033cc;
}

.map-area.-js-debug .map:before {
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #0033cc;
  top: 0;
  left: 50%;
  z-index: 10;
}

.map-area.-js-debug .map:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #0033cc;
  top: 50%;
  left: 0;
  z-index: 10;
}

.map-area.-js-debug .map .map-adjust .image {
  border: 1px solid #ff0000;
}

.map-area.-js-debug .map .map-adjust .image:before {
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #ff0000;
  top: 0;
  left: 50%;
  z-index: 9;
}

.map-area.-js-debug .map .map-adjust .image:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ff0000;
  top: 50%;
  left: 0;
  z-index: 9;
}

.map-area.-js-debug .map .map-adjust svg polygon {
  fill: #00ff00;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.map-area.-js-debug .map .distance {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #ee25ff;
  z-index: 100;
}

.map-icon {
  margin: 40px auto 0;
  padding: 30px;
  background: #f2f2f2;
  text-align: center;
}

.map-note {
  margin-top: 20px;
  font-size: 12px;
  font-size: 0.75rem;
}

.map-note p {
  margin: 0;
}

.map-bottom-link {
  margin: 60px auto 0;
}

/* -----------------
 * floor map top
 ----------------- */
.building-map {
  position: relative;
  margin: 70px auto 80px;
}

.building-map a {
  display: block;
  height: 52px;
  margin-top: 6px;
  font-size: 0;
  transition: background 0.3s;
}

.building-map a:hover {
  background: rgba(255, 255, 255, 0.6);
}

.building-map .building1 {
  position: absolute;
  bottom: 58px;
  left: 41px;
  width: 202px;
}

.building-map .building1 > span {
  display: block;
  height: 52px;
  margin-top: 6px;
  font-size: 0;
}

.building-map .building2 {
  position: absolute;
  bottom: 115px;
  left: 277px;
  width: 406px;
}

.building-map .building2 a:first-child {
  height: 28px;
}

.building-map .building2 a:nth-child(n + 4) {
  width: 202px;
}

.building-map .building3 {
  position: absolute;
  bottom: 0;
  left: 716px;
  width: 218px;
}

.building-map .building3 a:first-child {
  height: 77px;
}

.building-map .building4 {
  position: absolute;
  bottom: 115px;
  left: 492px;
  width: 193px;
}

.whole-map {
  position: relative;
  max-width: 750px;
  margin: auto;
}

.whole-map svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  fill: #000;
}

.whole-map svg a {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.whole-map svg a:hover {
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

/* -----------------
 * floor map 下層共通メニュー
 ----------------- */
/* タブ navi */
.tab-switch.-building li {
  width: 20%;
  padding: 0;
  height: 60px;
}

.tab-switch.-building li .inner {
  display: table;
  width: 100%;
  height: 100%;
}

.tab-switch.-building li .inner > span {
  display: table-cell;
  vertical-align: middle;
  padding: 0 1em;
}

.tab-switch.-building li.-current {
  color: #826635;
}

/* フロア menu */
.floor-menu-list {
  margin: 20px 0 0;
}

.floor-menu-list .glide__arrows {
  display: none;
}

.floor-menu {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.floor-menu li {
  -ms-flex: 1 1 0px;
      flex: 1 1 0;
  max-width: 120px;
  text-align: center;
  position: relative;
  border-right: 1px solid #ebe2d1;
}

.floor-menu li:last-child {
  border-right: none;
}

.floor-menu li .inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}

.floor-menu li .inner:before, .floor-menu li .inner:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.floor-menu li .inner:before {
  width: 100%;
  height: 2px;
  background: #826635;
  left: 0;
  bottom: 0;
}

.floor-menu li .inner:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #826635 transparent;
  bottom: 1px;
  left: 50%;
  margin-left: -4px;
}

.floor-menu li .inner small {
  font-size: 0.786em;
}

.floor-menu li .inner > * {
  display: block;
  width: 100%;
}

.floor-menu li .inner:hover {
  color: #a58959;
}

.floor-menu li.-current .inner {
  background: #c6a575;
  color: #fff;
  font-weight: bold;
}

.floor-menu li.-current .inner small {
  font-weight: 400;
}

.floor-menu li.-current .inner:before, .floor-menu li.-current .inner:after {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

a.print-btn {
  color: #c6a575;
}

.print-btn i img {
  height: 35px;
  padding: 5px 0 0 5px;
}

.floor-menu ._none {
  pointer-events: none;
  opacity: 0.3;
}

/* -----
 * フロアガイド responsive
----------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .map-area {
    margin-top: 30px;
  }
  .map-area .map {
    width: calc(100% - 20px);
    height: 280px;
    margin: 0 auto;
  }
  .map-area .map .map-adjust {
    width: 100%;
    height: 280px;
  }
  .map-area .map .map-adjust svg polygon {
    transition: none;
  }
  .map-area .map .map-adjust svg a:hover polygon {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .map-area .map-nav .zoom button {
    width: 30px;
    height: 30px;
    margin-top: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  }
  .map-area .map-nav .zoom button:before {
    width: 12px;
    margin-left: -6px;
  }
  .map-area .map-nav .zoom button.zoom-plus:after {
    height: 12px;
    margin-top: -6px;
  }
  .map-area .map-nav .link a {
    width: 25px;
    height: 38px;
    margin-top: -19px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }
  .map-area .map-nav .link a:before {
    width: 10px;
    height: 10px;
    border-width: 1px;
    margin-top: -5px;
  }
  .map-area .map-nav .link a.link-prev {
    left: 0;
  }
  .map-area .map-nav .link a.link-prev:before {
    margin-left: -3px;
  }
  .map-area .map-nav .link a.link-next {
    right: 0;
  }
  .map-area .map-nav .link a.link-next:before {
    margin-left: -9px;
  }
  .map-area .map-debug {
    border: 1px solid #666;
    margin-top: 30px;
    min-height: 200px;
  }
  .map-icon {
    margin-top: 45px;
    padding: 15px 10px;
  }
  .map-note {
    margin-top: 10px;
    font-size: 0.714rem;
  }
  .map-bottom-link {
    margin-top: 40px;
  }
  .map-bottom-link .button-line > span {
    padding: 0 20px;
    letter-spacing: normal;
  }
  .map-bottom-link .button-line > span:after {
    right: 20px;
  }
  .map-area .overall-view {
    max-width: 37%;
  }
  /* -----------------
   * floor map top
  ----------------- */
  .building-map {
    margin: 60px auto 50px;
  }
  .building-map img {
    width: 100%;
  }
  .building-map a {
    height: auto;
    margin-top: 3.2%;
  }
  .building-map a:before {
    content: "";
    display: block;
    padding-top: 25.5%;
  }
  .building-map .building1 {
    width: 28.5%;
    left: 5.6%;
    bottom: auto;
    top: 1.55%;
  }
  .building-map .building1 > span {
    height: auto;
    margin-top: 3.2%;
  }
  .building-map .building1 > span:before {
    content: "";
    display: block;
    padding-top: 25.5%;
  }
  .building-map .building2 {
    width: 57%;
    left: 38.5%;
    bottom: auto;
    top: 14.8%;
  }
  .building-map .building2 a {
    margin-top: 1.8%;
  }
  .building-map .building2 a:before {
    padding-top: 12.5%;
  }
  .building-map .building2 a:first-child {
    height: auto;
  }
  .building-map .building2 a:first-child:before {
    padding-top: 6.5%;
  }
  .building-map .building2 a:nth-child(n + 4) {
    width: 50%;
    margin-top: 1.6%;
  }
  .building-map .building2 a:nth-child(n + 4):before {
    padding-top: 25.5%;
  }
  .building-map .building3 {
    width: 30.5%;
    left: 33.8%;
    bottom: 0;
  }
  .building-map .building3 a {
    margin-top: 2.7%;
  }
  .building-map .building3 a:before {
    padding-top: 24%;
  }
  .building-map .building3 a:first-child {
    height: auto;
  }
  .building-map .building3 a:first-child:before {
    padding-top: 35%;
  }
  .building-map .building4 {
    width: 27%;
    left: 68.5%;
    bottom: auto;
    top: 24.7%;
  }
  .building-map .building4 a {
    margin-top: 3.6%;
  }
  .building-map .building4 a:before {
    padding-top: 26.7%;
  }
  /* -----------------
   * floor map 下層共通メニュー
   ----------------- */
  /* タブ navi */
  .tab-switch.-building {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tab-switch.-building li {
    height: 45px;
  }
  .tab-switch.-building li .inner > span {
    padding: 0 0.5em;
  }
  /* フロア menu */
  .floor-menu-list {
    position: relative;
    width: calc(100% - 80px);
    margin: 15px auto 0;
  }
  .floor-menu-list .glide__arrows {
    display: block;
  }
  .floor-menu-list .glide__arrows .glide__arrow--left {
    left: -40px;
  }
  .floor-menu-list .glide__arrows .glide__arrow--right {
    right: -40px;
  }
  .floor-menu-list .glide__arrows .glide__arrow[disabled] {
    opacity: 0.35;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
    cursor: default;
  }
  .floor-menu li {
    width: 90px;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .floor-menu li .inner {
    height: 45px;
    font-size: 0.857rem;
    font-weight: bold;
  }
  .floor-menu li .inner small {
    display: inline-block;
    font-size: 0.75em;
  }
}

/* -----
 * フロアガイド プリント用
----------------------------------------------------------------------------- */
@media print {
 header,
 footer,
 .map-bottom-link,
 .map-nav,
 .banner-slider,
 ._sp-only,
 .map-note {
   display: none;
 }

 .g-container {
   padding-top: 0;
 }

 @page { size: A4 portrait;
}

body {
  -webkit-print-color-adjust: exact;
}

}