@charset "utf-8";
/* ==========================================================================
   Inline Movie
========================================================================== */
.mv__video-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 0.5rem;
  overflow: hidden;
}
.mv__video-wrap .mv__thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
  cursor: pointer;
}
.mv__video-wrap .mv__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__video-wrap .mv__thumb.is-hidden {
  display: none;
}
.mv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: none;
}
.mv__video.is-active {
  display: block;
}
.mv__press-release {
  position: absolute;
  right: -7rem;
  bottom: -4.2rem;
  z-index: 2;
  width: 20rem;
  height: auto;
}
.mv__press-release-img {
  display: block;
  width: 100%;
  height: auto;
}
.mv__movie.is-playing .mv__press-release {
  z-index: 0;
}
#home-advantage {
  position: relative;
  z-index: 3;
}
/* ==========================================================================
   ボタンスタイル
========================================================================== */
.btn-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.btn-style {
  position: relative;
  isolation: isolate;
  transition: all 0.3s ease-out;
  display: inline-block;
}
.btn-style::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(166, 241, 255, 0.67) 0%, rgba(255, 255, 255, 0.9) 100%);
  filter: blur(20px);
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .btn-list {
    max-width: inherit;
    flex-direction: row;
    gap: 1rem;
  }
  .btn-list.center {
    justify-content: center;
  }
}
/* ==========================================================================
   メインビジュアル
========================================================================== */
.mv {
  position: relative;
  padding: 7.7rem 2rem 5rem;
}
.mv__inner {
  max-width: 500px;
  margin: 0 auto;
}
.mv__badge {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.9rem;
  padding: 0.32rem;
  border-radius: 56px;
  color: var(--color-main);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-indent: 0.4rem;
}
.mv__badge::before {
  content: "";
  position: absolute;
  inset: -2.4px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(to right, #ffffff 0%, #3d97ff 100%);
}
.mv__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, #75c0ea 0%, #ddeaf6 100%);
}
.mv__title {
  max-width: 420px;
  margin: 0 auto 1rem;
}
.mv__lead {
  margin-bottom: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625rem;
  letter-spacing: 0.0625rem;
}
.mv__movie {
  position: relative;
  margin: 1.5rem 0 1.8rem;
}
.mv__thumb {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.mv__thumb-img {
  width: 100%;
}
/* 〜1023px
----------------------------------------------- */
@media screen and (max-width: 1023px) {
  .mv__press-release {
    top: -8rem;
    right: -4rem;
    bottom: auto;
    width: clamp(11.5rem, 44vw, 16.5rem);
  }
  .mv__movie {
    margin-top: 3.2rem;
    margin-bottom: 2.8rem;
  }
  .mv .btn-list {
    margin-top: 1rem;
  }
}
/* 〜510px
----------------------------------------------- */
@media screen and (max-width: 510px) {
  .mv__press-release {
    right: -3.4rem;
    top: -6rem;
  }
}
/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  .mv__press-release {
    right: -11.2rem;
    bottom: -9.2rem;
  }
  .mv {
    padding: clamp(9rem, 3.5143rem + 8.5714vw, 13.8rem) 4.3vw clamp(8.5rem, 3.3571rem + 8.0357vw, 13rem);
  }
  .mv__inner {
    display: grid;
    grid-template-columns: 46% 50%;
    grid-template-rows: auto;
    align-items: center;
    gap: 0 4%;
    max-width: 1440px;
  }
  .mv__badge {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto 1.8rem 0;
    padding: 0.7rem 1.8rem;
    font-size: 1.1rem;
  }
  .mv__title {
    grid-column: 1;
    grid-row: 2;
    width: 92%;
    max-width: 610px;
    margin: 0 0 2rem;
  }
  .mv__lead {
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 1.4rem;
    font-size: clamp(1.1rem, 0.7143rem + 0.6027vw, 1.4375rem);
  }
  .mv__movie {
    grid-column: 2;
    grid-row: 1 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* 1024px〜1649px
----------------------------------------------- */
@media screen and (min-width: 1024px) and (max-width: 1649px) {
  .mv__press-release {
    right: -6.2rem;
    bottom: -7.4rem;
    width: clamp(14rem, 10vw, 16.5rem);
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  .mv__badge {
    margin-bottom: 2.2rem;
    padding: 0.9rem 2.3rem;
    font-size: 1.7rem;
  }
  .mv__lead {
    line-height: 2.5rem;
  }
}
/* ==========================================================================
   home-carego（ケアGOとは？）
========================================================================== */
#home-carego {
}
.home-carego__wrap {
  padding: 5.5rem 0 5rem;
  border-radius: 2.5rem;
  background: #fff;
}
.home-carego__inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 var(--s-inner-lr);
}
.home-carego__title {
  padding: 0 !important;
  margin-bottom: 1.7rem;
}
.home-carego__title::before {
  display: none;
}
.home-carego__title .title01__en {
  margin-bottom: 1.3rem;
}
.home-carego__title .title01__text {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #4e4e4e;
  font-size: 1.9rem;
}
.home-carego__title-logo {
  display: inline-block;
  width: 11.5rem;
  vertical-align: middle;
}
.home-carego__fig {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
/* 〜1023px
----------------------------------------------- */
@media screen and (max-width: 1023px) {
  .home-carego__text br {
    display: none;
  }
}
/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  .home-carego__wrap {
    max-width: 1560px;
    margin: 0 auto;
  }
  .home-carego__inner {
    flex-direction: row;
    align-items: center;
    gap: 3%;
  }
  .home-carego__body {
    flex: 1;
    min-width: 0;
  }
  .home-carego__title {
    margin-bottom: 3.7rem;
  }
  .home-carego__title-logo {
    width: clamp(14rem, 9.4286rem + 7.1429vw, 18rem);
  }
  .home-carego__title .title01__text span {
    font-size: clamp(2rem, 0.6286rem + 2.1429vw, 3.2rem);
  }
  .home-carego__text {
    font-size: clamp(1.05rem, 0.6786rem + 0.5804vw, 1.375rem);
  }
  .home-carego__fig {
    width: 45%;
    max-width: inherit;
    flex-shrink: 0;
  }
  .home-carego__fig-img {
    max-width: 100%;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  .home-carego__wrap {
    padding: 6rem 0 7.2rem;
  }
  .home-carego__inner {
    gap: 5%;
  }
  .home-carego__title {
    padding-top: 1.8rem !important;
  }
  .home-carego__title .title01__en {
    margin-bottom: 2.3rem;
  }
  .home-carego__fig {
    width: 43%;
  }
  .home-carego__text p {
    margin-bottom: 1.6rem;
  }
}

/* ==========================================================================
   home-challenges（3つの深刻な課題）
========================================================================== */
#home-challenges {
  padding-top: 5rem;
  padding-bottom: 8.7rem;
}
.home-challenges__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.challenge-card {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 1.5rem;
  background: #fbfbfb;
  overflow: hidden;
}
.challenge-card__top {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.challenge-card__img {
  width: 100%;
  max-width: 460px;
  overflow: hidden;
}
.challenge-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.challenge-card__body {
  margin-top: -1.5rem;
  padding: 0 2.2rem 1.9rem;
}
.challenge-card__num {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-main-light);
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  transform: translateX(-3px);
}
.challenge-card__title {
  margin: 0 0 0.35rem;
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}
.challenge-card__text {
  margin-bottom: 0;
  line-height: 1.75rem;
}
/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  .home-challenges__list {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
  }
  .home-challenges__item {
    display: flex;
    flex: 1;
    min-width: 0;
  }
  .home-challenges__item .challenge-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .challenge-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  #home-challenges {
    padding-top: 11.5rem;
    padding-bottom: 12.5rem;
  }
  .challenge-card {
    border-radius: 2.5rem;
  }
  .challenge-card__body {
    margin-top: -3rem;
    padding: 0 3rem 3rem;
  }
  .challenge-card__num {
    margin-bottom: 0.7rem;
    font-size: 3.4rem;
  }
  .challenge-card__title {
    margin-bottom: 0.9rem;
    font-size: 1.6rem;
  }
  .challenge-card__text {
    font-size: 1.125rem;
    line-height: 1.9rem;
  }
}

/* ==========================================================================
   home-features（ケアGOが持つ機能の特徴）
========================================================================== */
#home-features {
  padding-top: 7.6rem;
  background: #F5FAFF;
}
.home-features__title {
  margin-bottom: 3.8rem;
}
.home-features__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 var(--s-inner-lr);
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.feature-item__img {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.feature-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-item__body {
  display: flex;
  flex-direction: column;
}
.feature-item__head {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  text-align: center;
}
.feature-item__num {
  display: block;
  color: var(--color-main-light);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.feature-item__label {
  margin: 0.2rem 0 0;
  color: var(--color-main-light);
  font-size: 0.6rem;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06rem;
}
.feature-item__title {
  margin: 0.6rem 0 0.3rem;
  color: var(--color-main-dark);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}
.feature-item__text {
  line-height: 1.75rem;
  margin-bottom: 0;
}
/* 768px〜
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .home-features__list {
    gap: clamp(4rem, -4rem + 16.6667vw, 11rem);
    margin: 0 auto;
    max-width: 1650px;
  }
  .feature-item {
    flex-direction: row;
    align-items: center;
    gap: 5%;
    padding-left: var(--s-inner-lr);
    padding-right: calc(var(--s-inner-lr) / 2);
  }
  .feature-item--reverse {
    padding-left: calc(var(--s-inner-lr) / 2);
    padding-right: var(--s-inner-lr);
  }
  .feature-item--reverse .feature-item__img {
    order: 1;
  }
  .feature-item--reverse .feature-item__body {
    order: 2;
  }
  .feature-item__img {
    order: 2;
    flex-shrink: 0;
    width: 52%;
    max-height: 470px;
  }
  .feature-item__body {
    order: 1;
    flex: 1;
    min-width: 0;
  }
  .feature-item__label {
    order: -2;
    margin-top: 0;
    margin-bottom: 0;
    font-size: clamp(0.6rem, 0.1429rem + 0.9524vw, 1rem);
  }
  .feature-item__num {
    order: -1;
    margin-bottom: clamp(0.5rem, -1.7857rem + 4.7619vw, 2.5rem);
    font-size: clamp(3.75rem, 2.0833rem + 3.4722vw, 6.25rem);
  }
  .feature-item__title {
    margin-bottom: clamp(0.3rem, -0.8429rem + 2.381vw, 1.3rem);
    font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
  }
  .feature-item__text {
    font-size: clamp(1rem, 0.4286rem + 1.1905vw, 1.5rem);
    line-height: clamp(1.75rem, 0.8929rem + 1.7857vw, 2.5rem);
  }
}
/* 〜767px
----------------------------------------------- */
@media screen and (max-width: 1023px) {
  .feature-item__text br {
    display: none;
  }
}
/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  #home-features {
    padding-top: 11.5rem;
  }
  .feature-item__img {
    width: 57.5%;
    border-radius: 3.5rem;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  .home-features__title {
    margin-bottom: 8rem;
  }
  .feature-item {
    gap: 6.2%;
    padding-left: 8.8%;
    padding-right: 3%;
  }
  .feature-item--reverse {
    padding-left: 3%;
    padding-right: 8.8%;
  }
}
/* ==========================================================================
   home-flow（各機能の3ステップフロー）
========================================================================== */
#home-flow {
  position: relative;
  z-index: 4;
  padding-top: 6.2rem;
  padding-bottom: 7.8rem;
  background: #F5FAFF;
}
#home-flow::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 35px;
  background: #F5FAFF;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.home-flow__title {
  margin-bottom: 4rem;
}
.home-flow__title .title01__text {
  letter-spacing: 0;
}
.flow-group {
  max-width: 1560px;
  margin: 0 auto 4.3rem;
}
.flow-group:last-child {
  margin-bottom: 0;
}
.flow-group__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0 var(--s-inner-lr) 2rem;
  padding-bottom: 0.8rem;
}
.flow-group__title {
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.4;
}
.flow-group__en {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 0;
}
.flow-group__en span {
  position: relative;
  z-index: 1;
  padding-left: 1rem;
  color: var(--color-text-light);
  font-size: 0.75rem;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1;
  background: #fbfbfb;
}
.flow-group__en::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background: var(--color-text-light);
  opacity: 0.5;
}

/* カード
----------------------------------------------- */
.flow-cards {
  display: flex;
  gap: 1.2rem;
  margin: 0 var(--s-inner-lr);
  list-style: none;
  min-width: max-content;
}
.flow-card {
  width: 69vw;
  max-width: 320px;
  flex-shrink: 0;
}
.flow-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.flow-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-card__title {
  margin: 0 0 0.2rem;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
.flow-card__text {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  #home-flow {
    padding-top: clamp(4.4rem, -27.6rem + 50vw, 17.4rem);
    padding-bottom: clamp(7.8rem, 0.4154rem + 11.5385vw, 10.8rem);
  }
  #home-flow::after {
    bottom: -119px;
    height: 120px;
  }
  .flow-group {
    padding: 0 var(--s-inner-lr);
    margin-bottom: clamp(4.3rem, -1.6429rem + 12.381vw, 9.5rem);
  }
  .flow-group__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 1.4rem;
  }
  .flow-group__title {
    margin-right: 0;
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .flow-group__en {
    margin-left: 0;
    width: calc(100% - 470px);
  }
  .flow-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-width: unset;
    margin: 0;
  }
  .flow-card {
    width: auto;
    max-width: none;
  }
  .flow-card__img {
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 9;
  }
  .flow-card__body {
    padding-left: 8px;
    margin-right: 40px;
  }
  .flow-card__title {
    margin-bottom: 0.5rem;
    font-size: clamp(1.4rem, 1.1538rem + 0.3846vw, 1.5rem);
  }
  .flow-card__text {
    font-size: 1.125rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  #home-flow::after {
    bottom: -149px;
    height: 150px;
  }
  .home-flow__title {
    margin-bottom: 8rem;
  }
  .flow-group__title {
    font-size: 2rem;
  }
  .flow-group__en span {
    padding-left: 1.2rem;
    font-size: 1rem;
  }
}
/* スクローラー（SP：横スクロール）
----------------------------------------------- */
.flow-group__scroller-wrap {
  position: relative;
}
.flow-group__scroller {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.flow-group__scroller::-webkit-scrollbar {
  display: none;
}
.flow-group__hint {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.2rem;
  border-radius: 12px;
  background: rgba(30, 40, 80, 0.85);
  color: #fff;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.flow-group__hint.is-hidden {
  opacity: 0;
}
.flow-group__hint-icon {
  display: block;
  width: 50px;
  aspect-ratio: 1 / 1;
  background: url("../images/icon-swipe.png") no-repeat center;
  background-size: contain;
}
.flow-group__hint-text {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .flow-group__scroller {
    overflow: visible;
  }
  .flow-group__hint {
    display: none;
  }
}

/* ==========================================================================
   home-advantage（AI導入がもたらす圧倒的メリット）
========================================================================== */
#home-advantage {
  padding-top: calc(5rem + 35px);
  padding-bottom: 14rem;
  scroll-margin-top: -5rem;
}
/* left（メインコピー）
----------------------------------------------- */
.home-advantage__left {
  margin-bottom: 0.7rem;
}
.home-advantage__title {
  margin-bottom: 1.6rem;
}
.home-advantage__merit {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
}
.home-advantage__ratio {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: min(34vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.3rem;
  text-indent: -1.1rem;
  text-align: center;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 60px rgba(180, 210, 255, 0.7),
    0 0 120px rgba(120, 170, 255, 0.5);
}
.home-advantage__label {
  display: inline-block;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  width: 100%;
  max-width: 460px;
  background: #fff;
  color: var(--color-main);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.home-advantage__desc {
  font-weight: 500;
  line-height: 1.625rem;
  letter-spacing: 0.0625rem;
}
/* right（メリットリスト）
----------------------------------------------- */
.home-advantage__right {
  padding: 5rem var(--s-inner-lr) 4.3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 2.5rem;
  background: rgba(251, 251, 251, 0.8);
  box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.35);
}
.home-advantage__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.advantage-item__icon {
  flex-shrink: 0;
}
.advantage-item__icon01 svg {
  margin-bottom: 1.5rem;
  width: 8.199rem;
  height: 7.01756rem;
}
.advantage-item__icon02 svg {
  margin-bottom: 1.1rem;
  width: 8.09425rem;
  height: 7.79463rem;
}
.advantage-item__icon03 svg {
  margin-bottom: 1.5rem;
  width: 7.53319rem;
  height: 7.53281rem;
}
.advantage-item__icon04 svg {
  margin-bottom: 1.3rem;
  width: 7.7495rem;
  height: 6.7905rem;
}
.advantage-item__category {
  margin-bottom: 0.3rem;
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: 600;
}
.advantage-item__title {
  margin-bottom: 0.5rem;
  color: var(--color-main);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
.advantage-item__text {
  margin-bottom: 0;
  line-height: 1.75rem;
}
.advantage-item__divider {
  width: 100%;
  height: 1px;
  margin: 2.5rem auto;
  border: none;
  background-image: repeating-linear-gradient(to right, #737c8b 0px, #737c8b 8px, transparent 8px, transparent 16px);
}
/* 768px〜
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .advantage-item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .advantage-item__title {
    font-size: 1.5rem;
  }
}
/* 1024px〜：左右2カラム（左sticky）
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  #home-advantage {
    padding-top: 15rem;
    padding-bottom: 11rem;
  }
  .home-advantage__inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    z-index: 1;
    width: calc(100% - var(--s-inner-lr) * 2);
    max-width: 1560px;
    margin-right: auto;
    margin-left: auto;
  }
  .home-advantage__left {
    position: sticky;
    top: 7rem;
    flex: 1;
    width: calc(100% - 520px - 3rem);
    align-self: flex-start;
    z-index: 0;
  }
  .home-advantage__left .container {
    margin: 0;
    padding: 0;
  }
  .home-advantage__merit {
    max-width: 500px;
  }
  .home-advantage__ratio {
    font-size: 9rem;
  }
  .home-advantage__right {
    position: relative;
    z-index: 10;
    width: 520px;
    padding: 3rem 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 60px 0 rgba(0, 0, 0, 0.45);
  }
  .home-advantage__list {
    margin-top: 0;
  }
  .advantage-item__divider {
    margin: 1.2rem auto;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  #home-advantage {
    padding-top: 18rem;
    padding-bottom: 11rem;
  }
  .home-advantage__inner {
    max-width: 1560px;
    /*padding-left: 5.3%;*/
  }
  .home-advantage__left {
    padding-top: 3rem;
    width: calc(100% - 650px - 5.3%);
    top: 7rem;
  }
  .home-advantage__merit {
    width: 80%;
  }
  .home-advantage__title {
    margin-bottom: 2.5rem;
  }
  .home-advantage__ratio {
    margin-bottom: 3rem;
    font-size: clamp(11rem, 2rem + 10vw, 14rem);
  }
  .home-advantage__desc {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
  .home-advantage__right {
    width: 650px;
    padding: 3.5rem 4rem;
  }
  .advantage-item {
    gap: 1.8rem;
    padding-right: 1rem;
  }
  .advantage-item__category {
    font-size: 1.5rem;
  }
  .advantage-item__title {
    font-size: 1.75rem;
  }
  .advantage-item__text {
    font-size: 1.125rem;
    line-height: 2rem;
  }
  .advantage-item__divider {
    margin: 2.1rem auto;
  }
}
/* ==========================================================================
   home-review（導入した現場からのレビュー）
========================================================================== */
#home-review {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #F5FAFF;
}
/* ヘッド
----------------------------------------------- */
.home-review__head {
  margin-bottom: 2.5rem;
}
.home-review__en {
  margin: 0 0 0.4rem;
  color: var(--color-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  opacity: 0.6;
}
.home-review__title {
  display: flex;
  align-items: center;
  gap: 0.6rm;
  color: var(--color-main-dark);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}
.home-review__title-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--color-main);
  border-radius: 50%;
  opacity: 0.5;
}
.home-review__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.review-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-item__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 2rem;
  overflow: hidden;
}
.review-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 0 0 0.4rem;
}
.review-item__facility {
  color: #1A1C1C;
  font-size: 1rem;
  font-weight: 700;
  word-break: keep-all;
}
.review-item__name {
  font-size: 0.875rem;
  word-break: keep-all;
}
.review-item__title {
  margin: 0 0 0.5rem;
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.review-item__text p {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  line-height: 1.75rem;
}
.review-item__text p:last-child {
  margin-bottom: 0;
}

/* 768px〜：画像左・テキスト右の横並び
----------------------------------------------- */
@media screen and (min-width: 768px) {
  #home-review {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .review-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 6%;
  }
  .review-item__img {
    width: 36%;
    flex-shrink: 0;
  }
  .review-item__body {
    flex: 1;
    min-width: 0;
  }
}

/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  #home-review {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .home-review__list {
    gap: 4rem;
  }
  .review-item__img {
    width: 32%;
  }
  .review-item__meta {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
  }
  .review-item__facility {
    font-size: 1.125rem;
  }
  .review-item__name {
    font-size: 1rem;
  }
  .review-item__title {
    margin: 0 0 1rem;
    font-size: 1.75rem;
  }
  .review-item__text p {
    font-size: 1.125rem;
    line-height: 2.25rem;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  #home-review {
    padding-top: 16rem;
    padding-bottom: 11rem;
  }
}

/* ==========================================================================
   home-plan（プラン体系）
========================================================================== */
#home-plan {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.home-plan__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* 無料バッジ
----------------------------------------------- */
.home-plan__badge-wrap {
  position: relative;
  isolation: isolate;
  width: min(88vw, 380px);
  padding-bottom: clamp(3rem, 13vw, 4.4rem);
  margin-right: auto;
  margin-left: auto;
}
.home-plan__badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 64vw, 300px);
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1 / 1;
  text-align: center;
  color: var(--color-main-dark);
}
.home-plan__badge::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 30px 10px rgba(255, 255, 255, 0.9),
    0 0 80px 30px rgba(180, 210, 255, 0.7),
    0 0 160px 60px rgba(120, 170, 255, 0.4),
    0 0 280px 100px rgba(80, 140, 255, 0.2);
}
.home-plan__badge-sub,
.home-plan__badge-main {
  position: relative;
  z-index: 2;
  transform: translateY(-1.1rem);
}
.home-plan__badge-sub {
  margin-bottom: clamp(0.25rem, 1vw, 0.4rem);
  padding-top: 0.2rem;
  font-size: clamp(1.45rem, 6vw, 1.65rem);
  font-weight: 600;
  line-height: 1;
}
.home-plan__badge-main {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 14vw, 3.7rem);
  font-weight: 700;
  line-height: 1;
}
.home-plan__feature-badge {
  position: absolute;
  z-index: 1;
  right: clamp(0rem, 2vw, 0.5rem);
  bottom: calc(-1 * clamp(0.4rem, 3vw, 1.2rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 49vw, 235px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 24px 8px rgba(255, 255, 255, 0.88),
    0 0 70px 20px rgba(180, 210, 255, 0.52);
  text-align: center;
  color: var(--color-main-dark);
}
.home-plan__feature-main {
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 7.4vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  transform: translateY(0.45rem);
}
.home-plan__feature-note {
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 4vw, 16px);
  font-weight: 500;
  line-height: 2.75;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateY(0.45rem);
}
/* プランカード
----------------------------------------------- */
.home-plan__card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 3.8rem;
  border-radius: 2rem;
  background: #fbfbfb;
  overflow: hidden;
}
.home-plan__card-top {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.home-plan__card-img {
  width: 91%;
  max-width: 540px;
  overflow: hidden;
}
.home-plan__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.home-plan__card-content {
  width: 100%;
  padding-left: var(--s-inner-lr);
  padding-right: var(--s-inner-lr);
}
.home-plan__card-text {
  margin-top: -0.3rem;
}
.home-plan__card-logo {
  margin: 0 0 2rem;
  line-height: 1;
}
.home-plan__card-logo img {
  height: 54px;
  width: auto;
  display: block;
}
.home-plan__checklist li {
  margin-bottom: 1.7rem;
  padding-left: 2.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.9rem;
  letter-spacing: 0.0625rem;
  color: var(--color-text-dark);
  background: url(../images/icon-check.png) no-repeat left 0.4rem;
  background-size: 2rem;
}
.home-plan__checklist li:last-child {
  margin-bottom: 0;
}
.home-plan__checklist li:first-child {
  margin-bottom: 0.9rem;
  padding-top: 0.45rem;
  background-position: left 0.85rem;
}
.home-plan__checklist li span {
  font-size: 0.875rem;
  font-weight: 700;
}
.home-plan__trial-note {
  width: 100%;
  max-width: none;
  margin: 33.3px auto 18px;
  color: var(--color-main-dark);
  font-size: clamp(20px, 2.7vw, 26px);
  font-weight: 700;
  line-height: 37.4px;
  letter-spacing: 1.1px;
  text-align: center;
}
.home-plan__trial-note span {
  position: relative;
  display: inline-block;
  max-width: calc(100% - 2em);
  padding: 0 0.25em;
  background: linear-gradient(transparent 8%, rgba(61, 151, 255, 0.25) 8%, rgba(61, 151, 255, 0.25) 92%, transparent 92%);
  white-space: normal;
}
.home-plan__trial-note span::before,
.home-plan__trial-note span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 1.25em;
  background: var(--color-main-dark);
}
.home-plan__trial-note span::before {
  left: -0.7em;
  transform: translateY(-50%) rotate(-25deg);
}
.home-plan__trial-note span::after {
  right: -0.7em;
  transform: translateY(-50%) rotate(25deg);
}
.home-plan__card-btns .btn-style::after {
  display: none;
}
/* 〜767px
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .home-plan__feature-note {
    font-size: clamp(11px, 3.4vw, 13px);
  }
  .home-plan__checklist li br {
    display: none;
  }
  .home-plan__trial-note {
    margin-top: 2.4rem;
    font-size: clamp(16px, 5.1vw, 20px);
    line-height: 1.45;
  }
  .home-plan__trial-note span::before {
    left: -0.6em;
  }
  .home-plan__trial-note span::after {
    right: -0.6em;
  }
}
@media screen and (max-width: 374px) {
  .home-plan__badge-wrap {
    width: min(92vw, 340px);
  }
  .home-plan__badge {
    width: clamp(200px, 62vw, 230px);
  }
  .home-plan__feature-badge {
    width: clamp(152px, 47vw, 176px);
  }
  .home-plan__trial-note {
    font-size: 15px;
  }
}
/* 768px〜
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .home-plan__card-text {
    padding-top: 0;
    margin-top: -7rem;
  }
  .home-plan__trial-note {
    width: min(100%, calc(742px + 1rem));
    margin-right: auto;
    margin-left: 0;
  }
}
/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  .home-plan__inner {
    flex-direction: row;
    align-items: center;
    gap: 5%;
    padding: 0 var(--s-inner-lr);
    max-width: 1560px;
    margin-right: auto;
    margin-left: auto;
  }
  .home-plan__card {
    margin: 0 !important;
    padding-bottom: 4rem;
  }
  .home-plan__card-content {
    padding: 0 3rem;
  }
  .home-plan__badge-wrap {
    width: 35%;
    padding-bottom: 0;
    flex-shrink: 0;
  }
  .home-plan__badge {
    width: 100%;
    max-width: 280px;
  }
  .home-plan__feature-badge {
    width: min(72%, 255px);
    right: -1rem;
    bottom: -3.7rem;
  }
  .home-plan__feature-main {
    font-size: 40px;
  }
  .home-plan__feature-note {
    font-size: 16px;
  }
  .home-plan__card-img {
    width: 70%;
  }
}
/* 1024px〜1439px
----------------------------------------------- */
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .home-plan__feature-badge {
    width: min(62%, 220px);
    right: -0.4rem;
    bottom: -4.2rem;
  }
  .home-plan__feature-main {
    font-size: 34px;
    line-height: 1.18;
  }
  .home-plan__feature-note {
    font-size: 14px;
    line-height: 2.5;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  #home-plan {
    padding-top: 12rem;
    padding-bottom: 19rem;
  }
  .home-plan__title {
    margin-bottom: 7rem;
  }
  .home-plan__badge-wrap {
    width: 31%;
  }
  .home-plan__badge {
    max-width: 400px;
  }
  .home-plan__feature-badge {
    width: min(64%, 255px);
    right: -0.6rem;
    bottom: -4.5rem;
  }
  .home-plan__badge-sub {
    font-size: 2.7225rem;
  }
  .home-plan__badge-main {
    font-size: 6.25rem;
  }
  .home-plan__badge-sub,
  .home-plan__badge-main {
    transform: translateY(-2.1rem);
  }
  .home-plan__feature-main {
    font-size: 40px;
  }
  .home-plan__feature-note {
    font-size: 16px;
  }
  .home-plan__card-content {
    margin-top: -11rem;
    padding: 0 3.6rem;
  }
  .home-plan__card-logo img {
    height: 64px;
  }
  .home-plan__checklist li {
    margin-bottom: 1.7rem;
    font-size: 1.375rem;
  }
}
/* 1440px〜1659px
----------------------------------------------- */
@media screen and (min-width: 1440px) and (max-width: 1659px) {
  .home-plan__checklist li:first-child span {
    display: block;
  }
}
/* 1660px〜
----------------------------------------------- */
@media screen and (min-width: 1660px) {
  .home-plan__inner {
    padding-right: 0;
  }
  .home-plan__card {
    max-width: inherit;
  }
}

/* ==========================================================================
   home-process（導入までの流れ）
========================================================================== */
#home-process {
  padding-top: 5rem;
}
.home-process__inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 5rem var(--s-inner-lr) 5rem;
  border-radius: 2.5rem;
  background: #fff;
}
.home-process__title {
  margin-bottom: 3.2rem;
}
.process-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #4f4f4f;
  z-index: 0;
}
.process-item {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding: 1.5rem 1.5rem 1.5rem 2.1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.process-item::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 2.2rem;
  background: linear-gradient(to right, #ffffff 0%, #69b6ff 100%);
}
.process-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(194, 245, 254, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.process-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.process-item__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.process-item__title {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-text-dark);
  font-size: 1.5rem;
  font-weight: 600;
}
.process-item__tag {
  display: flex;
  width: 6.2rem;
  height: 1.6rem;
  padding: 0.3rem 0 0.4rem 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #3c97ff;
  color: #fff;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.44rem;
}
.process-item__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-item__num img {
  width: 60px;
  height: auto;
}
.process-item__text {
  margin-bottom: 0;
  line-height: 1.5rem;
  font-weight: 400;
}

/* 768px〜
----------------------------------------------- */
@media screen and (min-width: 768px) {
  #home-process {
    padding-top: 5rem;
  }
  .home-process__inner {
    display: flex;
    gap: 6%;
    align-items: flex-start;
    padding: 3rem 3rem;
  }
  .home-process__head {
    width: 220px;
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
  }
  .process-list {
    flex: 1;
    min-width: 0;
  }
}

/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  #home-process {
    padding-top: 0;
  }
  .home-process__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4%;
  }
  .home-process__inner {
    padding: 4rem;
  }
  .process-item__head {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }
  .home-process__head {
    width: 260px;
  }
  .home-process__title {
    font-size: 1.375rem;
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  .process-item::before {
    border-radius: 2.5rem;
  }
  .process-item::after {
    border-radius: 2.3rem;
  }
  #home-process .container {
    gap: 10%;
  }
  .home-process__inner {
    grid-template-columns: 470px 1fr;
    padding: 6rem 5rem 8rem 6rem;
  }
  .home-process__left {
    padding-top: 3rem;
  }
  .process-list {
    gap: 2.8rem;
  }
  .process-item {
    padding: 2.2rem 2.6rem;
    gap: 1.6rem;
  }
  .process-item__body {
    gap: 0.3rem;
  }
  .process-item__num img {
    width: 4.5rem;
  }
  .process-item__head {
    gap: 1.8rem;
  }
  .process-item__title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .process-item__tag {
    width: 7.7rem;
    height: 2rem;
    font-size: 1rem;
  }
  .process-item__text {
    font-size: 1.125rem;
  }
}
/* ==========================================================================
   home-faq（よくある質問）
========================================================================== */
#home-faq {
  padding-top: 5rem;
  padding-bottom: 15rem;
  background: #fff;
}
.home-faq__title {
  margin-bottom: 0;
}
.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 5rem auto 0;
}
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid #000000;
}
.faq-item__question,
.faq-item__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.faq-item__question {
  color: #0D0F68;
}
.faq-item__answer {
  color: #4F4F4F;
}
.faq-item__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}
.faq-item__question-text {
  margin: 0;
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}
.faq-item__answer-text {
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}
.faq-item__answer-text p {
  margin-bottom: 0;
}

/* 768px〜
----------------------------------------------- */
@media screen and (min-width: 768px) {
  .home-faq__list {
    max-width: calc(100% - 160px);
  }
}
/* 1024px〜
----------------------------------------------- */
@media screen and (min-width: 1024px) {
  .home-faq__list {
    max-width: calc(100% - 320px);
  }
}
/* 1440px〜
----------------------------------------------- */
@media screen and (min-width: 1440px) {
  #home-faq {
    padding-top: 6rem;
    padding-bottom: 15rem;
  }
  .home-faq__list {
    width: calc(100vw - 560px);
    max-width: none;
    margin-left: calc(50% - 50vw + 280px);
    margin-right: 0;
  }
  .faq-item__question,
  .faq-item__answer {
    gap: 20px;
  }
}
/* ==========================================================================
   home-cta（Footer CTA）
========================================================================== */
#home-cta {
  padding-top: 8.8rem;
  padding-bottom: 8rem;
  text-align: center;
}
.home-cta__title {
  position: relative;
  z-index: 1;
  margin: 0 auto 3.3rem;
  width: 100%;
  max-width: 420px;
  padding: 0;
}
/* 768px〜
----------------------------------------------- */
@media screen and (min-width: 768px) {
  #home-cta {
    padding-top: clamp(8.8rem, -2.8333rem + 24.2361vw, 26.25rem);
    padding-bottom: clamp(10rem, 9.3333rem + 1.3889vw, 11rem);
  }
  .home-cta__title {
    width: clamp(36rem, 24.6667rem + 23.6111vw, 53rem);
    max-width: inherit;
    margin-bottom: 4rem;
  }
}

.bg01 {
  background-image: url(../images/mv-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #000510;
  background-size: 100%;
}
#home-challenges {
  background-image: url(../images/challenges-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-color: #000510;
  background-size: 100%;
}
#home-advantage {
  position: relative;
  isolation: isolate;
  background-image: url(../images/bg03-sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  #home-advantage {
    background-attachment: fixed;
  }
}
#home-advantage::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 40rem;
  background: #000;
  background: linear-gradient(180deg, #000 22.6%, rgba(0, 0, 0, 0.65) 69.23%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: hard-light;
}
.home-plan-process {
  position: relative;
  isolation: isolate;
  padding-bottom: 174px;
  background-image: url(../images/bg03-sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
.home-plan-process::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 40rem;
  background: #000;
  background: linear-gradient(180deg, #000 22.6%, rgba(0, 0, 0, 0.65) 69.23%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: hard-light;
}
.home-plan-process::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40rem;
  background: #000;
  background: linear-gradient(0deg, #000 22.6%, rgba(0, 0, 0, 0.65) 69.23%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: hard-light;
}
.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 40rem;
  background: #000;
  background: linear-gradient(180deg, #000 22.6%, rgba(0, 0, 0, 0.65) 69.23%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: hard-light;
}
@media screen and (min-width: 1024px) {
  .bg01 {
    background-image: url(../images/mv-bg-pc.jpg);
  }
  #home-challenges {
    background-image: url(../images/challenges-bg-pc.jpg);
  }
  #home-advantage {
    background-image: url(../images/bg03-pc.jpg);
  }
  #home-advantage::before {
    top: -1px;
    height: 50rem;
  }
  .home-plan-process {
    background-image: url(../images/bg03-pc.jpg);
    background-position: top center;
    background-size: 100%;
  }
  .home-plan-process::before {
    top: -1px;
    height: 33rem;
  }
  .home-plan-process::after {
    height: 33rem;
  }
  .footer::before {
    top: -1px;
    height: 33rem;
  }
}
