
/* ------------------------------------- /
/   header
/* ------------------------------------- */
header{
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
header h1{
  font-size: 1.7rem;
}

/*header_tel*/
.header_tel{
  display: flex;
  align-items: center;
}
.header_tel a{
  background-image: url(../img/tel_icon.svg);
  background-size: 45px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 53px;
  font-size: 3.2rem;
  font-weight: 600;
  margin-right: 30px;
}
.header_tel .eigyo p{
  font-size: 1.7rem;
}
.header_tel .eigyo p span{
  font-size: 1.5rem;
  padding: 0 7px;
  position: relative;
  top: -2px;
}
@media all and (max-width: 1160px) {
  header .inner{
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media all and (max-width: 1024px) {
  .header_menu li{
    margin-left: 25px;
  }
  .header_menu{
    display: none;
  }
  .header_tel .eigyo p{
    display: none;
  }
  .header_tel a{
    margin-right: 0;
  }
}
@media all and (max-width: 1023px) {
  header{
  height: 60px;
  }
}
@media all and (max-width: 500px){
.header_tel a {
    background-size: 21px;
    padding-left: 26px;
    letter-spacing: 0.1rem;
    font-size: 2rem;
}
header h1 span{
  padding-left: 0px;
}
header h1 {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
}
header{
  padding: 0 10px;
}
}

/* ***********************************************************
* #global-nav
* *********************************************************** */

.open #global-nav {
  z-index: 1000;
  visibility: visible;
  background-color: rgba(35,24,21,0.5);

}
#global-nav {
  visibility: hidden;
  position: fixed;
  display: table;
  vertical-align: middle;
  color: #fff;
  top: 0;
  right: 0;
  height: 100%;
  width: 40%;
  text-align: center;
}
#global-nav .global-inner{
    display: table-cell;
    vertical-align: middle;
}
#global-nav ul {
  
  list-style: none;
}
#global-nav li{
  margin-bottom: 30px;
}
#global-nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  font-size:2rem;
}
@media all and (max-width: 1024px) {
  #global-nav{
    width: 60%;
  }
}
@media all and (max-width: 600px) {
  #global-nav{
    width: 100%;
  }
  #global-nav a {
      font-size: 1.7rem;
  }
  #global-nav li {
      margin-bottom: 20px;
  }
}
/* ***********************************************************
* menu_sns
* *********************************************************** */
.menu_sns{
  display: flex;
  max-width:420px;
  margin: 20px auto 0;
  align-items: center;
  justify-content: space-between;
}
.menu_sns a:hover{
  opacity: 0.7;
}
.menu_sns .nav_line{
  width: 300px;
}
.menu_sns .nav_insta{
  width: 36px;
  position: relative;
}
.menu_sns .nav_insta:before {
    content: "";
    position: absolute;
    top: 13px;
    left: -39px;
    width: 1px;
    height: 36px;
    border-left: solid 1px #fff;
    transform: rotate( 27deg );
}
@media all and (max-width: 500px) {
  .menu_sns {
      max-width: 300px;
  }
  .menu_sns .nav_line {
      width: 190px;
  }
  .menu_sns .nav_insta {
      width: 31px;
  }
  .menu_sns .nav_insta:before {
      height: 26px;
  }
}
/* ***********************************************************
* nav-list
* *********************************************************** */

#global-nav ul li {
  opacity: 0;
  -webkit-transform: scaleX(0) translateX(-260px);
  transform: scaleX(0) translateX(-260px);
  -webkit-transition: none;
  transition: none;
}
.open #global-nav ul li {
  opacity: 1;
  -webkit-transform: scaleX(1) translateX(0);
  transform: scaleX(1) translateX(0);

  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;

  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}
.open #global-nav ul li:nth-child(2) {
  -webkit-transition-delay: .7s;
  transition-delay: .7s;
}.open #global-nav ul li:nth-child(3) {
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}.open #global-nav ul li:nth-child(4) {
  -webkit-transition-delay: .9s;
  transition-delay: .9s;
}.open #global-nav ul li:nth-child(5) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}.open #global-nav ul li:nth-child(6) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

/* ****************************
* #nav-bg
* ******************************/
#nav-bg {
    content: "";
    width: 40%;
    height: 100vh;
    top: 0;
    right: 0;
    display: block;
    position: fixed;
    background: #fff;
    transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 0;
    visibility: hidden;
/*    transform: scale(.02);
    -webkit-transform: scale(.02);*/
}
.open #nav-bg {
  opacity: 1;
  visibility: visible;
/*  -webkit-transform: scale(1);
  transform: scale(1);*/
  -webkit-transition: all 2s ease-out;
  transition: all 2s ease-out;
}
@media all and (max-width: 1024px) {
  #nav-bg{
    width: 60%;
  }
}
@media all and (max-width:600px) {
  #nav-bg {
    width: 100%;
  }
}
/* ***********************************************************
* #nav-toggle
* *********************************************************** */
.sp_circle_menu {
    position: fixed;
    top: 80px;
}
#nav-toggle {
  display: block;
  position: fixed;
  background-color: #221714;
  top: 100px;
  right: 39px;
  width: 55px;
  height: 55px;
  padding: 16px 12px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99999999999;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 3px;
  width: 100%;
  background: #fff;
  left: 0;
  zoom: 1;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
.open #nav-toggle {
  background: transparent;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  zoom: 1;
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  zoom: 1;
}
@media all and (max-width: 500px){
    #nav-toggle {
      top: 70px;
      right: 10px;
  }
    .low_nav-toggle {
      top: 80px!important;
      right: 10px;
  }  
}
@media all and (max-width: 320px) {
   #nav-toggle {
    right: 29px;
  }
}















