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

header{
  display: none;
}

header.body_view{
  transition: unset;
}

.mv{
  width: 100%;
  height: 100%;
  min-height: 800px;
  padding: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mv > h1{
  width: 100px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: .8;
}

.mv div.title{
  color: #FFF;
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  right: 200px;
  z-index: 5;
  transform: translateY(-50%);
}

.mv .title h1{
  font-size: 33px;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: 0.25em;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
}

.mv p{
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  white-space: nowrap;
  padding: 25px 25px 0 0;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.mv ul li .img-wrap {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.mv ul img{
  max-width: inherit;
  width: 100%;
  height: 100%;
	object-fit: cover;
  pointer-events: none;
  object-position: center;
  display: block;
}
@-moz-document url-prefix() {
  .mv ul img {
    object-fit: cover;
  }
}
.mv ul .img-wrap.ani{
  animation: slide_img 5s forwards ease-out;
  filter: blur(20px);
  object-fit: cover;
}

@keyframes slide_img {
  0%{
    transform: scale(1.05);
    filter: blur(20px);
  }
  50%{
    filter: blur(0);
  }
  100%{
    transform: scale(1);
    filter: blur(0);
  }  
}

.scroll {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #C0C0C0;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #323232;
  bottom: -70px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

.scroll::after {
  background-color: #ccc;
  bottom: -70px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.top_nav{
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
}

.top_nav h1{
  width: 140px;
  line-height: 60px;
  margin-right: 80px;
  transform: translateY(-3px)
}

.top_nav h1 img{
  vertical-align: middle;
}

.top_nav ul{
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  justify-content: center;
  gap: 0 40px;
}

.top_nav ul a{
  font-size: 18px;
  line-height: 60px;
  display: block;
}

.latest{
  padding: 100px 0 200px;
}

.latest > div{
  margin-top: -20px;
  padding-left: 300px;
}

.latest > div a{
  display: block;
  position: relative;
}

.latest > div a:hover{
  opacity: 1 !important;
}

.latest a > div:first-of-type{
  width: 445px;
  height: 410px;
  overflow: hidden;
  position: relative;
}

.latest > div img{
  max-width: inherit;
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: 0.6s ease-out;
}

.latest a > div:first-of-type:hover img{
  transform: translate(-50%,-50%) scale(1.1);
  opacity: 0.7;
  transition: 0.6s ease-out;
}

.latest a > div:last-of-type{
  position: absolute;
  bottom: 0;
  left: 460px;
}

.latest a p{
  font-size: 11px;
  line-height: 1;
  margin-bottom: 5px;
}

.latest a h3{
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.latest a.btn_aw{
  position: absolute;
  top: 280px;
  left: 65px;
}

.works .pic,
.about .pic{
  width: 445px;
  height: 665px;
  position: absolute;
  top: -35px;
  left: -70px;
  overflow: hidden;
  z-index: 1;
}

.about .pic{
  top: -55px;
  left: auto;
  right: -70px;
}

.works .pic img,
.about .pic img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: 1s all; 
}


@media screen and (min-width: 861px) {
  .works .pic a,
  .about .pic a{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }  
  .works .pic a:hover,
  .about .pic a:hover{
    opacity: 1;
  }
 .works .pic a:hover img,
  .about .pic a:hover img{
    transform: translate(-50%,-50%) scale(1.1);
  }  

}

.works .txt,
.about .txt{
  padding: 80px 0 180px 475px;
  position: relative;
}

.about .txt{
  padding: 120px 0 180px 100px;
  overflow: visible;
}

.works .txt::before,
.about .txt::before{
  content: "";
  width: 90vw;
  height: 100%;
  background: #0c0c0c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about .txt::before{
  background: #f7f7f7;
  left: auto;
  right: 200px;
}

.works .txt div,
.about .txt div{
  padding: 65px 65px 0;
}

.works h3,
.about h3{
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.works p,
.about p{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.works a.btn_aw,
.about a.btn_aw{
  margin: 50px 0 0 60px;
}

.works{
  color: #FFF !important;
  padding-bottom: 240px;
}

.works .title span::after{
  background: #FFF;
}

.about{
  padding-bottom: 80px;
}

.photography{
  max-width: 600px;
  margin: 0 auto;
}

.photography a{
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 861px) {
  .photography a{
    background: url("../img/photography_o.jpg") no-repeat;
    background-size: 100% auto;
    transition: 0s;
  }
  
  .photography a img{
    transition: .8s all;
  }
  
  .photography a:hover{
    opacity: 1;
  }
  
  .photography a:hover img{
    opacity: 0;
  }
  
  .photography a::before{
    font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    content: "→";
    font-size: 20px;
    line-height: 1;
    color: #b7b7b7;
    position: absolute;
    bottom: 70px;
    left: 38px;
    transition: .6s ease-in;
    z-index: 1;
  }
  .photography a:hover::before{
    left: 45px;
    color: #101010;
    transition: .6s ease-out;
  }
}


@media screen and (max-width: 860px) {
  
  .mv{
    width: 100%;
    height: 100%;
    min-height: 70vw;
    padding: 4vw;
    margin-bottom: 5vw;
  }
  
  .mv > h1{
    width: 18vw;
    top: 9vw;
  }
  
  .mv div.title{
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 5;
    transform: translate(50%, -50%);
  }

  .mv .title h1{
    font-size: 5.5vw;
    line-height: 1;
    letter-spacing: 0.25em;
    text-shadow: 0px 0px 1vw rgba(0, 0, 0, 0.9);
  }

  .mv p{
    font-size: 3.8vw;
    line-height: 1.8;
    letter-spacing: 0.2em;
    padding: 5vw 5vw 0 0;
    text-shadow: 0px 0px 1vw rgba(0, 0, 0, 0.8);
  }

  .mv ul img{
    max-width: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .scroll {
    font-size: 3.2vw;
    bottom: 7vw;
  }

  .scroll::before {
    bottom: -7vw;
    height: 6vw;
  }

  .scroll::after {
    bottom: -7vw;
    height: 6vw;
  }

  .top_nav{
    display: none;
  }

  .latest{
    padding: 15vw 6vw 0;
    margin-bottom: 40vw;
  }

  .latest > div{
    margin-top: 0;
    padding-left: 50%;
  }

  .latest > div a{
    display: block;
    position: relative;
  }

  .latest a > div:first-of-type{
    width: 100%;
    height: 45vw;
    overflow: hidden;
    position: relative;
  }

  .latest > div img{
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.6s ease-out;
  }

  .latest a > div:first-of-type:hover img{
    transform: translate(-50%,-50%) scale(1.1);
    transition: 0.6s ease-out;
  }

  .latest a > div:last-of-type{
    position: static;
    bottom: auto;
    left: auto;
    margin-top: 3vw
  }

  .latest a p{
    font-size: 3vw;
    line-height: 1;
    margin-bottom: 1vw;
  }

  .latest a h3{
    font-size: 3.8vw;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .latest a.btn_aw{
    position: absolute;
    top: 50%;
    left: 20vw;
  }

  .works .pic,
  .about .pic{
    width: 60%;
    height: 80vw;
    position: absolute;
    top: -15vw;
    left: 45%;
    overflow: hidden;
    transform: translateX(-50%)
  }

  .about .pic{
    left: 55%;
    right: auto
  }

  .works .txt,
  .about .txt{
    padding: 75vw 0 0;
  }

  .about .txt{
    padding: 75vw 0 0 12vw;
  }

  .works .txt::before,
  .about .txt::before{
    content: "";
    width: 90vw;
    height: 110%;
    background: #000;
    position: absolute;
    top: 0;
    left: -6vw;
    z-index: -1;
  }

  .about .txt::before{
    background: #f7f7f7;
    left: auto;
    right: -6vw;
  }

  .works .txt div,
  .about .txt div{
    padding: 0;
    padding-left: 10vw
  }

  .works h3,
  .about h3{
    font-size: 3.8vw;
    margin-bottom: 2vw;
  }

  .works p,
  .about p{
    font-size: 3.5vw;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .works a.btn_aw,
  .about a.btn_aw{
    margin: 8vw 0 0 0;
  }

  .works{
    color: #FFF !important;
    padding-bottom: 35vw;
  }

  .works .title span::after{
    background: #FFF;
  }

  .about{
    padding-bottom: 25vw;
  }
  
  .photography{
    max-width: 90%;
  }

  .photography a{
    display: block;
  }
  
}


.bx-wrapper {
  width: 100% !important;
  clear: both !important;
}

.bx-viewport {
  -webkit-transform: translateZ(0);
}
/** THEME
===================================*/

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../img/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  position: absolute;
  top: 50%;
  left: 50px;
  width: auto;
  transform: translate(-50%,-50%) rotate(90deg);
  text-align: center;
  font-size: 12px;
  line-height: 1;
  font-family: Arial;
  white-space: nowrap;
  font-weight: bold;
  color: #666;
  padding: 0;
  margin: 0;
  opacity: .3;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #4A4A4A;
  text-indent: -9999px;
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 8px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background:  #B4B4B4;
}

@media screen and (max-width: 860px) {
  .bx-wrapper .bx-pager,
  .bx-wrapper .bx-controls-auto {
    left: 8vw;
  }  
  .bx-wrapper .bx-pager.bx-default-pager a {
    width: 1vw;
    height: 1vw;
    margin: 0 2vw;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}
