* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 1024px;
  color: #303030;
  background: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader img {
  width: 13rem;
  animation: loader-logo 1.4s ease-in-out infinite;
}
.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.is-loading .hero__title,
.is-loading .hero__lead,
.is-loading .hero__object img {
  animation-play-state: paused;
}

@keyframes loader-logo {
  0%, 100% {
    opacity: 0.65;
    transform: translateY(0) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateY(-0.8rem) scale(1.03);
  }
}
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #fff;
}
.hero__header {
  position: absolute;
  z-index: 10;
  top: 3rem;
  left: 0;
  right: 0;
  width: 94%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.hero__logo {
  width: 11.2rem;
}
.hero__service-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.7rem;
  border: 1px solid #303030;
  border-radius: 999px;
  color: #fff;
  background: #303030;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.hero__service-link:hover {
  color: #303030;
  background: #fff;
}
.hero__service-arrow {
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero__copy {
  --parallax-y: 0px;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 52%;
  width: min(58rem, 43vw);
  text-align: center;
  transform: translate(-50%, -50%) translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}
.hero__title {
  opacity: 0;
  animation: hero-title-enter 1s 0.5s ease-out forwards;
  will-change: opacity, transform;
}
.hero__title img {
  width: 115.2%;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.hero__title span {
  display: block;
}
.hero__lead {
  margin-top: 1.7rem;
  font-family: "Amaranth", sans-serif;
  font-size: 3.45rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: hero-title-enter 1s 0.8s ease-out forwards;
  will-change: opacity, transform;
}
.hero__scroll {
  --parallax-y: 0px;
  position: absolute;
  z-index: 5;
  top: calc(100svh - 15rem);
  right: auto;
  bottom: auto;
  left: 5.2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}
.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 7.5rem;
  overflow: hidden;
  background: #d8d8d8;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  animation: scroll-line 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}
.hero__scroll-text {
  color: #111;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hero__object {
  --parallax-y: 0px;
  position: absolute;
  pointer-events: none;
  user-select: none;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}
.hero__object img {
  width: 100%;
  opacity: 0;
  will-change: opacity, transform;
}
.hero__object--yellow {
  --float-x: 1.6rem;
  --float-y: -2.4rem;
  --float-rotate: 1.8deg;
  top: -13rem;
  left: 35%;
  width: 24%;
}
.hero__object--yellow img {
  animation: hero-object-enter 0.9s 0.15s ease-out forwards, hero-object-float 5.5s 1.05s ease-in-out infinite;
}
.hero__object--red {
  --float-x: -1.6rem;
  --float-y: 2rem;
  --float-rotate: -1.8deg;
  top: 6%;
  right: 1.5%;
  width: 20.5%;
}
.hero__object--red img {
  animation: hero-object-enter 0.9s 0.35s ease-out forwards, hero-object-float 6.2s 1.25s ease-in-out infinite;
}
.hero__object--green {
  --float-x: 2rem;
  --float-y: -1.6rem;
  --float-rotate: -1.6deg;
  top: 28%;
  left: -3.2%;
  width: 20%;
}
.hero__object--green img {
  animation: hero-object-enter 0.9s 0.55s ease-out forwards, hero-object-float 5.8s 1.45s ease-in-out infinite;
}
.hero__object--brown {
  --float-x: -1.4rem;
  --float-y: -2.2rem;
  --float-rotate: 1.6deg;
  bottom: -6vh;
  left: 20%;
  width: min(26vw, 52vh);
}
.hero__object--brown img {
  animation: hero-object-enter 0.9s 0.75s ease-out forwards, hero-object-float 6.5s 1.65s ease-in-out infinite;
}
.hero__object--blue {
  --float-x: 1.8rem;
  --float-y: 2.2rem;
  --float-rotate: 1.5deg;
  right: -2.5%;
  bottom: 8%;
  width: 30%;
}
.hero__object--blue img {
  animation: hero-object-enter 0.9s 0.95s ease-out forwards, hero-object-float 6s 1.85s ease-in-out infinite;
}

@keyframes hero-title-enter {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-object-enter {
  0% {
    opacity: 0;
    transform: translateY(2.5rem) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hero-object-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(var(--float-x), var(--float-y)) rotate(var(--float-rotate));
  }
}
@keyframes scroll-line {
  0% {
    transform: translateY(-101%);
  }
  45% {
    transform: translateY(0);
  }
  55% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(101%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader img {
    animation: none;
  }
  .hero__scroll-line::after {
    animation: none;
  }
  .hero__object img {
    opacity: 1;
    animation: none;
  }
  .hero__title {
    opacity: 1;
    animation: none;
  }
  .hero__lead {
    opacity: 1;
    animation: none;
  }
}
.introduction {
  padding: 12rem 4rem 12rem;
  overflow-x: clip;
  background: #fff;
}
.introduction__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.introduction__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.introduction__row--first {
  gap: 8%;
}
.introduction__row--second {
  gap: 10%;
  margin-top: 15rem;
}
.introduction__text {
  color: #050505;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.1rem, 2vw, 3rem);
  line-height: 1.75;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.introduction__visual {
  --introduction-parallax-y: 0px;
  flex-shrink: 0;
}
.introduction__visual img {
  width: 100%;
  transform: translate3d(0, var(--introduction-parallax-y), 0);
  will-change: transform;
}
.introduction__visual--food {
  width: min(46%, 57rem);
}
.introduction__visual--landscape {
  width: min(47%, 58rem);
}
.introduction__visual--harvest {
  width: min(80%, 70rem);
  margin: 7rem auto 0;
}
.introduction__conclusion {
  margin-top: 16rem;
}
.introduction__text--center {
  text-align: center;
}
.introduction__marquee {
  width: calc(100% + 8rem);
  margin-top: 14rem;
  margin-left: -4rem;
  overflow: hidden;
}
.introduction__marquee-track {
  display: flex;
  width: max-content;
  animation: introduction-marquee 24s linear infinite;
  will-change: transform;
}
.introduction__marquee-track img {
  flex-shrink: 0;
  width: clamp(120rem, 122.7vw, 176.7rem);
  max-width: none;
  margin-right: 8rem;
}

.js-enabled .introduction__row .introduction__text,
.js-enabled .introduction__row .introduction__visual {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}
.js-enabled .introduction__row--first .introduction__text {
  transform: translateX(-4rem);
}
.js-enabled .introduction__row--first .introduction__visual {
  transform: translateX(4rem);
  transition-delay: 0.18s;
}
.js-enabled .introduction__row--second .introduction__visual {
  transform: translateX(-4rem);
}
.js-enabled .introduction__row--second .introduction__text {
  transform: translateX(4rem);
  transition-delay: 0.18s;
}
.js-enabled .introduction__row.is-visible .introduction__text,
.js-enabled .introduction__row.is-visible .introduction__visual {
  opacity: 1;
  transform: translateX(0);
}
.js-enabled .introduction__conclusion .introduction__text,
.js-enabled .introduction__conclusion .introduction__visual {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}
.js-enabled .introduction__conclusion .introduction__visual {
  transition-delay: 0.2s;
}
.js-enabled .introduction__conclusion.is-visible .introduction__text,
.js-enabled .introduction__conclusion.is-visible .introduction__visual {
  opacity: 1;
  transform: translateY(0);
}

@keyframes introduction-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .introduction__marquee-track {
    animation-play-state: paused;
  }
  .js-enabled .introduction__row .introduction__text,
  .js-enabled .introduction__row .introduction__visual {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-enabled .introduction__conclusion .introduction__text,
  .js-enabled .introduction__conclusion .introduction__visual {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .introduction__visual img {
    transform: none;
  }
}
.voices {
  padding: 10rem 4rem 16rem;
  border-radius: 5rem 5rem 0 0;
  color: #fff;
  background: #0655cf;
}
.voices__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.voices__question {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.voices__result {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 6rem;
  width: min(100%, 112rem);
  margin: 7rem auto 0;
  padding: 6rem 7rem;
  border-radius: 2rem;
  background: #084bb8;
}
.voices__people {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.voices__people img {
  width: 4.5rem;
  flex-shrink: 0;
}
.voices__result-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.55;
  font-weight: 900;
}
.voices__result-copy small {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.voices__illustration {
  width: min(55%, 62rem);
  margin: 14rem auto 0;
}
.voices__illustration img {
  width: 100%;
}
.voices__posts {
  margin-top: 20rem;
}
.voices__eyebrow {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}
.voices__heading {
  margin-top: 2rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3.6rem, 4.5vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.03em;
}
.voices__count-label {
  margin-top: 7rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}
.voices__count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
}
.voices__count strong {
  font-size: clamp(5.5rem, 7vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.voices__count span {
  margin: 0 0.6rem;
  font-size: 2.6rem;
  font-weight: 900;
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 2.4rem;
  width: 100%;
  margin-top: 18rem;
  margin-right: auto;
  margin-left: auto;
}
.voices__card {
  display: flex;
  min-height: 46rem;
  flex-direction: column;
  padding: 3rem;
  border-radius: 4rem;
  color: #fff;
  background: #003d9d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  line-height: 1.65;
  font-weight: 900;
}
.voices__meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.6rem 2.4rem;
  margin-bottom: 3.5rem;
  color: #e7efff;
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  line-height: 1.4;
}
.voices__tag {
  flex-shrink: 0;
  padding: 1.2rem 1.8rem;
  border-radius: 999px;
  color: #003d9d;
  background: #fff;
}
.voices__category {
  grid-column: 1/-1;
  justify-self: start;
  white-space: nowrap;
}
.voices__link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.6rem;
  color: #d8e6ff;
  font-size: clamp(1.6rem, 1.8vw, 2.6rem);
  line-height: 1.4;
  text-decoration: underline;
  overflow-wrap: anywhere;
  font-size: 1.4rem;
}
.voices__link::before {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  background: currentColor;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E") center/contain no-repeat;
}

.producers {
  overflow: hidden;
  background: #fff;
}
.producers__body {
  padding: 12rem 0 14rem;
}
.producers__inner {
  width: calc(100% - 8rem);
  max-width: 1440px;
  margin: 0 auto;
}
.producers__intro {
  display: grid;
  grid-template-columns: minmax(40rem, 1fr) 61rem;
  align-items: center;
  gap: 7rem;
  width: min(100%, 120rem);
  margin: 0 auto;
}
.producers__heading {
  position: relative;
  z-index: 5;
}
.producers__slider {
  position: relative;
  height: 51rem;
}
.producers__slide {
  --slide-x: 0rem;
  --slide-y: 0rem;
  --slide-scale: 1;
  --slide-blur: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 37.2rem;
  height: 50.8rem;
  border-radius: 2.4rem;
  object-fit: cover;
  filter: blur(var(--slide-blur));
  transform: translate(var(--slide-x), var(--slide-y)) scale(var(--slide-scale));
  transform-origin: center right;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  will-change: transform, filter;
}
.producers__slide.is-resetting {
  transition: none;
}
.producers__eyebrow {
  text-align: center;
  color: #0759c9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
}
.producers__title {
  margin-top: 2.5rem;
  text-align: center;
  color: #0759c9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}
.producers__lead {
  margin-top: 12rem;
  text-align: center;
  color: #0759c9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  line-height: 1.8;
  font-weight: 900;
}
.producers__stats {
  width: 100%;
  margin-top: 13rem;
  overflow: hidden;
}
.producers__stats-track {
  display: flex;
  width: max-content;
  animation: producers-stats-scroll 28s linear infinite;
  will-change: transform;
}
.producers__stats-group {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-right: 6rem;
}
.producers__stat {
  display: flex;
  width: 34rem;
  height: 19rem;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0759c9;
  background-image: url("../images/stats-group_bk1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Noto Sans JP", sans-serif;
}
.producers__stat span {
  font-size: 1.8rem;
  font-weight: 900;
}
.producers__stat strong {
  margin-top: 1.8rem;
  font-size: 3.8rem;
  font-weight: 900;
  white-space: nowrap;
}
.producers__stat--two {
  background-image: url("../images/stats-group_bk2.png");
}
.producers__stat--three {
  background-image: url("../images/stats-group_bk3.png");
}
.producers__stat--four {
  background-image: url("../images/stats-group_bk4.png");
}
.producers__stories {
  margin-top: 16rem;
}
.producers__stories-title {
  text-align: center;
  color: #0759c9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 900;
}
.producers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  width: 100%;
  margin: 7rem auto 0;
}
.producers__card {
  display: flex;
  min-height: 38rem;
  flex-direction: column;
  padding: 4rem;
  border-radius: 3rem;
  background: #f4f4f4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
.producers__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #505050;
}
.producers__profile {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.5rem;
}
.producers__profile img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
}
.producers__location {
  flex-shrink: 0;
  font-size: 1.5rem;
}
.producers__post {
  margin-top: 3rem;
  color: #0759c9;
  font-size: 1.7rem;
  line-height: 1.8;
}
.producers__post-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.7rem;
  margin-top: 3rem;
  color: #707070;
  font-size: 1.2rem;
  line-height: 1.5;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.producers__post-link::before {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  background: currentColor;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/svg%3E") center/contain no-repeat;
}

@keyframes producers-stats-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .producers__stats-track {
    animation-play-state: paused;
  }
}
.links {
  padding: 15rem 4rem 16rem;
  background: #fff;
}
.links__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.links__title {
  text-align: center;
  color: #0759c9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(4rem, 5vw, 7rem);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 12rem;
}
.links__box {
  position: relative;
  display: flex;
  aspect-ratio: 0.94;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  color: #fff;
  background: #333;
}
.links__box::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: background-color 0.35s ease;
}
.links__box:hover::after {
  background: rgba(0, 0, 0, 0.18);
}
.links__box:hover .links__background {
  transform: scale(1.05);
}
.links__box:hover .links__button {
  color: #0759c9;
  background: #fff;
}
.links__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.links__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.links__icon {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}
.links__name {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
}
.links__button {
  margin-top: 3rem;
  padding: 1.3rem 2.2rem;
  border: 1px solid #fff;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.closing {
  overflow: hidden;
  background: #fff;
}
.closing__stage {
  position: relative;
  height: 76rem;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 99;
}
.closing__message {
  position: absolute;
  z-index: 2;
  top: 65%;
  left: 50%;
  width: min(78rem, 62vw);
  text-align: center;
  transform: translate(-50%, -50%);
}
.closing__message h2 {
  color: #303030;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.8rem, 2.8vw, 4rem);
  line-height: 1.65;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.closing__object {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.closing__object img {
  width: 100%;
  will-change: transform;
}
.closing__object--orange {
  --closing-x: 1.6rem;
  --closing-y: -2.4rem;
  --closing-rotate: 1.8deg;
  top: 15%;
  left: 7%;
  width: 18%;
}
.closing__object--landscape {
  --closing-x: -1.8rem;
  --closing-y: 2.2rem;
  --closing-rotate: -1.6deg;
  top: 3%;
  left: 39%;
  width: 22%;
}
.closing__object--arch {
  --closing-x: 2.2rem;
  --closing-y: -1.8rem;
  --closing-rotate: 1.6deg;
  top: 13%;
  right: 8%;
  width: 18%;
}
.closing__object--brown {
  --closing-x: -1.5rem;
  --closing-y: -2.2rem;
  --closing-rotate: -1.5deg;
  bottom: 3%;
  left: -4%;
  width: 21%;
}
.closing__object--blue {
  --closing-x: 1.8rem;
  --closing-y: 2.4rem;
  --closing-rotate: 1.6deg;
  right: -5%;
  bottom: 4%;
  width: 22%;
}
.closing.is-visible .closing__object {
  animation: closing-object-enter 0.9s ease-out forwards;
}
.closing.is-visible .closing__object img {
  animation: closing-object-float 6s ease-in-out infinite;
}
.closing.is-visible .closing__object--orange {
  animation-delay: 0.1s;
}
.closing.is-visible .closing__object--orange img {
  animation-delay: 1s;
}
.closing.is-visible .closing__object--landscape {
  animation-delay: 0.3s;
}
.closing.is-visible .closing__object--landscape img {
  animation-delay: 1.2s;
  animation-duration: 6.6s;
}
.closing.is-visible .closing__object--arch {
  animation-delay: 0.5s;
}
.closing.is-visible .closing__object--arch img {
  animation-delay: 1.4s;
  animation-duration: 5.7s;
}
.closing.is-visible .closing__object--brown {
  animation-delay: 0.7s;
}
.closing.is-visible .closing__object--brown img {
  animation-delay: 1.6s;
  animation-duration: 6.3s;
}
.closing.is-visible .closing__object--blue {
  animation-delay: 0.9s;
}
.closing.is-visible .closing__object--blue img {
  animation-delay: 1.8s;
  animation-duration: 5.9s;
}
.closing__people {
  width: 100%;
  overflow: hidden;
  margin-top: -50px;
}
.closing__people-track {
  display: flex;
  width: max-content;
  animation: closing-people-scroll 28s linear infinite;
  will-change: transform;
}
.closing__people-group {
  display: flex;
  flex-shrink: 0;
}
.closing__people-group img {
  width: auto;
  height: 33rem;
  max-width: none;
  margin-right: 2rem;
}
.closing__footer {
  padding: 12rem 2rem 12rem;
  text-align: center;
}
.closing__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.closing__logos > img {
  width: 10rem;
}
.closing__service-logo {
  width: 6.3rem;
  height: 7rem;
  object-fit: contain;
}
.closing__divider {
  width: 1px;
  height: 8rem;
  background: #d0d0d0;
}
.closing__banner {
  display: block;
  width: min(100%, 50.5rem);
  margin: 8rem auto 0;
}
.closing__banner img {
  width: 100%;
  border-radius: 1rem;
}
.closing__copyright {
  margin-top: 8rem;
  color: #303030;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

@keyframes closing-object-enter {
  0% {
    opacity: 0;
    transform: translateY(3rem) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes closing-object-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(var(--closing-x), var(--closing-y)) rotate(var(--closing-rotate));
  }
}
@keyframes closing-people-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .closing__object {
    opacity: 1;
  }
  .closing.is-visible .closing__object,
  .closing.is-visible .closing__object img {
    animation: none;
  }
  .closing__people-track {
    animation-play-state: paused;
  }
}