.home-hero {
  background-color: var(--color-border);
  background-image: url(../../images/home/background_texture_hero.png);
  background-position: center top;
  background-size: cover;
  position: relative;
}
.home-hero::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  content: "";
  height: 17.25rem;
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
}
.home-hero::after {
  background: url(../../images/common/background_noise.png) top center repeat;
  background-size: 100px 100px;
  content: "";
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 1;
}
.home-hero > .inner {
  padding: 0 7.81vw 4rem;
  position: relative;
  z-index: 2;
}

.home-hero-content > .text {
  padding-top: 100vw;
  position: relative;
  z-index: 5;
}
.home-hero-content > .text > .title {
  transition-property: opacity, transform;
  transition-duration: 0.45s;
  transition-timing-function: ease;
  transition-delay: 0.75s;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(0.5rem);
}
.home-hero-content > .text > .message {
  transition-property: opacity, transform;
  transition-duration: 0.45s;
  transition-timing-function: ease;
  transition-delay: 0.75s;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(0.5rem);
}
.home-hero-content > .text > .message img {
  height: auto;
  max-width: 18.75rem;
  width: 100%;
}
.home-hero-content > .text > .button {
  transition-property: opacity, transform;
  transition-duration: 0.45s;
  transition-timing-function: ease;
  transition-delay: 0.75s;
  opacity: 0;
  transform: translateY(0.5rem);
}
.home-hero-content > .text > .button > .site-button-primary {
  width: 100%;
}
.home-hero-content > .image > .main {
  transition-property: opacity;
  transition-duration: 0.45s;
  transition-timing-function: ease;
  transition-delay: 0s;
  position: absolute;
  z-index: 2;
  opacity: 0;
}
.home-hero-content > .image > .main.-main01 {
  inset: 23.13vw auto auto 8.44%;
  width: 47.81%;
}
.home-hero-content > .image > .main.-main02 {
  inset: 60vw auto auto 0.625rem;
  width: 54.38%;
  transition-delay: 0.45s;
}
.home-hero-content > .image > .main.-main03 {
  inset: 30.63vw 4.69% auto auto;
  width: 42.81%;
  transition-delay: 0.225s;
}
.home-hero-content > .image > .main.-main03 img {
  position: relative;
  z-index: 2;
}
.home-hero-content > .image > .main.-main03 > .ornament {
  aspect-ratio: 1/1;
  height: auto;
  position: absolute;
  inset: -25% auto auto 5%;
  width: 45.07%;
  z-index: 1;
}
.home-hero-content > .image > .ornament {
  transition-property: opacity;
  transition-duration: 1.2s;
  transition-timing-function: ease;
  transition-delay: 1.5s;
  position: absolute;
  opacity: 0;
}
.home-hero-content > .image > .ornament.-ornament01 {
  inset: 9.06vw auto auto -3.44vw;
  width: 18.75vw;
}
.home-hero-content > .image > .ornament.-ornament02 {
  inset: -5.94vw auto auto 29.69vw;
  width: 22.5vw;
}
.home-hero-content > .image > .ornament.-ornament03 {
  display: none;
}
.home-hero-content > .image > .ornament.-ornament04 {
  inset: -1.56vw 12.5vw auto auto;
  width: 17.5vw;
}
.home-hero-content > .image > .ornament.-ornament05 {
  display: none;
}
.home-hero-content > .image > .ornament.-ornament06 {
  display: none;
}
.home-hero-content > .image > .ornament.-ornament07 {
  inset: 19.38vw 5.31vw auto auto;
  width: 8.75vw;
}
.home-hero-content > .image > .ornament.-ornament08 {
  inset: 67.19vw 4.69vw auto auto;
  width: 15.94vw;
}
.home-hero-content > .image > .ornament.-ornament09 {
  display: none;
}
.home-hero-content > .image > .ornament.-ornament10 {
  inset: 87.54vw 16.88vw auto auto;
  width: 13.13vw;
}
.home-hero-content > .image > .ornament.-ornament11 {
  inset: 54.38vw auto auto -3.26vw;
  width: 19.65vw;
}
.home-hero-content.-show > .text > .title, .home-hero-content.-show > .text > .message, .home-hero-content.-show > .text > .button {
  opacity: 1;
  transform: translateY(0);
}
.home-hero-content.-show > .image > .main, .home-hero-content.-show > .image > .ornament {
  opacity: 1;
}

.home-hero-news {
  background-color: var(--color-project-yellow);
  border-radius: 20px 0 0 20px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  color: var(--color-black);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-left: auto;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  position: relative;
  text-decoration: none;
  z-index: 4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home-hero-news > .title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  position: absolute;
  inset: 50% auto auto 1rem;
  transform: translateY(-50%);
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home-hero-news > .image {
  background-color: var(--color-project-beige);
  line-height: 0;
  width: 3.5rem;
}
.home-hero-news > .image img {
  aspect-ratio: 158/223;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}
.home-hero-news > .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  width: 10.625rem;
  text-decoration: underline;
}
.home-hero-news > .text > .title {
  font-size: 0.938rem;
  font-weight: 700;
  line-height: 1.5;
}
.home-hero-news > .text > .more {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 821px) and (max-width: 900px) {
  .home-hero > .inner {
    padding: 13.75vw var(--margin-side) 0 !important;
  }
}