html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

header {
  width: 100vw;
  height: 7%;
  border-bottom: 1px solid rgb(224, 224, 224);
  box-sizing: border-box;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.header-inner .logo {
  width: 100px;
}

.header-inner .logo img {
  width: 100%;
}

.main {
  width: 100%;
  height: 93%;
  background-image: url(../images/main_bg.jpg);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: cover;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.main-text {
  width: 100%;
  padding-top: 80px;
  box-sizing: border-box;
}

.main-text > h1 {
  margin: 0;
  color: #000;
  font-size: 2.5em;
  letter-spacing: -3px;
}

.go-to-map {
  display: block;
  width: 100%;
  max-width: 550px;
  height: 370px;
  cursor: pointer;
  margin: 120px auto 0px;
  text-decoration: none;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2);
  border: 5px solid #ccc;
  border-radius: 20px 20px 0px 0px;
  background-color: #fff;
  zoom: 1;
  box-sizing: border-box;
  overflow: hidden;
}

.go-to-map .link-title {
  display: block;
  width: 100%;
  height: 13%;
  line-height: 1.6;
  color: #000;
  text-align: center;
  font-size: 1.5em;
  letter-spacing: -3px;
  border-bottom: 5px solid #ccc;
  box-sizing: border-box;
}

.go-to-map .link-img {
  display: block;
  width: 100%;
  height: 87%;
  overflow: hidden;
}

.go-to-map .link-img img {
  width: 100%;
}

@media (max-width: 1300px) {
  .header-inner {
    padding: 0px 10px;
  }

  .header-inner .logo {
    width: 60px;
  }

  .wrapper {
    padding: 0px 10px;
  }

  .main-text {
    width: 100%;
    padding-top: 50px;
  }

  .go-to-map {
    max-width: 430px;
    height: 280px;
    margin: 50px auto 0px;
  }

  .go-to-map .link-title {
    line-height: 1.4;
    font-size: 1.3em;
  }

  .go-to-map .link-img img {
    height: 100%;
  }
}

@media (max-width: 764px) {
  .header-inner {
    padding: 0px 10px;
  }

  .main .main-text {
    text-align: center;
  }

  .wrapper {
    padding: 0px 10px;
  }

  .go-to-map {
    height: 330px;
    margin: 80px auto 0px;
  }

  .go-to-map .link-img img {
    height: 100%;
  }
}
