@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Muli:300|Noto+Sans+JP:300&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=EB+Garamond|Noto+Serif+JP:300&subset=japanese');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
}

html,
body {
  height: 100%;
}

body {
  background: #fff;
  color: #000;
  font-family: 'Muli','Noto Sans JP',sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .06em;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  min-width: 768px;
}

.serif {
  font-family: 'EB Garamond', 'Noto Serif JP', serif;
}

a {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-weight: 300;
}

#loading {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 1s, visibility 1s;
  width: 100%;
  z-index: 1333;
}

#loading div {
  animation: spin 1.5s cubic-bezier(.9,0.1,.2,.9) infinite normal;
  border: 1px solid #aaa;
  border-right-color: transparent;
  border-radius: 50%;
  height: 40px;
  left: 50%;
  position: fixed;
  top: 50%;
  margin: -20px 0 0 -20px;
  width: 40px;
}
@keyframes spin {
  from {} to {
    transform: rotate(360deg);
  }
}

#loading.hide {
  opacity: 0;
  visibility: hidden;
}

#loading.hide div {
  display: none;
}

.left {
  height: 100%;
  min-height: 400px;
  padding: 0 50px;
  position: fixed;
  top: 0;
  width: 280px;
  z-index: 2;
}

h1 {
  color: #000;
  font-size: 143%;
  line-height: 30px;
  letter-spacing: .2em;
  padding: 45px 0;
}

h1 a {
  color: #000;
  transition: .2s;
}

#gnavi a {
  display: inline-block;
  overflow: hidden;
  position: relative;
  letter-spacing: .12em;
}

#gnavi a::before,
#gnavi a::after {
  background: #000;
  bottom: 1px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  transition: all .4s cubic-bezier(.3,0,.15,1);
}

#gnavi a::before {
  left: -200%;
}

#gnavi a::after {
  background: transparent;
}

#gnavi a.active::after {
  background: #000;
}

#gnavi a:nth-child(n+2) {
  margin-top: 15px;
}

@media screen and (min-width: 769px) {
  h1 a:hover {
    opacity: .4;
  }
  
  #gnavi a:hover::before {
    left: 0;
  }

  #gnavi a:hover::after {
    left: 200%;
  }
}

.copyright {
  bottom: 65px;
  color: #aaa;
  font-size: 79%;
  left: 50px;
  line-height: 20px;
  position: absolute;
}

.right {
  min-height: 100%;
  padding: 150px 0 150px 280px;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 1152px) {
  body {
    font-size: 13px;
  }
  
  h1 {
    font-size: 135%;
    line-height: 25px;
    padding: 45px 0;
  }
  
  .left {
    padding: 0 30px;
    width: 220px;
  }
  
  .copyright {
    bottom: 30px;
    left: 30px;
  }
  
  .right {
    padding: 150px 0 150px 220px;
  }
}





.top {
  height: 100%;
  padding-bottom: 0;
  padding-top: 0;
}

.top .cover {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.top .cover .img {
  display: block;
  background: none center center no-repeat;
  background-size: cover;
  width: 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  animation: cover_zoom 15s ease 1.6s 1 forwards;
}

@keyframes cover_zoom {
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}





.profile img {
  width: 420px;
}

.profile h2 {
  font-size: 157%;
  letter-spacing: .24em;
  line-height: 1.2;
  margin-top: 40px;
}

.profile h3 {
  font-size: 100%;
}

.profile dl {
  margin-top: 50px;
}

.profile dt {
  float: left;
  width: 120px;
}

.profile dd {
  margin-left: 120px;
}

.profile dt:nth-of-type(n+2),
.profile dd:nth-of-type(n+2) {
  margin-top: 5px;
}





.works {
  padding-bottom: 0;
  padding-top: 0;
}

.works a {
  background: #000;
  border: 0;
  display: block;
  height: 50vw;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  position: relative;
}

.works a .img {
  display: block;
  opacity: .95;
  transition: .4s;
  background: none center center no-repeat;
  background-size: cover;
  width: 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.works a::before {
  background: #000;
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 200px;
  margin: -100px 0 0 -150px;
  transform: scale(1.02);
  transition: .5s;
  z-index: 2;
}

.works a::after {
  border: 1px solid #fff;
  border-width: 1px 1px 0 0;
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin: 0 3px -50px 0;
  transition: .5s;
  z-index: 3;
}

.works a .pop {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 80px;
  margin: -50px 0 0 -90px;
  transition: .5s;
  text-align: center;
  opacity: 0;
  z-index: 2;
}

.works a .pop h2 {
  color: #fff;
  display: block;
  font-size: 110%;
  letter-spacing: .2em;
  overflow: hidden;
  transition: .5s;
  width: 100%;
}

.works a .pop .year {
  color: #fff;
  display: block;
  font-size: 90%;
  letter-spacing: .1em;
  overflow: hidden;
  transition: .5s;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .works:hover a .img {
    opacity: .4;
  }
  
  .works:hover a:hover .img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }
  
  .works a:hover::before {
    transform: scale(1);
    opacity: .7;
  }

  .works a:hover::after {
    opacity: 1;
    margin-right: -2px;
  }

  .works a:hover .pop {
    opacity: 1;
  }
}





.gallery {
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
}

.gallery a {
  background: #000;
  border: 0;
  display: block;
  float: left;
  height: 50vw;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery .title {
  background: rgba(0,0,0,.7);
  color: #fff;
  display: block;
  text-align: center;
  float: right;
  width: 33.3%;
  height: 140px;
  padding: 40px 0 0;
  margin-top: -140px;
  position: relative;
  z-index: 1;
}

.gallery h2 {
  font-size: 139%;
  letter-spacing: .2em;
}

.gallery .year {
  display: block;
  font-size: 90%;
}

.gallery a:nth-of-type(n+2) {
  width: 33.3%;
  height: 20vw;
}

.gallery .img {
  display: block;
  opacity: .95;
  transition: .4s;
  background: none center center no-repeat;
  background-size: cover;
  width: 101%;
  height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery a:last-child {
  display: block;
  margin: 0 auto;
  float: none;
  clear: left;
  background: #fff;
  height: auto;
  padding: 65px 0;
  text-align: center;
}

.gallery a:last-child span {
  display: inline-block;
  position: relative;
}

.gallery a:last-child span::before {
  background: #000;
  bottom: 1px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  transition: .5s;
}

@media screen and (min-width: 769px) {
  .gallery a:hover .img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }
  .gallery a:nth-of-type(n+2):hover .img {
    transform: translate(-50%, -50%) scale(1.04);
  }
  .gallery a:last-child span:hover::before {
    opacity: .1;
  }
}

@media screen and (max-width: 1000px) {
  .gallery .title {
    width: 50%;
  }
  .gallery a:nth-of-type(n+2) {
    width: 50%;
    height: 30vw;
  }
  .gallery a:last-child {
    padding: 50px 0;
  }
}





.contact img {
  width: 313px;
}

.contact h2 {
  font-size: 143%;
  letter-spacing: .2em;
  margin-top: 20px;
}

.contact dl {
  margin-top: 50px;
}

.contact dt {
  float: left;
  width: 120px;
}

.contact dd {
  margin-left: 120px;
}

.contact dt:nth-of-type(n+2),
.contact dd:nth-of-type(n+2) {
  margin-top: 5px;
}

.contact a {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.contact a::before {
  background: #000;
  bottom: 1px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  transition: .5s;
}

@media screen and (min-width: 769px) {
  .contact a:hover::before {
    opacity: .1;
  }
}





@media screen and (max-width: 414px) {
  body {
    font-size: 12px;
    min-width: inherit;
  }
  
  .left {
    background: #fff;
    min-height: inherit;
    overflow: hidden;
    padding: 0;
    transition: all .3s cubic-bezier(.3,0,.15,1);
    width: 50px;
  }
  
  .gnavi_open .left {
    width: 100vw;
  }
  
  h1,
  #gnavi {
    padding-left: 50px;
  }
  
  h1 {
    padding-top: 80px;
  }
  
  #gnavi_btn {
    height: 50px;
    left: 0;
    position: fixed;
    top: 0;
    transition: all .5s cubic-bezier(.3,0,.15,1);
    width: 50px;
    z-index: 101;
  }

  #gnavi_btn span {
    background: #000;
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    transition: all .4s cubic-bezier(.3,0,.15,1);
    width: 20px;
  }

  #gnavi_btn span::before,
  #gnavi_btn span::after {
    background: #000;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: -6px;
    transition: all .5s cubic-bezier(.3,0,.15,1);
    width: 100%;
  }

  #gnavi_btn span::after {
    top: 6px;
  }

  .gnavi_open #gnavi_btn {
    top: 0;
  }

  .gnavi_open #gnavi_btn span {
    background: rgba(0,0,0,0);
  }

  .gnavi_open #gnavi_btn span::before {
    top: 0;
    transform: rotate(45deg);
    width: 24px;
  }

  .gnavi_open #gnavi_btn span::after {
    top: 0;
    transform: rotate(-45deg);
    width: 24px;
  }
  
  .copyright {
    display: none;
  }
  
  .right {
    padding: 0 0 0 50px;
  }
  
  
  
  
  .top .cover {
    background-position-x: right;
  }
  
  
  
  
  
  .profile {
    padding-bottom: 40px;
  }
  
  .profile img {
    width: 100%;
  }

  .profile h2 {
    margin-top: 15px;
  }

  .profile h3 {
    margin-top: 15px;
  }

  .profile dt {
    color: #aaa;
    line-height: 1.6;
    display: block;
    float: none;
    margin: 0 !important;
  }

  .profile dd {
    margin: 0 0 20px 0 !important;
  }
  
  
  
  
  
  .works a {
    border-width: 0 5px 5px 0;
    height: 200px;
    min-height: inherit;
  }
  
  .works a::before {
    opacity: .7;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    width: 165px;
    height: 65px;
  }
  
  .works a::after {
    bottom: 28px;
    right: 15px;
    width: 9px;
    height: 9px;
    margin: 0;
    opacity: 1;
  }
  
  .works a .pop {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    width: 165px;
    height: 65px;
    margin: 0;
    opacity: 1;
    text-align: left;
  }

  .works a .pop h2 {
    height: auto;
    letter-spacing: .1em;
    padding: 10px 10px 0;
  }

  .works a .pop .year {
    padding: 0 10px;
  }
  
  
  
  

  .gallery .title {
    text-align: left;
    padding: 10px;
    width: 50%;
    height: 65px;
    margin: -65px 0 0 50%;
  }

  .gallery h2 {
    font-size: 110%;
    letter-spacing: .1em;
  }
  
  .gallery a:last-child {
    padding: 50px 0;
  }
  
  
  
  
  
  .contact {
    padding-bottom: 45px;
  }
  
  .contact img {
    margin-top: 50px;
    width: 80%;
  }

  .contact h2 {
    margin-top: 15px;
  }

  .contact dl {
    margin-top: 25px;
  }

  .contact dt {
    color: #aaa;
    line-height: 1.6;
    display: block;
    float: none;
    margin: 0 !important;
  }

  .contact dd {
    margin: 0 0 20px 0 !important;
  }
}