* {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans SC', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1280px;
  width: 100%;
}
@media screen and (max-width: 425px) {
  body {
    min-width: 100%;
  }
}

.top-header {
  width: 100%;
  height: 100px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 425px) {
  .top-header {
    padding: 0 10px;
    height: 55px;
  }
}
.top-header--content {
  display: flex;
  align-items: center;
}
.top-header--visual {
  width: 315px;
}
.top-header--visual img {
  width: 100%;
}
@media screen and (max-width: 425px) {
  .top-header--visual {
    width: 180px;
  }
  .top-header--image {
    width: 100%;
    position: relative;
    top: -8px;
  }
}
.top-header--date {
  font-size: 16px;
  border: 2px solid #000b80;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 120px;
  height: 36px;
  text-align: center;
  font-weight: bold;
  color: #000b80;
  margin: 0 0 0 40px;
  background: #fff;
}
@media screen and (max-width: 425px) {
  .top-header--date {
    font-size: 10px;
    width: 90px;
    height: 24px;
    position: absolute;
    top: 8px;
    left: 205px;
    margin: 0;
  }
}
.top-header--title {
  font-size: 22px;
  margin: 0 0 0 16px;
  font-weight: bold;
  color: #000b80;
}
@media screen and (max-width: 425px) {
  .top-header--title {
    font-size: 10px;
    position: absolute;
    top: 35px;
    left: 205px;
    margin: 0;
  }
}

.top-footer {
  overflow: hidden;
}
.top-footer--inner {
  display: grid;
  grid-template-columns: 50% 50%;
}
.top-footer--info {
  margin-right: 75px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 425px) {
  .top-footer--inner {
    grid-template-columns: 1fr;
  }
  .top-footer--info {
    margin-right: 0;

    justify-content: center;
  }
}

@media screen and (max-width: 425px) {
  .top-footer--info {
    margin: 0;
    padding: 24px 12px;
  }
}
.top-footer--logo_wrap {
  margin: 0 0 20px 0;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.15s;
}
.top-footer--logo_wrap:hover {
  opacity: 0.6;
}
@media screen and (max-width: 425px) {
  .top-footer--logo {
    margin: 0 auto 24px auto;
    width: 85%;
    display: block;
    height: auto;
  }
}
.top-footer--logo_blank {
  margin: 0 0 0 15px;
}
@media screen and (max-width: 425px) {
  .top-footer--logo_blank {
    margin-left: -20px;
  }
}
.top-footer--address {
  font-size: 18px;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 425px) {
  .top-footer--address {
    font-size: 14px;
    margin: 0 0 12px 0;
  }
}
.top-footer--contact {
  font-size: 24px;
}
@media screen and (max-width: 425px) {
  .top-footer--contact {
    font-size: 16px;
  }
}
.top-footer--contact a {
  color: #000b80;
}
.top-footer--map {
  position: relative;
  line-height: 1;
}
.top-footer--map_frame {
  width: calc(50vw + 100px);
}
@media screen and (max-width: 425px) {
  .top-footer--map_frame {
    width: 100%;
    height: 500px;
  }
}
.top-footer--nav {
  display: flex;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  width: 100%;
  max-width: 520px;
}
@media screen and (max-width: 425px) {
  .top-footer--nav {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 12px;
    box-sizing: border-box;
  }
}
.top-footer--nav_link {
  font-size: 16px;
  color: #000b80;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid #000;
  padding: 12px 0;
  border-radius: 6px;
  text-align: center;
  max-width: 248px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  transition: 0.15s;
}
.top-footer--nav_link::after {
  content: '';
  background-image: url(../images/link-icon-blue.svg);
  width: 8px;
  height: 13px;
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.top-footer--nav_link:hover {
  background: #000b80;
  color: #fff;
}
@media screen and (max-width: 425px) {
  .top-footer--nav_link {
    font-size: 14px;
    padding: 10px 0;
  }
}
.top-footer--copyright {
  background: #000b80;
  color: #fff;
  padding: 38px 0;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .top-footer--copyright {
    padding: 24px 12px 120px 12px;
    font-size: 14px;
  }
}
