.splash {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
}

.splash__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.splash__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splash__inner {
  width: calc(100% - 40px);
  margin-left: auto;
  background: #fff;
  overflow: hidden;
}

.splash__copy {
  position: absolute;
  top: 150px;
  left: 200px;
  z-index: 2;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.splash__catch {
  margin-bottom: 15px;
  font-size: 48px;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
}

.splash__read {
  display: block;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.52;
  padding-left: 4px;
  color: #fff;
}

.splash__news {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  bottom: 32px;
  width: 90%;
  gap: 0 50px;
  background-color: #fff;
}
.splash__news .title {
  flex-shrink: 0;
  padding: 16px 24px;
  font-size: 20px;
}
.splash__news .button {
  flex-shrink: 0;
  margin-left: auto;
}

.splash__news--link {
  display: flex;
  align-items: center;
  width: 80%;
  height: 100%;
}
.splash__news--link .inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
}
.splash__news--link .inner dt {
  flex-shrink: 0;
}
.splash__news--link .inner dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* **************************************************************
 about
*************************************************************** */
.about {
  position: relative;
  padding: 0;
}
.about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../img/top/bg_about.jpg) no-repeat center/cover;
}

.about__content {
  width: 50%;
  height: 100%;
  padding: 140px;
  margin-left: auto;
  background-color: var(--color-primary);
}
.about__content .title__sec {
  color: #fff;
}
.about__content .text__summary {
  margin: 25px 0;
  color: #fff;
}

/* **************************************************************
 service
*************************************************************** */
.service {
  position: relative;
  padding-top: 120px;
}
.service::before {
  content: "";
  position: absolute;
  right: 0;
  top: 40px;
  width: calc(100% - 64px);
  height: 373px;
  background: url(../img/top/bg_service.jpg) no-repeat center/cover;
}

.service__content {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  padding: 56px;
}

.service__inner {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 64px;
  padding: 56px;
  background-color: #fff;
}
.service__inner .text__summary {
  margin: 25px 0;
}

.service__images {
  position: absolute;
  left: 75%;
  top: 50%;
  translate: -50% -50%;
  width: 50%;
  text-align: center;
}

/*--------------------------------------------------------------------------------
  media 
--------------------------------------------------------------------------------*/
@media (max-width: 1439px) {
  /* **************************************************************
   about
  *************************************************************** */
  .about::before {
    width: 30%;
  }
  .about__content {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  /* **************************************************************
   about
  *************************************************************** */
  .about__content {
    padding: 80px;
  }
  /* **************************************************************
   service
  *************************************************************** */
  .service__content {
    width: 70%;
  }
}
@media (max-width: 767px) {
  /* **************************************************************
   splash
  *************************************************************** */
  .splash {
    height: auto;
  }
  .splash__inner {
    margin-right: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .splash__copy {
    position: relative;
    left: 0;
    top: 0;
  }
  .splash__catch {
    margin-bottom: 0;
    font-size: 32px;
  }
  .splash__news {
    position: relative;
    flex-wrap: wrap;
    left: 50%;
    translate: -50%;
    bottom: 0;
    width: 100%;
    gap: 0;
    margin-top: 70px;
  }
  .splash__news .title {
    padding-right: 0;
  }
  .splash__news .button {
    width: 100%;
    justify-content: center;
  }
  .splash__news .button::after {
    margin-left: initial;
  }
  .splash__news--link {
    width: calc(100% - 105px);
    padding: 16px 24px;
  }
  /* **************************************************************
   about
  *************************************************************** */
  .about::before {
    display: none;
  }
  .about__content {
    width: 100%;
    padding: 55px 25px;
  }
  /* **************************************************************
   service
  *************************************************************** */
  .service {
    padding-top: 0;
    padding-bottom: 0;
  }
  .service__content {
    width: 100%;
    padding: 0;
  }
  .service__inner {
    margin-left: 0;
    padding: 55px 25px;
  }
}/*# sourceMappingURL=top.css.map */