.splash {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 40px;
}

.splash__inner {
  width: calc(100% - 40px);
  min-height: 564px;
  padding-top: 40.2857142857%;
  margin-left: auto;
  background: #fff url(../img/top/bg_splash.jpg) no-repeat left bottom/contain;
  border-radius: 0 0 0 64px;
  overflow: hidden;
}

.splash__copy {
  position: absolute;
  top: 50%;
  left: 200px;
  translate: 0 -50%;
  z-index: 2;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.splash__catch {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 96px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.splash__read {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  padding-left: 4px;
}

/* **************************************************************
 about
*************************************************************** */
.about {
  position: relative;
  color: #fff;
}

.about .title__sec .sub {
  color: #fff;
}

.about__summary p {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

/* **************************************************************
news
*************************************************************** */
.news .column__side {
  max-width: 20%;
}

/* **************************************************************
 service
*************************************************************** */
.service .column__wrap {
  gap: 50px 100px;
}

/* **************************************************************
 works
*************************************************************** */
.works {
  padding-top: 0;
}

.works__list .card {
  padding: 24px;
  border-top: 1px solid #d9d9da;
}

.works__list .card:last-of-type {
  border-bottom: 1px solid #d9d9da;
}

.works__list .card--thumb {
  width: 120px;
}

.works__gallery {
  margin-top: 80px;
}

/*--------------------------------------------------------------------------------
  media 
--------------------------------------------------------------------------------*/
@media (max-width: 1024px) {

  /* **************************************************************
   splash
  *************************************************************** */
  .splash__catch {
    white-space: normal;
    font-size: 80px;
  }

  .splash__copy {
    left: 100px;
  }
}

@media (max-width: 767px) {

  /* **************************************************************
   splash
  *************************************************************** */
  .splash {
    padding-top: 80px;
  }

  .splash__inner {
    width: calc(100% - 24px);
    padding-top: 171.4285714286%;
    min-height: initial;
    background-image: url(../img/top/bg_splash_sp.jpg);
    background-position: right top;
    background-size: cover;
  }

  .splash__catch {
    font-size: clamp(32px, 8.2vw, 62px);
  }

  .splash__copy {
    left: 75px;
  }

  /* **************************************************************
   news
  *************************************************************** */
  .news .column__side {
    max-width: 100%;
  }

  /* **************************************************************
   service
  *************************************************************** */
  /* **************************************************************
   works
  *************************************************************** */
  .works__list .card--thumb {
    width: auto;
    height: 120px;
  }

  .works__gallery {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .works__gallery .img-box {
    margin: 0 auto;
  }
}

/*# sourceMappingURL=top.css.map */