.home-hero {
  background-color: var(--color-project-showa);
  display: flex;
  align-items: center;
  padding-top: calc(80vw + 3.125rem);
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
}
.home-hero::before {
  aspect-ratio: 387/520;
  background: url(../../images/home/background_hero.png) center center no-repeat;
  background-size: 24.188rem 32.5rem;
  content: "";
  position: absolute;
  right: -7.5rem;
  bottom: 0;
  width: 24.188rem;
}
.home-hero > .text {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 var(--margin-side-small);
  position: relative;
  z-index: 3;
  width: 100%;
}
.home-hero > .text > .title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.home-hero > .text > .title > .sub {
  color: #87C49F;
  font-family: var(--font-zenoldmincho);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.home-hero > .text > .title > .main {
  font-family: var(--font-zenoldmincho);
  font-size: 8.53vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.home-hero > .text > .ornament {
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 0.813rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 1rem;
}
.home-hero > .image {
  height: 80vw;
  overflow: hidden;
  position: absolute;
  inset: 0 0 auto auto;
  width: 100%;
  z-index: 1;
}
.home-hero > .interface {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  inset: calc(80vw + 1rem) var(--margin-side-small) auto auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-hero > .interface > .swiper-pagination {
  display: flex;
  gap: 0.75rem;
  line-height: 0;
  position: static;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-hero > .interface > .swiper-pagination > .swiper-pagination-bullet {
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  background-color: var(--color-project-base);
  border: 1px solid var(--color-project-showa);
  height: 10px;
  margin: 0;
  opacity: 1;
  width: 10px;
}
.home-hero > .interface > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E3EEE3;
}
.home-hero > .interface > .paused {
  background-color: var(--color-white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
  width: 23px;
}
.home-hero > .interface > .paused::after {
  aspect-ratio: 1/1;
  background-color: var(--color-project-showa);
  content: "";
  display: inline;
  -webkit-mask-image: url(../../images/icon/pause.svg);
  mask-image: url(../../images/icon/pause.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 1rem;
  width: 1rem;
}
.home-hero > .interface > .paused.-pause::after {
  -webkit-mask-image: url(../../images/icon/arrow_right-secondary.svg);
  mask-image: url(../../images/icon/arrow_right-secondary.svg);
}

.home-hero-slider {
  height: 100%;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 1;
}
.home-hero-slider > .list {
  transition-property: opacity, transform, visibility;
  transition-duration: 1.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  line-height: 0;
  height: 100%;
  opacity: 0 !important;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  visibility: hidden;
  z-index: 1;
}
.home-hero-slider > .list img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  width: 100%;
}
.home-hero-slider > .list.swiper-slide-active {
  opacity: 1 !important;
  visibility: visible;
  z-index: 2;
}