/* 新VI移行対応で追加 */

/* ------------------------------
TOPページ用のスタイル
------------------------------ */
.o-hero__text {
  width: 200px !important;
}

.o-hero {
  padding-top: 80px;
  background: none;
}
@media (max-width: 767px) {
  .o-hero {
    padding-top: 55px;
  }
}

.o-hero__inner {
  height: auto;
}

.o-hero__inner::before {
  display: none;
}

.o-hero__img_pc {
  display: none;
}

.o-hero__img_sp {
  display: block;
}

@media (min-width: 767px) {
  .o-hero__img_pc {
    display: block;
  }
  .o-hero__img_sp {
    display: none;
  }
}

.t-section.-homeService {
  margin-top: 0 !important;
}

.t-main {
  margin-top: 30px;
}

.o-header__logo {
  width: 172px;
}
@media (max-width: 900px) {
  .o-header__logo {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .o-header__logo {
    width: 26.66667vw;
  }
}
/* ------------------------------
下層ページ用のスタイル
------------------------------ */
/* 2026/03 追加 サービスバナー */
.service-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px calc(46 / 1280 * 100vw);
  background-color: #CFDFE6;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700;
}
.service-banner__content {
  flex: 1;
}
.service-banner__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 8px;
  padding: 2px 8px 0;
  border-radius: 6px;
  background-color: #EE4448;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
}
.service-banner__title {
  max-width: 347px;
  margin-left: -10px;
  margin-bottom: 4px;
}
.service-banner__text {
  margin-bottom: 32px;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #1A1948;
}
.service-banner__btn {
  display: inline-block;
}
.service-banner__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 4px 40px;
  background-color: #2445AA;
  border-radius: 360px;
  color: #fff;
  font-size: 1.6rem;
  
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.32, 0.94, 0.6, 1);
  transition-delay: 0;
  transition-property: all;
}
.service-banner__btn a:hover {
  background-color: #1C2562;
  opacity: 1;
  text-decoration: none;
}
.service-banner__btn a span {
  position: relative;
  top: 1px;
  font-weight: 700;
  line-height: 1;
}
.service-banner__img {
  max-width: 501px;
  width: calc(501 / 1280 * 100vw);
}

@media screen and (min-width: 1281px) {
  .service-banner {
      padding: 28px 46px;
  }
}
@media screen and (max-width: 767px) {
  .service-banner {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
      padding: 24px calc(14 / 375 * 100vw) 32px;
  }
  .service-banner__label {
      min-height: 26px;
      margin-bottom: 8px;
      font-size: 1.2rem;
  }
  .service-banner__title {
      max-width: 309px;
      margin-left: -1px;
  }
  .service-banner__text {
      margin-bottom: 12px;
      font-size: 2.2rem;
  }
  .service-banner__btn a {
      min-height: 40px;
      padding: 4px 20px;
      font-size: 1.4rem;
  }
  .service-banner__img {
      max-width: 100%;
      width: 100%;
  }
}
