main.works {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 35px;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 1080px){
    justify-content: center;
    padding-left: 0;
    padding-right: 20px;
  }
}
.works__left {
  position: relative;
  flex: 1;
  padding-right: 30px;
  @media screen and (max-width: 750px){
    padding-right: 20px;
  }
  nav {
    position: sticky;
    height: 100vh;
    top: 70px;
    display: flex;
    justify-content: flex-end;
    &:before {
      content: "";
      height: 100%;
      width: 200vw;
      position: absolute;
      top: 0px;
      right: 142px;
      background: var(--grad-blue);
      @media screen and (max-width: 750px){
        right: calc(100% - 20px);
      }
    }
  }
}
.works__title {
  font-size: 132px;
  font-weight: bold;
  color: var(--color-blue);
  font-family: var(--font-josefin);
  letter-spacing: -0.02em;
  line-height: 1;
  writing-mode: vertical-rl;
  @media screen and (max-width: 750px){
    font-size: 66px;
  }
}
.works__right {
  width: 942px;
  padding-top: 80px;
  padding-bottom: 150px;
  @media screen and (max-width: 750px){
    width: calc(100% - 96px);
    padding-top: 40px;
    padding-bottom: 80px;
  }
  &.-single {
    padding: 80px 45px 150px;
    @media screen and (max-width: 750px){
      padding: 0 0 80px;
    }
  }
}
.worksArchives {
  + .worksArchives {
    margin-top: 180px;
    @media screen and (max-width: 750px){
      margin-top: 120px;
    }
  }
}

.worksArchives__title {
  text-align: center;
  .en {
    display: block;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    text-shadow:
        1px 0 0 var(--color-blue),
        -1px 0 0 var(--color-blue),
        0 1px 0 var(--color-blue),
        0 -1px 0 var(--color-blue);
    font-family: var(--font-josefin);
    @media screen and (max-width: 750px){
      font-size: 36px;
      line-height: 1.2;
    }
  }
  .ja {
    display: block;
    font-size: 24px;
    letter-spacing: 0.34em;
    font-weight: 500;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
}
.worksArchivesList {
  margin-top: 50px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.worksArchivesList__item {
  display: flex;
  justify-content: flex-start;
  &:nth-child(2n) {
    justify-content: flex-end;
  }
  + .worksArchivesList__item {
    margin-top: 25px;
    @media screen and (max-width: 750px){
      margin-top: 10px;
    }
  }
  a {
    display: block;
    width: 467px;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    @media screen and (max-width: 750px){
      width: 92%;
    }
  }
  figure {
    display: block;
    overflow: hidden;
    img {
      transition: transform 0.3s ease;
      width: 100%;
      aspect-ratio: 467 / 311;
      object-fit: cover;
    }
  }
  a:hover {
    figure {
      img {
        transform: scale(1.05);
      }
    }
    .worksArchivesList__info {
      transform: translateY(0%);
    }
  }
}
.worksArchivesList__info {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(51, 81, 155, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.worksArchivesList__title {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 0 1em;
}
.worksArchivesList__date {
  font-size: 13px;
  font-weight: 500;
}
.worksArchives__btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  @media screen and (max-width: 750px){
    margin-top: 30px;
  }
}
.worksSingle {

}
.worksSingle__title {
  font-size: 50px;
  font-weight: bold;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 22px;
  }
}
.worksSingle__date {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.worksSlider {
  margin-top: 70px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.worksSlider__main {
  .item {
    vertical-align: bottom;
    img {
      width: 100%;
      aspect-ratio: 800 / 535;
      object-fit: cover;
    }
  }
}
.worksSlider__sub {
  display: flex;
  flex-wrap: wrap;
  .item {
    width: 16.66%;
    transition: opacity 0.3s ease;
    cursor: pointer;
    &:hover {
      opacity: 0.8;
    }
    img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
  }
}
.worksSingle__content {
  margin-top: 70px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.worksSingle__table {
  width: 100%;
  @media screen and (max-width: 750px){
    display: block;
    tbody,
    tr,
    th,
    td {
      display: block;
      width: 100%;
    }
  }
  th {
    padding: 20px 0 20px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-blue);
    width: 28%;
    @media screen and (max-width: 750px){
      padding: 20px 0 0;
      width: 100%;
      border-style: none;
    }
  }
  td {
    padding: 20px 0 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-blue);
    @media screen and (max-width: 750px){
      padding: 0 0 20px;
    }
  }
}