.home-hero {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.home-hero::after {
  aspect-ratio: 896/337;
  background: url(../../images/home/hero_ornament.svg) center center no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: min(6.94vw, 6.25rem);
  right: 4.51vw;
  width: 62.22vw;
  z-index: 2;
}
.home-hero .swiper-container,
.home-hero .swiper-wrapper {
  height: 100%;
  transition-property: opacity;
  width: 100%;
}
.home-hero .swiper-wrapper {
  box-sizing: border-box;
}
.home-hero .swiper-slide-active::before,
.home-hero .swiper-slide-duplicate-active::before,
.home-hero .swiper-slide-prev::before {
  animation: heroZoom 8.25s linear 0s normal both;
}

@keyframes heroZoom {
  from {
    transform: scale(1.075);
  }
  to {
    transform: scale(1);
  }
}
.home-hero-slider > .list {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}
.home-hero-slider > .list::before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-hero-slider > .list.-list01::before {
  background-image: url(../../images/home/hero01.jpg);
}
@supports (background-image: url("../../images/home/hero01.webp")) {
  .home-hero-slider > .list.-list01::before {
    background-image: url(../../images/home/hero01.webp);
  }
}
.home-hero-slider > .list.-list02::before {
  background-image: url(../../images/home/hero02.jpg);
}
@supports (background-image: url("../../images/home/hero02.webp")) {
  .home-hero-slider > .list.-list02::before {
    background-image: url(../../images/home/hero02.webp);
  }
}
.home-hero-slider > .list.-list03::before {
  background-image: url(../../images/home/hero03.jpg);
}
@supports (background-image: url("../../images/home/hero03.webp")) {
  .home-hero-slider > .list.-list03::before {
    background-image: url(../../images/home/hero03.webp);
  }
}

.home-hero-text-wrapper {
  margin: 0 auto;
  padding: 0 var(--margin-side-small);
  position: absolute;
  right: 0;
  bottom: var(--margin-side-small);
  left: 0;
  z-index: 3;
}

.home-hero-text {
  color: var(--color-project-blue);
  font-feature-settings: "palt" 1;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.home-hero-text > .inner {
  display: inline-flex;
  margin-bottom: 0.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-hero-text > .inner > .text {
  position: relative;
  z-index: 3;
}
.home-hero-text > .inner::after {
  background-color: var(--color-white);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.home-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.home-about > .title > .site-heading-combi {
  margin-bottom: 1rem;
}
.home-about > .content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.home-about > .content > li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-about > .content > .site-text-standard + .site-text-standard {
  margin-top: 0;
}

.home-service {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.home-service > .title > .site-heading-combi {
  margin-bottom: 1rem;
}
.home-service > .content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.home-service > .content > li {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: var(--margin-side-small);
}
.home-service > .content > li > .image {
  border-radius: 10px;
  line-height: 0;
  overflow: hidden;
}
.home-service > .content > .site-text-standard + .site-text-standard {
  margin-top: 0;
}

.home-company {
  background-color: var(--color-project-base);
  border-radius: 10px;
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: 1fr;
  padding: var(--margin-side-small) var(--margin-side-small) 2rem;
}
.home-company > .text > .site-heading-combi {
  margin-bottom: 1rem;
}
.home-company > .text > .site-text-standard {
  margin-bottom: 1.5rem;
}
.home-company > .image {
  border-radius: 10px;
  line-height: 0;
  overflow: hidden;
  order: -1;
}

.home-news {
  display: grid;
  grid-template-areas: "title button" "content content";
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.home-news > .title {
  grid-area: title;
}
.home-news > .content {
  grid-area: content;
}
.home-news > .button {
  grid-area: button;
  margin-top: auto;
  text-align: right;
}