@charset "UTF-8";
/********************************************************/
/* -------------------------------------------
 * 追従サイド画像
 * - 左サイド画像をsticky
 * - 右サイドコンテンツをスクロール
 * -------------------------------------------*/
.sticky-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .sticky-visual {
    grid-template-columns: 1fr;
  }
}

.sticky-visual__side {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .sticky-visual__side {
    display: none;
  }
}

.sticky-visual__side-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.sticky-visual__side-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky-visual__side-item.active {
  opacity: 1;
}

/* -------------------------------------------
 * 追従サイドナビ
 * - 左サイドナビメニューをsticky
 * - 右サイドコンテンツをスクロール
 * -------------------------------------------*/
.sticky-nav {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 4rem 15%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1240px) {
  .sticky-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sticky-nav__contents {
  width: 100%;
}

.sticky-nav__side {
  position: sticky;
  top: 15rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media (max-width: 1240px) {
  .sticky-nav__side {
    top: 0;
    position: static;
    width: 100%;
  }
}
@media (max-width: 834px) {
  .sticky-nav__side {
    display: none;
  }
}

.sticky-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 12.5rem;
  padding-left: 0.8em;
}
@media (max-width: 1240px) {
  .sticky-nav__list {
    min-width: auto;
    gap: 0.5em;
    padding-left: 0;
  }
}

.sticky-nav__side-item {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: rgba(61, 70, 88, 0.5);
  font-size: 1.4rem;
  position: relative;
  font-weight: 400;
}
@media (max-width: 1240px) {
  .sticky-nav__side-item {
    color: inherit;
  }
}
.sticky-nav__side-item.active {
  color: #3d4658;
}
@media (max-width: 1240px) {
  .sticky-nav__side-item.active {
    color: inherit;
  }
}
.sticky-nav__side-item.active::before {
  position: absolute;
  left: -1em;
  top: 0.5em;
  background: #8c90a8;
  content: "";
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1;
  border-radius: 100vmax;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1240px) {
  .sticky-nav__side-item.active::before {
    content: none;
  }
}

.sticky-nav__content-item {
  padding-top: 24rem;
  margin-top: -24rem;
}
@media (max-width: 834px) {
  .sticky-nav__content-item {
    padding-top: 0;
    margin-top: 0;
  }
}
.sticky-nav__content-item:not(:last-child) {
  margin-bottom: clamp(8rem, 8.3333333333vw, 14rem);
}

.sticky-nav__label {
  font-size: 2rem;
  font-family: var(--ff-gilda);
  line-height: 1.5;
  margin-bottom: 0.4em;
}/*# sourceMappingURL=sticky-side.css.map */