@charset "UTF-8";
/* CSS Document */

/**********************************************************
* ファーストビュー
**********************************************************/
.fv{
  position: sticky;
  inset: 0;
  display: flex; flex-direction: row; 
  width: 100%; height: max(100vh,500px);
}
.fv__img{
  width: 50%;
}
.swiper-slide{
  overflow: hidden;
}
.swiper-slide img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.progressbar {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 100%;
  background: #ffffff;
  overflow: hidden;
}
.progressbar_in {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: center top;
  transition-timing-function: linear;
}
.fv__title{
  position: relative;
  display: flex; justify-content: center; align-items: center;
  width: 50%;
}
.fv__title--wrap{
  display: flex; flex-direction: column; align-items: center;
}
.title__sub,
.title__main {
  font-family: var(--font-en);
}
.title__sub {
  font-size: 1.5rem; line-height: 1;
  letter-spacing: 0.25rem;
  margin-bottom: 3rem;
}
.title__main {
  display: inline-block;
  width: 14rem;
  margin-bottom: 1rem;
}
.title__ja {
  font-family: var(--font-ja);
  font-size: 1.3rem;
}
.icon__scroll{
  position: relative;
  width: 2rem; height: 3.6rem;
  border: solid 1px var(--black);
  border-radius: calc(infinity * 1px);
  margin-top: 6rem;
}
.icon__scroll::before{
  content:"";
  position: absolute;
  top: 9px; left: 50%;
  display: block;
  width: 2px; height: 2px;
  background-color: var(--black);
  animation: scrolling 1.25s infinite ease-out;
}
@keyframes scrolling {
  0%{
    opacity: 1;
    transform: translate(-50%,0);
  }
  100%{
    opacity: 0;
    transform: translate(-50%,16px);
  }
}
@media (width < 768px) {
  .fv{
    flex-direction: column;
  }
  .fv__img{
    width: 100%; height: 50%;
  }
  .fv__title{
    width: 100%; height: 50%;
  }
  .title__main {
    width: 24rem;
  }
  .icon__scroll{
    margin-top: 3rem;
  }
  .progressbar {
    width: 100%; height: 1px;
  }
  .progressbar_in {
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
  }
}
/**********************************************************
* ワークス
**********************************************************/
.archive{
  position: relative;
  z-index: 2;
  display: flex; flex-direction: row;
  width: 100%;
  font-family: var(--font-en);
  background-color: var(--back-color);
  padding: 100px 0;
}
.archive__navPc{
  position: sticky;
  top: 50px; left: 0;
  display: flex; flex-direction: column;
  width: 30vw;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  padding: 0 70px;
}
.archive__navPc li{
  margin: 0 0 25px;
}
.archive__navSp{
  display: none;
}
.archive__nav__hamburger{
  display: none;
}
.archive__nav__sortBtn{
  font-size: 1.3rem;
  cursor: pointer;
}
.archive__nav__sortBtn li{
  position: relative;
  margin: 0 0 15px;
  transition: all 0.3s ease-out;
}
.archive__nav__sortBtn li:last-child{
  margin: 0;
}
.archive__nav__sortBtn .active{
  padding-left: 14px;
}
.archive__nav__sortBtn .active::after{
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 6px; height: 6px;
  background-color: var(--black);
  border-radius: calc(infinity * 1px);
  transform: translateY(-50%);
}
.archive__contents{
  display: grid; gap: 1rem; 
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  width: 70vw;
}
.archive__contents__items{
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.archive__contents__items img{
  transition: all 0.3s;
}
.archive__contents__title{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  font-family: var(--font-en);
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  word-break: keep-all;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
@media(hover){
  .archive__contents__items:hover .archive__contents__title{
    visibility: visible;
    opacity: 1;
  }
  .archive__contents__items:hover img{
    filter: blur(2px);
    transform: scale(1.01);
  }
}
.archive__contents__title__en{
  font-size: 1.6rem;
  line-height: 1.5;
}
.archive__contents__shoulder{
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  border-bottom: solid 1px #ffffff;
  padding: 0 0 8px;
  margin-bottom: 20px;
}
@media (width < 768px) {
  .archive{
    flex-direction: column;
    padding: 70px 0;
  }
  .archive__navPc{
    display: none;
  }
  .archive__navSp{
    position: fixed; inset: auto 0 0 0; z-index: 10;
    display: flex; flex-direction: column;
    width: 100%; height: 70%;
    padding: 0 0 6rem;
    background-color: #f4f4f4;
    transform: scaleY(0);
    transform-origin: center bottom;
    transition: transform 0.3s;
  }
  .archive__navSp.active{
    transform: scaleY(1);
  }
  .archive__navSp li{
    font-size: 1.5rem; line-height: 1;
    padding: 5rem 0 0 3rem;
  }
  .archive__navSp li a{
    font-size: 5rem;
    margin-left: 2rem;
    transition: color 0.3s;
  }
  .archive__navSp li a:active{
    color: #cccccc;
  }
  @media(hover){
    .archive__navSp li a:hover{
      color: #cccccc;
    }
  }
  .archive__nav__hamburger{
    position: fixed; inset: auto 0 0; z-index: 11;
    display: block;
    width: 100%; height: 6rem;
    background-color: var(--back-color);
    transition: all 0.15s;
  }
  .archive__nav__hamburger.hide{
    transform: translateY(100%);
  }
  .archive__nav__hamburger::before{
    content: "";
    position: absolute; top: 0; left: 50%;
    display: inline-block;
    width: calc(100% - 6rem); height: 1px;
    background-color: var(--black);
    transform: translateX(-50%);
    transition: all 0.15s;
  }
  .archive__nav__hamburger.active{
    inset: auto 0 0;
    background-color: #f4f4f4;
  }
  .icon__menu,
  .icon__close{
    position: absolute; top: 50%; left: 50%;
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 4px;
    width: 20px; height: 20px;
    transform: translate(-50%,-50%);
    transition: all 0.15s;
  }
  .icon__close{
    opacity: 0;
    visibility: hidden;
  }
  .icon__menu span{
    display: block;
    width: 8px; height: 8px;
    border-top: solid 1px var(--black);
    border-left: solid 1px var(--black);
    transition: all 0.15s;
  }
  .archive__nav__hamburger.active .icon__menu{
    opacity: 0;
    visibility: hidden;
  }
  .archive__nav__hamburger.active .icon__close{
    opacity: 1;
    visibility: visible;
  }
  .archive__nav__hamburger.active .icon__close::before,
  .archive__nav__hamburger.active .icon__close::after{
    content: "";
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    display: inline-block;
    width: 100%; height: 1px;
    background-color: var(--black);
    transition: all 0.15s;
  }
  .archive__nav__hamburger.active .icon__close::before{
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .archive__nav__hamburger.active .icon__close::after{
    transform: translate(-50%,-50%)  rotate(-45deg);
  }
  .archive__contents{
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .archive__contents__items:active .archive__contents__title{
    visibility: visible;
    opacity: 1;
  }
  .archive__contents__items:active img{
    filter: blur(2px);
    transform: scale(1.01);
  }
}