/* Default Options */
/* Media Query */
/* Transform Font Size */
/* --------------------------------- */
.l-wrapper {
  background-color: var(--bg-color);
  position: relative;
  z-index: 1;
}
.l-keyvisual {
  width: 100%;
  padding-block-end: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-color);
  position: relative;
  z-index: 0;
}
.l-keyvisual-consept {
  height: 200vh;
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}
.l-keyvisual-consept .inner {
  width: clamp(160px, 30vw, 360px);
  position: sticky;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.l-keyvisual-consept .inner img {
  opacity: 0;
  transform: scale3d(1.2, 1.2, 1.2);
  transform-origin: center;
  filter: blur(50px);
  transition: all 2000ms cubic-bezier(0.65, 0, 0.35, 1);
}
.onLoadComplete .l-keyvisual-consept .inner img {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition-delay: 600ms;
  filter: blur(0);
}

.l-keyvisual-menu {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  column-gap: min(5vw, 120px);
  mix-blend-mode: difference;
  position: relative;
  z-index: 2;
}
.l-keyvisual-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--space-xs);
  text-decoration: none;
}
.l-keyvisual-menu a img {
  height: clamp(40px, 5vw, 70px);
}
.l-keyvisual-menu a span {
  font-size: clamp(2.5rem, 1.2727272727rem + 3.4090909091vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--bg-color);
}
.l-keyvisual-menu a .text {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.15);
  padding-inline-start: var(--space-xs);
  line-height: 1.4;
  color: var(--bg-color);
}
.l-keyvisual-image {
  width: 100%;
  height: calc(100% - 100svh);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.l-keyvisual-image .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.65, 0, 0.35, 1);
}
.l-keyvisual-image .item:first-child {
  z-index: 0;
  opacity: 1;
}
.l-keyvisual-image .item.hoverImageCurrent {
  opacity: 1;
}
.l-keyvisual-image .item picture,
.l-keyvisual-image .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.l-home-foot {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.l-home-foot .item {
  aspect-ratio: 1/1;
}
.l-home-foot .item picture,
.l-home-foot .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 576px) {
  .l-home-foot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.bamboo {
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.03;
  pointer-events: none;
  overflow: hidden;
}
.bamboo #animation_container {
  width: 100% !important;
  height: 100% !important;
  position: relative;
}
.bamboo #animation_container canvas {
  width: auto !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 55% !important;
}
.bamboo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1600px) {
  .bamboo #animation_container canvas {
    left: auto !important;
    right: -4% !important;
  }
}

/* --------------------------------- */