* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

body {
  background-color: #32425a;
  color: #7e7e7e;
  font: 400 1em/1.5em "Source Sans Pro", sans-serif;
  margin: 0;
  padding-top: 100px;
}

a {
  color: #ce606f;
}

h1,
h2,
h3 {
  color: #fff;
  font-weight: 600;
}

h1,
.h1 {
  font-size: 2.5em;
  margin: 0 0 0.2em;
}

h2,
.h2 {
  font-size: 1.5em;
  margin: 0 0 0.33em;
}

h3,
.h3 {
  font-size: 1.25em;
  margin: 0 0 0.5em;
}
.hero-image {
  background-image:url("./banner.png");
  height:8vh;
  margin-left: 10vw;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-bottom: 5em;
}
@media screen and (orientation:landscape) and (max-width:1000px) {
.hero-image{
  visibility: hidden;
}
}
@media screen and (orientation:landscape) and (max-width:1000px) {
  h2{
    visibility: hidden;
  }
  h1{
    visibility: hidden;
  }
  }
  
p {
  margin: 0.5em 0;
}
svg {
  margin-left: 10vw;
  height: 500px;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.subline {
  color: #768191;
  font-weight: normal;
}

.container {
  left: 50%;
  max-width: 900px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.map {
  margin-top: 3em;
  position: relative;
}
.map-markers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.map-marker {
  position: absolute;
}
.map-marker:after {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: pop;
  border-radius: 50%;
  border: 5px solid #ffea00;
  content: "";
  height: 3em;
  left: -8px;
  opacity: 90;
  position: absolute;
  top: -8px;
  width: 3em;
}
.map-marker:hover .map-marker-info {
  display: block;
}
.map-marker a {
  background-color: #d90000;
  border-radius: 50%;
  height: 2em;
  display: block;
  text-indent: -9999px;
  width: 2em;
}
.map-marker-rocks {
  left:45%;
  top: 75%;
}
.map-marker-sickle {
  left: 39%;
  top: 50%;
}
.map-marker-wakame {
  left: 35%;
  top: 72%;
}
.map-marker-boat {
  left: 80%;
  top: 15%;
}
.map-marker-tanpo {
  left: 55%;
  top: 15%;
}
.map-marker-info {
  display: none;
  left: 50%;
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -2em);
  width: 20em;
  z-index: 999;
}
.map-marker-info header {
  background-color: #ce606f;
  border-radius: 0.5em 0.5em 0 0;
  color: #fff;
  padding: 0.5em 1em;
}
.map-marker-info main {
  background-color: #fff;
  border-radius: 0 0 0.5em 0.5em;
  color: #7e7e7e;
  padding: 0.5em 1em;
}
.map-marker-info h2 {
  margin-bottom: 0;
}
.map-marker-info-inner {
  border-radius: 0.5em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
  font-size: 0.875em;
}
.map-marker-info-inner:after {
  border-left: 0.75em solid transparent;
  border-right: 0.75em solid transparent;
  border-top: 1em solid #fff;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
}

.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes bounce-in {
  0%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate-bounce-in {
  animation-duration: 0.75s;
  animation-name: bounce-in;
}

@keyframes pop {
  0% {
    transform: scale(0);
  }
  8% {
    opacity: 0.4;
  }
  10% {
    opacity: 0;
    transform: scale(1);
  }
}
.animate-pop {
  animation-duration: 1s;
  animation-name: pop;
}
img{
  max-width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}