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

.splash__img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.splash__img .swiper-wrapper,
.splash__img .swiper-slide {
  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: 3;
  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: 35px;
  font-size: 20px;
  line-height: 1.52;
  padding-left: 4px;
  color: #fff;
}

.splash__catch,
.splash__read {
  text-shadow: 0 0 8px var(--color-primary), 0 4px 16px var(--color-primary);
}

.splash__news {
  position: absolute;
  z-index: 4;
  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--list {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  border-left: 1px solid #e0e0e0;
}
.splash__news--link {
  display: flex;
  align-items: center;
  width: 100%;
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 24px;
}
.splash__news--link:last-child {
  border-bottom: none;
}
.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;
}
.splash__news--link .inner dd .tag.new {
  margin-right: 8px;
  padding: 6px 12px;
  vertical-align: middle;
}

/* **************************************************************
 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;
}

/* **************************************************************
 case
*************************************************************** */
.case {
  position: relative;
  background-color: var(--color-base);
  color: #fff;
}
.case::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% 0;
  width: 100%;
  height: 240px;
  background: url(../img/top/bg_case.jpg) no-repeat center/cover;
}
.case .container {
  position: relative;
}
.case .swiper__gallery {
  margin: 60px 0;
}

.case__box {
  border: 1px solid #fff;
}

.case__box--head {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
}

.case__box--img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.case__box--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case__box--content {
  padding: 15px 25px;
}
.case__box--content .title__min {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case__box--cap {
  font-weight: bold;
}

/*--------------------------------------------------------------------------------
  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__catch br,
  .splash__read br {
    display: none;
  }
  .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 */

/* ===========================================
   ヘッダー：CIC表記＆お問い合わせボタン圧縮
   =========================================== */

/* ---- コンソーシアムメニュー（2段表示） ---- */
.header__menu .menu__cic {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    text-align: center;
}

.header__menu .menu__cic-sub {
    font-size: 0.85em;
    letter-spacing: 0.02em;
}
