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

a {
  color: inherit;
  text-decoration: none;
}

body {
  color: #333;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: serif;
}

img {
  height: auto;
  max-width: 100%;
}

.top {
  display: flex;
  align-items: center;
  overflow-y: hidden;
  height: 100vh;
  min-height: 400px;
}
@media (max-width: 767px) {
  .top {
    height: auto;
    display: block;
  }
}

.top__main {
  padding: 20px 30px;
}
@media (max-width: 1000px) {
  .top__main {
    padding: 20px 16px;
  }
}
@media (max-width: 767px) {
  .top__main {
    padding: 20px 10px 40px;
  }
}

.top__logo {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .top__logo {
    width: 240px;
  }
}

.top__links {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .top__links {
    margin-top: 10px;
  }
}

.top__link {
  font-size: 20px;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .top__link {
    font-size: 16px;
  }
}
.top__link .is-em {
  font-size: 24px;
  display: inline-block;
  padding: 0 2px;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .top__link .is-em {
    font-size: 18px;
  }
}

.top__link a {
  position: relative;
  display: inline-block;
  padding-right: 35px;
}
@media (max-width: 1000px) {
  .top__link a {
    padding-right: 27px;
  }
}

.top__link a::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/icon-link.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 1000px) {
  .top__link a::after {
    width: 22px;
    height: 22px;
  }
}

.top__link:not(:first-child) {
  margin-top: 1.5em;
}

.top__img {
  height: 100%;
  width: 100%;
  display: block;
  line-height: 1;
}

.top__img img {
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
  height: 100%;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */