@charset "UTF-8";

/* =========================================================
  page sustainable
========================================================= */

/* body
----------------------------------------------- */

/* sustainableMap */
.sustainableMap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #204d81 var(--mono-color-7);
  text-align: center;
}

.sustainableMap::-webkit-scrollbar {
  height: 8px;
}

.sustainableMap::-webkit-scrollbar-track {
  background: var(--mono-color-7);
}

.sustainableMap::-webkit-scrollbar-thumb {
  height: 200px;
  border-radius: 10px;
  background: #204d81;
}

.sustainableMap .map {
  position: relative;
  width: 1100px;
  padding: 50px;
  overflow: hidden;
  background: #91D2E4;
}

.sustainableMap .map > img {
  width: 1000px;
  max-width: none;
}

.sustainableMap .points, .sustainableMap .points li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sustainableMap .points li {
  position: absolute;
  background: none !important;
}

.sustainableMap .points li a {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px 0;
}

.sustainableMap .points li.rt a {
  flex-direction: row-reverse;
}

.sustainableMap .points li.tp a {
  flex-direction: column-reverse;
}

.sustainableMap .points li.bt a {
  flex-direction: column;
}

.sustainableMap .points li.tp a .ic, .sustainableMap .points li.bt a .ic {
  align-self: flex-end;
}

.sustainableMap .points a {
  color: var(--mono-color-1);
  text-decoration: none;
}

.sustainableMap .points a span.name {
  font-size: 1.25rem;
}

.sustainableMap .points a:hover span.name {
  opacity: 0.5;
}

.sustainableMap .points a span.ic {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  background: #df5656;
  -webkit-mask-image: url(/_themes/minamiawa/site/images/marker.svg);
  mask-image: url(/_themes/minamiawa/site/images/marker.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  font-size: 0;
  transition: var(--transition);
  animation: pointIc 1s linear infinite;
}

.sustainableMap .points a:hover span.ic {
  background-color: #204d81 !important;
  filter: brightness(120%);
}

.sustainableMap .points a span.ic::after {
  content: "";
  position: absolute;
  top: -200%;
  left: -150%;
  transform: rotate(40deg);
  width: 70px;
  height: 500%;
  background: linear-gradient(90deg, rgba(255,255,255,0),rgba(255,255,255,0.6) 40%,rgba(255,255,255,0),rgba(255,255,255,0.6),rgba(255,255,255,0)) !important;
  animation: 2s shine infinite linear;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  80% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@media only screen and (max-width: 767px) {
  .sustainableMap {
    margin-top: 30px;
  }
}

/* sustainableMap map2 */
.sustainableMap.map2 .map {
  padding: 25px;
  background: var(--mono-color-9);
}

.sustainableMap.map2 .map > img {
  width: 1050px;
}

.sustainableMap.map2 .points a span.name {
  text-shadow: #FC0 1px 0 10px;
}

.scroll-hint-shadow-wrap::before, .scroll-hint-shadow-wrap::after {
  background: none !important;
}

/* sustainableContent */
.sustainableContent .map {
  margin-top: 10px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .sustainableContent .map iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 680 / 300;
  }
}