@charset "UTF-8";
.home-hero {
  height: 100svh;
  position: relative;
  width: 100%;
}
.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 > .logo {
  aspect-ratio: 250/116;
  color: var(--color-white);
  display: block;
  height: auto;
  position: absolute;
  top: calc(50% - 3.625rem);
  left: calc(50% - 7.813rem);
  width: 15.625rem;
  z-index: 2;
}
.home-hero > .logo > .item {
  display: block;
}
.home-hero > .logo svg {
  height: auto;
  width: 100%;
}
.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-slider > .list.-list04::before {
  background-image: url(../../images/home/hero04.jpg);
}
@supports (background-image: url("../../images/home/hero04.webp")) {
  .home-hero-slider > .list.-list04::before {
    background-image: url(../../images/home/hero04.webp);
  }
}

.home-message {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.home-works {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.home-works > .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}

.home-about {
  display: grid;
  align-items: center;
  gap: 1.875rem;
  grid-template-columns: 1fr;
}
.home-about > .content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.home-about > .image {
  margin-top: -3.75rem;
  margin-left: calc(var(--margin-side-small) * -1);
  order: -1;
  width: 100vw;
}

.home-article {
  display: grid;
  gap: 3.75rem;
  grid-template-columns: 1fr;
}

.home-article-content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.home-article-content > .title {
  border-bottom: 1px solid var(--color-project-gold);
  padding-bottom: 0.625rem;
}
.home-article-content > .content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.home-instagram {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.home-information > .item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.home-information > .item + .item {
  border-top: 1px solid var(--color-black);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
.home-information > .item > .content h3.site-text-standard + p.site-text-standard {
  margin-top: 0;
}

.home-information-list > dd > .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.home-information-list > dd > .list > li {
  display: inline-block;
}
.home-information-list > dd > .list > li:not(:last-child)::after {
  content: "、";
}
.home-information-list > dd + dt {
  margin-top: 2em;
}