html { height:100%; }

body {
  width: 100%;
  height:100%;
  font-size: 13px;
  background-color: #ccc;
  font-family: 'Unna', serif;
  color: #322b29;
  line-height: 1.5;
}

.u-font-gothic {
  font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.u-border-top {
  border-top: 1px solid #f1f1f1;
}

.u-border-bottom {
  border-bottom: 1px solid #f1f1f1;
} 

.u-border-top-bottom {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.u-clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.u-width100 {
  width: 100%;
}

/*-------------------
  Page Transitions
-------------------*/

.scene-main .scene-elem {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.scene-main.is-exiting .scene-elem {
  -webkit-animation-direction: alternate-reverse;
  animation-direction: alternate-reverse;
}


/*-------------------
  Navigation Menu
-------------------*/

.navbar {
  position: fixed;
  top:0;
  width: 292px;
  height: 100%;
  margin: 0; 
  z-index: 3;
}

.navbar-button {
  position: absolute;
  right: -60px;
  border-left: 1px solid #ccc;
  cursor: pointer;
}

.navbar-icon {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../../img/common/navbar_icon_close.png);
  background-size: 100% 100%;
}

.navbar-icon > img {
  width: 100%;
  height: 100%;
}

.navbar-menu {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.navbar-menu > li {
  display: table;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.navbar-menu > li > a {
  display: table-cell;
  width: 100%;
  height: 57px;
  padding-top: 3px;
  padding-left: 28px;
  vertical-align: middle;
  font-size: 18px;
  letter-spacing: 0.28em;
  color: #fff;
  text-decoration: none;
  background-color: rgba(53,53,53,1);
  transition-property: background-color;  
  transition-duration: 0.3s;  
  transition-timing-function: ease-out; 
}

.navbar-menu > li > a:hover {
  background-color: rgba(53,53,53,0.76);
}


.navbar-menu:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #353535;
}

.js-navbar {
  left: -293px;
  transition-property: left;  
  transition-duration: 0.3s;  
  transition-timing-function: ease-in-out; 
}

.js-navbar.is-menu-open {
  left: 0;
}

.js-navbar-icon-img {
  opacity: 1;
  transition-property: opacity;  
  transition-duration: 0.3s;  
  transition-timing-function: ease-in-out;
}

.js-navbar-icon-img.is-menu-open {
  opacity: 0;
}

@media screen and (max-width: 768px){
  .navbar {
    width: 265px;
  }

  .navbar-button {
    right: -54px;
  }

  .navbar-icon {
    width: 54px;
    height: 54px;
  }

  .navbar-menu > li > a {
    height: 51px;
    vertical-align: middle;
    font-size: 16px;
  }

  .js-navbar {
    left: -265px;
  }

}

/*-------------------
  Header
-------------------*/

.header {
  padding: 104px 0 0 44px;
  margin-bottom: 80px;
}

.header-logo {
  margin: 0 0 42px;
}

.header-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav > li {
  display: table;
  float: left;
  margin-right: 14px;
}

.header-nav > li > a {
  display: table-cell;
  width: 210px;
  height: 30px;
  padding-top: 3px;
  border: 1px solid #fff;
  vertical-align: middle;
  transition-property: background-color;  
  transition-duration: 0.5s;  
  transition-timing-function: ease-out;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-align: center;
  font-style: italic;
  text-decoration: none;
  color: #322b29;
}

.header-nav > li > a:hover {
  background-color: #e2e2e2;
}

.header-nav > li > a.js-header-nav-link.is-on {
  background-color: #e2e2e2;
}


.scene-main .scene-header {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.scene-main .scene-workIndex {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.scene-main.is-first .scene-header {
  -webkit-animation-name: none;
  animation-name: none;
}

.scene-main.is-first .scene-workIndex {
  -webkit-animation-name: none;
  animation-name: none;
}

.scene-main.is-exiting .header-nav-link.is-on {
  background-color: transparent;
}


@media screen and (max-width: 768px){

  .header {
    padding: 98px 0 0;
    margin-bottom: 36px;
  }

  .header-logo {
    margin: 0 0 37px;
  }

  .header-logo > img {
    display: block;
    width: auto;
    height: 22px;
    margin: 0 auto;
  }

  .header-nav {
    width: 297px;
    margin:0 auto;
  }

  .header-nav > li {
    width: 142px;
    margin-right: 0;
  }

  .header-nav > li:last-child {
    float: right;
  }
  
  .header-nav > li > a {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .header-nav > li > a:hover {
    background-color: transparent;
  }

}

/*-------------------
  Work Index
-------------------*/

.workIndex {
  width: 100%;
}

.workIndex-item {
  width: 100%;
  height: 198px;
  margin-bottom: 1px;
  transition-property: height, opacity;  
  transition-duration: 0.3s;  
  transition-timing-function: ease-out;
}

.workIndex-link {
  position: relative;
  display: block;
  width: 100%;
  height: 198px;
  transition-property: background-image;  
  transition-duration: 0.3s;  
  transition-timing-function: ease-in;
}

.workIndex-item.is-hide {
  height: 0;
  opacity: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.workIndex-title {
  position: relative;
  margin: 0 0 0 45px;
  padding-top: 74px;
  height: 50px;
}

.workIndex-title > img {
  display: block;
  width: auto;
  height: 50px;
}

.workIndex-bg {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 198px;
  overflow: hidden;
}

.workIndex-link .workIndex-bg-ov {
  opacity: 0;
  transition-property: opacity;  
  transition-duration: 0.5s;  
  transition-timing-function: ease-in;
}

.workIndex-link:hover .workIndex-bg-ov {
  opacity: 1;
}

.workIndex-bg-off,
.workIndex-bg-ov {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  vertical-align: middle;
}

.workIndex-bg img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  min-width: 1200px;
  height: auto;
}

@media screen and (max-width: 1200px) {

  .workIndex-bg-off,
  .workIndex-bg-ov {
    left: 50%;
  }
  
  .workIndex-bg img {
    left:-600px;
  }

}

@media screen and (max-width: 768px) {
  .workIndex-item {
    height: 121px;
  }

  .workIndex-link {
    height: 121px;
    overflow: hidden;
  }

  .workIndex-title {
    margin: 0;
    padding-top: 36px;
  }

  .workIndex-title > img {
    margin: 0 auto;
  }

}



/*-------------------
  Side Bar
-------------------*/

.sidebar {
  position: fixed;
  top:0;
  left: 0;
  width: 292px;
}

.sidebar-link {
  display: table;
  width: 231px;
  height: 60px;
  margin-left: 60px;
  border-left: 1px solid #fff;
  background-color: #a0a0a0;
}

.sidebar-link-top {
  display: table-cell;
  padding-left: 34px;
  vertical-align: middle;
  color: #322b29;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.sidebar-work-title {
  width: 100%;
  height: 47px;
  margin: 0;
  padding-top: 50px;
  text-align: center;
}

.sidebar-work-title > img {
  width: auto;
  height: 47px;
}

@media screen and (max-width: 768px) {

  .sidebar {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .sidebar-link {
    position: fixed;
    width: 100%;
    height: 54px;
    margin-left: 54px;
    z-index: 2;
  }

  .sidebar-link-top {
    padding-left: 29px;
    font-size: 15px;
  }

  .sidebar-work-title {
    margin: 0 0 14px;
    padding-top: 70px;
  }

}


/*-------------------
  Container
-------------------*/

.container {
  width: 100%;
  min-height: 100%;
}

/*-------------------
  Contents
-------------------*/

.contents {
  margin-left: 292px;
  height: 100%;
  background-color: #fff;
  letter-spacing: 0.15em;
}

.contents-item {
  height: 100%;
  padding-bottom: 180px;
}

.contents-photo {
  width: 100%;
  margin: 0;
}

.contents-photo > img {
  display: block;
  width: 100%;
}

.contents-title {
  margin: 0;
  padding: 15px 32px 0;
  font-size: 30px;
  font-weight: normal;
  }

.contents-list {
  margin: 0;
  padding: 10px 32px 0;
  list-style: none;
}

.contents-list > li {
  padding: 0;
  line-height: 2.2;
}

.contents-list > li > small {
  font-size: 11px;
}

.contents-text {
  margin: 0;
  padding: 15px 32px 0;
}

.contents-page {
  margin: 0;
  padding: 25px 32px 0;
  font-size: 11px;
  line-height: 2;
}

.contents-page-link {
  color: #322b29;
}


@media screen and (max-width: 768px) {

  .contents {
    margin-left: 0;
    height: auto;
    background-color: #fff;
    letter-spacing: 0.15em;
  }
  
  .contents-item {
    padding-bottom: 130px;
  }

  .contents-photo {
    margin: 0;
  }

  .contents-title {
    margin: 0;
    padding:10px 18px 0;
    font-size: 20px;
    line-height: 1.25;
  }

  .contents-list {
    margin: 0;
    padding: 5px 18px 0;
  }

  .contents-text {
    margin: 0;
    padding: 10px 18px 0;
  }
  
  .contents-page {
    margin: 0;
    padding: 20px 18px 0;
  }

}

/*-------------------
  Contents Photo slider
-------------------*/

.contents-photo-slider {
  position: relative;
  overflow: hidden;
}

.contents-photo-conatiner {
  position: relative;
}

.contents-photo-list {
  position: relative;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.js-contents-photo-list {
 
}

.contents-photo-list > li {
  margin:0;
  padding: 0;
  float: left;
}

.contents-photo-list > li.is-last {
 position: absolute; 
}

.contents-photo-list > li > img {
  display: block;
  width: 100%;
}

.js-contensts-slideBtn-list {
  margin: 0 0 0px;
  padding: 0 25px;
}

.js-contensts-slideBtn {
  padding: 7px;
  cursor: pointer;
  display: inline-block;
  margin: 0 2px;
}

.js-contensts-slideBtn span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border: 1px solid #868686;
  border-radius: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.js-contensts-slideBtn.is-selected span {
  border: 1px solid #000;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .js-contensts-slideBtn-list {
    margin: 0 0 10px;
    padding: 0 18px;
  }

  .js-contensts-slideBtn {
    padding: 5px;
  }
}
/* Arrows
--------------------------------------------------*/
.js-contents-arrows {
  position: absolute;
}


.js-contents-arrows {
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -24px;
}

.js-contents-arrow {
  position: absolute;
  display: block;
  width: 24px;
  cursor: pointer;
}

.js-contents-arrow img {
  display: block;
}


.js-contents-arrow-prev {
  left: 20px;
}

.js-contents-arrow-next {
  right: 20px;
}

.scene-main.is-first {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.scene-main .scene-contents {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.scene-main.is-first .scene-contents {
  -webkit-animation-name: none;
  animation-name: none;
}

.scene-main .scene-sidebar {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.scene-main.is-first .scene-sidebar {
  -webkit-animation-name: none;
  animation-name: none;
}

@media screen and (max-width: 768px) {

  .js-contents-arrows {
    margin-top: -8px;
  }

  .js-contents-arrow {
    width: 9px;
    padding: 5px;
  }

  .js-contents-arrow img {
    width: 9px;
    height: auto;
  }

  .js-contents-arrow-prev {
    left: 7px;
  }

  .js-contents-arrow-next {
    right: 7px;
  }

  .scene-main .scene-contents {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
}