/* --------------------------------------------------- */
/* common */
/* --------------------------------------------------- */
.lower_top__inner,
.lower_section__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#works .lower_section__inner {
  padding-top: 100px;
}
.lower_section__title {
  margin-bottom: 48px;
}
@media (max-width: 1279px) {
  .lower_top__inner,
  .lower_section__inner {
    width: calc(100vw - 48px);
  }
}

/* --------------------------------------------------- */
/* works */
/* --------------------------------------------------- */
.works-filter__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.works-filter__link {
  display: block;
  padding: 10px 34px 10px 16px;
  border-radius: 100vw;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  position: relative;
  font-size: 16px;
  line-height: 1;
}
.works-filter__link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 16px;
  border-radius: 100vw;
  transform: translateY(-50%);
}
.works-filter__link--active {
  background-color: #ddd;
  color: var(--primary-color);
}
.works-filter__link--active::after {
  background-color: var(--primary-color);
}
.single_top {
  padding-bottom: 100px;
}
.single_top__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.single_top .works__category {
  gap: 16px;
  margin-top: 0;
}
.single_top .works-category__link {
  padding: 10px 34px 10px 16px;
}
.single_top .works-category__text {
  font-size: 16px;
}
.works_bg {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: -1;
}
.works_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single_section {
  margin-top: 100dvh;
  padding-top: 100px;
  background-color: #fafafa;
}
.works__container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.works__container .works__caption {
  position: static;
  border: 1px solid var(--primary-color);
}
@media (max-width: 1279px) {
  .works__sp-thumbnail {
    margin-top: 56px;
  }
  .works__sp-thumbnail img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .single_section {
    margin-top: 0;
  }
}
