@charset "UTF-8";
.page_header--wrap {
  width: 100%;
  height: 28vh;
  background: url(../images/page__fv.webp) no-repeat center/cover;
  display: flex;
  justify-content: space-between;
  padding: 5vh clamp(1em, 2.6vw, 2.8vw);
  position: relative;
}
.page_header--wrap:before {
  content: "";
  background: #000;
  width: 30%;
  min-width: 220px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.page_header--wrap .Inner__wrap {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.page_header--wrap .Inner__wrap .Logo {
  width: 380px;
  display: block;
  margin: auto 0;
}
.page_header--wrap.works_header--wrap {
  background: #202020;
  position: fixed;
  padding-right: 0;
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
  clip-path: inset(0);
}
@media screen and (max-width: 767px) {
  .page_header--wrap.works_header--wrap {
    height: 40vh;
  }
}
.page_header--wrap.works_header--wrap::before {
  content: "";
  width: 100%;
  height: 100vh;
  z-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page_header--wrap.works_header--wrap .Inner__wrap {
  position: relative;
  width: 30%;
}
.page_header--wrap.works_header--wrap .main {
  position: relative;
  z-index: 2;
  width: 70%;
  margin-left: auto;
}
.page_header--wrap.works_header--wrap .main img {
  width: 100%;
  min-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page_header--wrap.works_header--wrap .main img {
    min-height: 40vh;
  }
}

section.sec__class {
  padding: 7.5vh clamp(1em, 2.6vw, 2.8vw);
  background-color: #fff;
}
section.sec__class .Inner__wrap {
  max-width: 1000px;
  margin: 0 auto;
}
section.sec__class .Inner__wrap h2.en {
  font-size: 2.2rem;
  font-family: "adobe-garamond-pro", serif;
  letter-spacing: 0.086em;
}
section.sec__class .Inner__wrap h2.en.Center {
  text-align: center;
}

section.wide {
  padding: 0;
}
section.wide .about-sec .Left_wrap .bottom--title {
  display: block !important;
  position: relative;
}
section.wide .about-sec .Left_wrap {
  justify-content: flex-start;
  height: auto;
}
section.wide .about-sec .Left_wrap .Text__wrap {
  margin-top: 0;
}
section.wide .about-sec .Left_wrap .Text__top__wrap picture {
  margin-top: auto;
}

#company, #company .contents, #company .contents .Left {
  height: auto;
}
@media screen and (min-width: 1921px) {
  #company, #company .contents, #company .contents .Left {
    min-height: 100vh;
  }
}

#company .contents .Right .contents__wrap {
  position: relative;
}

#company .contents .Left .contents__wrap {
  margin: 0 auto;
}
@media screen and (min-width: 1921px) {
  #company .contents .Left .contents__wrap {
    margin: auto;
  }
}

p.Center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about-sec {
    flex-direction: column;
  }
}

@media screen and (min-width: 1921px) {
  section.wide .about-sec .Left_wrap .bottom--title, .bottom--title {
    font-size: 4.2vw;
  }
  #company .contents .Right h2 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 2581px) {
  #company .contents .Right .contents__wrap {
    padding-top: 26vw;
  }
}
h3.border {
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  margin-top: 5vh;
  border-bottom: 1px solid #eee;
  font-size: 1.3rem;
  font-family: "Zen Old Mincho", serif;
  font-style: italic;
}

/*******************制作実績詳細************************/
.Image__view, .Text__view {
  position: relative;
  overflow: hidden;
}

.Image__view::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #1a1919;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out 0.3s;
}

.Image__view img {
  vertical-align: middle;
  transform: translateX(-100%);
}

.Image__view.show::after {
  animation: viewinMask 0.5s ease-in-out forwards;
  animation-delay: 0.25s;
}

.Image__view.show img {
  animation: viewinImg 0.5s ease-in-out forwards;
  animation-delay: 0.25s;
}

@keyframes viewinMask {
  0% {
    transform: translateX(-100%);
    background: #fff;
  }
  40% {
    transform: translateX(0%);
  }
  60% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
    background: #1a1919;
  }
}
@keyframes viewinImg {
  0% {
    transform: translateX(20%);
    filter: blur(26px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    filter: blur(0px);
    opacity: 0.25;
  }
}
.Text__view::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #1a1919;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out 0.3s;
}

.Text__view h2 {
  vertical-align: middle;
  transform: translateX(-100%);
}

.Text__view.show::after {
  animation: viewinTextMask 0.5s ease-in-out forwards;
  animation-delay: 0.35s;
}

.Text__view.show h2 {
  animation: viewinText 0.5s ease-in-out forwards;
  animation-delay: 0.25s;
}

@keyframes viewinTextMask {
  0% {
    transform: translateX(100%);
    background: #000;
  }
  40% {
    transform: translateX(0%);
  }
  60% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
    background: #1a1919;
  }
}
@keyframes viewinText {
  0% {
    transform: translateX(20%);
    filter: blur(26px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    filter: blur(0px);
    opacity: 0.95;
  }
}
.works__category__wrap {
  position: absolute;
  bottom: 5vh;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .works__category__wrap {
    bottom: 0;
  }
}

h2.category-maintitle {
  font-size: 8.8rem;
  color: #fff;
  font-family: "adobe-garamond-pro", serif;
  letter-spacing: 0.086em;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  h2.category-maintitle {
    font-size: 2.4rem;
  }
}
h2.category-maintitle small.jp {
  font-size: 0.9rem;
  display: block;
  padding: 0.5em;
  background: #202020;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
  font-family: "Zen Old Mincho", serif;
}

section.works__contents__wrap {
  background: transparent;
  margin-top: 100vh;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(1em, 2.6vw, 3vw) 10vh;
  min-height: 100vh;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  section.works__contents__wrap {
    margin-top: 40vh;
    flex-direction: column;
  }
}
section.works__contents__wrap::before {
  content: "";
  background: rgba(12, 12, 12, 0.92);
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  top: 0;
  left: 0;
}
section.works__contents__wrap::after {
  content: "";
  background: rgba(0, 0, 0, 0.95);
  position: absolute;
  width: 100%;
  height: 35vh;
  bottom: -2.5vh;
  left: 0;
  z-index: 0;
  filter: blur(20px);
}
section.works__contents__wrap .side__item {
  width: 25%;
  position: sticky;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  color: #fff;
  background: #202020;
  z-index: 2;
  padding: 2.5vh clamp(1em, 2.6vw, 3vw);
}
section.works__contents__wrap .side__item dl.detail {
  margin: 0.2em 0;
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  font-size: 0.8rem;
  color: #aba1b5;
  font-weight: 300;
  width: 100%;
  font-family: "adobe-garamond-pro", serif;
}
section.works__contents__wrap .side__item dl.detail dt {
  width: 20%;
  margin: 0;
  padding: 0.1em;
}
section.works__contents__wrap .side__item dl.detail dd {
  width: 80%;
  margin: 0;
  padding: 0.1em;
  line-height: 1.855;
}
section.works__contents__wrap .side__item dl.detail dd a {
  color: #aba1b5;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  section.works__contents__wrap .side__item {
    width: 100%;
    height: auto;
    position: relative;
  }
}
section.works__contents__wrap .main__item {
  width: 70%;
  padding-top: 5vh;
  position: relative;
  z-index: 3;
}
section.works__contents__wrap .main__item picture {
  display: block;
  margin: 5vh auto;
  text-align: center;
}
section.works__contents__wrap .main__item picture:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  section.works__contents__wrap .main__item {
    width: 100%;
  }
}

.works__sp__wrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2%;
       column-gap: 2%;
  row-gap: 2.5vh;
}
@media screen and (max-width: 767px) {
  .works__sp__wrap {
    -moz-column-gap: 0.5%;
         column-gap: 0.5%;
  }
}
.works__sp__wrap picture {
  width: 23.5%;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .works__sp__wrap picture {
    width: 49.5%;
  }
}

@media screen and (max-width: 767px) {
  .page__navigation {
    margin-top: 5vh;
  }
}/*# sourceMappingURL=page.css.map */