@charset "utf-8";

/* --------------------------------

  nav

-------------------------------- */

@media screen and (min-width: 1001px) {

  .nav {
    display: block;
    position: absolute;
    width: 100%;
    height: 85px;
    margin-top: -115px;
    background: #fff;
    z-index: 1000;
  }

  .nav.fixed {
    position: fixed;
    top: 0;
    margin-top: 0;
    -webkit-transition: margin-top .4s;
            transition: margin-top .4s;
  }

  .nav:before,
  .nav:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 5px;
  }

  .nav:before {
    top: -5px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.2) 100%);
  }

  .nav:after {
    bottom: -5px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 100%);
  }

  .nav .inner {
    max-width: 1100px;
    padding-top: 15px;
    padding-right: 233px;
    padding-left: 215px;
  }

  .nav-items {
    display: table;
    width: 100%;
  }

  .nav-item {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
  }

  .nav-link {
    display: table;
    position: relative;
    width: 100%;
    height: 55px;
    padding: 3px 0;
    color: #333;
    text-align: center;
    background-color: #eee;
    -webkit-transition: background-color .2s;
            transition: background-color .2s;
  }

  .nav-link:hover {
    color: #333;
    text-decoration: none;
    background-color: #fff;
  }

  .nav-link:before,
  .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    margin: auto;
    background: #7bc8c3;
    -webkit-transition: width .2s;
            transition: width .2s;
  }

  .nav-link:before {
    top: 0;
    left: 0;
  }

  .nav-link:after {
    right: 0;
    bottom: 0;
  }

  .nav-link:hover:before,
  .nav-link:hover:after {
    width: 100%;
  }

  .nav-item.active .nav-link {
    color: #7bc8c3;
  }

  .nav-item.active .nav-link:before,
  .nav-item.active .nav-link:after {
    width: 100%;
  }

  .nav-name {
    display: table-cell;
    vertical-align: middle;
    font-size: .7em;
    background: #fff;
  }

  .nav-name:before {
    content: "";
    display: block;
    color: #7ac7c3;
    font: 1.5em/1.2 "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  .nav1 .nav-name:before { content: "HOME";}
  .nav2 .nav-name:before { content: "CONCEPT";}
  .nav3 .nav-name:before { content: "MENU";}
  .nav4 .nav-name:before { content: "STAFF";}
  .nav5 .nav-name:before { content: "STYLE BOOK";}
  .nav6 .nav-name:before { content: "ACCESS";}
  .nav7 .nav-name:before { content: "BLOG";}

}

@media screen and (max-width: 1000px) {

  .nav {
    display: block;
    position: fixed;
    top: 0;
    right: -240px;
    height: 100%;
    padding-top: 70px;
    padding-bottom: 0;
    z-index: 1000;
  }

  .nav.open {
    right: 0;
    width: 100%;
  }

  .nav .inner {
    position: relative;
    width: 240px;
    height: 100%;
    margin-right: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 20;
  }

  .nav.open .inner {
    display: block;
    width: 100%;
    margin-right: 240px;
  }

  .nav-items {
    padding: 0 10px;
  }

  .nav-item {
    display: block;
    position: relative;
  }

  .nav-item:not(:last-child) {
    margin-bottom: 5px;
  }

  .nav-link {
    display: block;
    position: relative;
    color: #fff;
    text-align: center;
    line-height: 50px;
    background: #49a09c;
  }

  .nav-name {
    font-size: 1.1em;
    font-weight: bold;
  }

  .nav-link:hover {
    color: #fff;
    text-decoration: none;
  }

  .nav-item.active .nav-link {
    color: #fff;
    text-decoration: none;
  }

}

/* --------------------------------

  button

-------------------------------- */

  .nav-button {
    display: block;
    position: absolute;
    top: 0;
    right: 240px;
    width: 55px;
    height: 55px;
    background: #7bc8c3;
    cursor: pointer;
    outline: none;
    z-index: 1000000;
  }

  .nav.open .nav-button {
    right: 0;
    background: #49a09c;
  }

  .nav-bar {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    margin: auto;
    background: #fff;
  }

  .nav-bar1 {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
    -webkit-transition: 0s;
            transition: 0s;
  }

  .nav-bar3 {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
    -webkit-transition: 0s;
            transition: 0s;
  }

  .nav.open .nav-bar {
    background: #fff;
  }

  .nav.open .nav-bar1 {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }

  .nav.open .nav-bar2 {
    display: none;
  }

  .nav.open .nav-bar3 {
    -webkit-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
  }

@media screen and (min-width: 1001px) {

  .nav-button {
    display: none;
  }

}

/* --------------------------------

  screen

-------------------------------- */

@media screen and (max-width: 1000px) {

  .nav-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: #7bc8c3;
    visibility: hidden;
    opacity: 0;
  }

  .nav.open .nav-screen {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
  }

}

@media screen and (max-width: 1000px) and (min-height: 600px) {

  .nav-screen:before {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 120px;
    margin: auto;
    background: url(../img/base/logo4.png) no-repeat center;
    background-size: auto 100%;
    opacity: .3;
  }

}