@charset "UTF-8";
img.lazyload {
  background: none !important;
}

.lazy-hidden {
  background-image: none !important;
}

#tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  margin-bottom: 50px;
  border-top: 1px solid #7c7979;
  border-bottom: 1px solid #7c7979;
  overflow: hidden;
}
#tabs li {
  display: block;
  margin: 10px 0;
}
#tabs li:not(:last-child) a {
  border-right: 1px solid #7c7979;
}
#tabs li a {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  margin: 2px;
  font-size: 16px;
  color: #7c7979;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  transition: background 0.15s, color 0.15s, transform 0.12s;
  cursor: pointer;
}
#tabs li a.current {
  color: #000;
  font-weight: bold;
}
#tabs li a:hover, #tabs li a:focus {
  transform: translateY(-1px);
  color: #000;
  outline: none;
}

#map01 .text {
  max-width: 1160px;
  margin: 0 auto 30px;
}
#map01 .text h3 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
}

#tabContent {
  overflow: hidden;
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto 100px;
}
#tabContent .left-col {
  overflow: hidden;
}
#tabContent > div {
  display: none;
}
#tabContent > div.active {
  display: block;
}

.map-container {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.map-container img {
  width: 100%;
  height: auto;
}

.map-image {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.pin {
  position: absolute;
  width: 51px;
  height: 61px;
  background-image: url(../images/map/pin_use04.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -100%);
  cursor: pointer;
}
.pin.pin-use01 {
  background-image: url(../images/map/pin_use01.png);
}
.pin.pin-use02 {
  background-image: url(../images/map/pin_use02.png);
}
.pin.pin-use03 {
  background-image: url(../images/map/pin_use03.png);
}
.pin.pin-use04 {
  background-image: url(../images/map/pin_use04.png);
}
.pin:hover, .pin:focus {
  opacity: 0.8;
}

.return {
  position: absolute;
  top: 95%;
  left: 95%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -100%);
}
.return a {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  padding: 0;
  background-image: url(../images/map/26831.png);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #7c7979;
}
.return a:hover {
  opacity: 0.5;
}

.product-list {
  display: none;
  max-width: 800px;
  margin: 16px auto;
}

.product-item {
  display: none;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.32s ease;
  transform: translateX(6px);
}
.product-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.product-item.slide-in {
  transform: translateX(100%);
  opacity: 0;
}
.product-item.slide-in.active {
  transform: translateX(0);
  opacity: 1;
}
.product-item h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0078d4;
}
.product-item dl {
  margin: 0 0 8px;
}
.product-item dt {
  font-weight: 700;
  font-size: 13px;
  color: #333;
}
.product-item dd {
  margin: 0 0 6px;
  color: #444;
}

.product-panel {
  position: absolute;
  top: 0;
  left: -100%;
  width: 380px;
  height: 100%;
  background: #fff;
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.12);
  transition: left 0.33s ease;
  z-index: 1000;
  overflow-y: auto;
  background-color: #EDF9FF;
}
.product-panel.open {
  left: 0;
}
.product-panel .panel-close {
  text-align: right;
  background-color: #000;
  color: #fff;
  display: none;
}
.product-panel .panel-close button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-right: 10px;
}
.product-panel .product-item {
  display: block;
  opacity: 1;
  transform: none;
}
.product-panel .product-item .product-title {
  padding: 20px 20px 20px 40px;
  background-color: #000;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  margin: 0;
  position: relative;
}
.product-panel .product-item .product-title::before {
  content: "◀";
  font-size: 18px;
  margin-right: 20px;
  position: absolute;
  left: 12px;
  top: 25%;
}
.product-panel .product-item dl {
  border-bottom: 1px solid #fff;
  padding: 10px 20px;
}
.product-panel .product-item dl dt {
  font-size: 14px;
  color: #01A0E9;
  font-weight: bold;
}
.product-panel .product-item dl dd {
  font-size: 14px;
  color: #000;
}

@media (max-width: 900px) {
  #map01 {
    margin: 0 10px;
  }
  #tabs {
    flex-wrap: wrap;
  }
  .return {
    width: 30px;
    height: 30px;
  }
  .pin {
    width: 22px;
    height: 22px;
  }
  .product-panel {
    width: 100%;
    right: -100%;
  }
  .product-panel.open {
    right: 0;
  }
  .panel-close {
    display: block !important;
  }
}/*# sourceMappingURL=tabs.css.map */