header {
  padding: 20px 50px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  line-height: 110px;
  height: 110px;
  vertical-align: middle;
  z-index: 9;
}
.headlogo {
  vertical-align: middle;
  width: 180px;
}
#header1 {
  height: 60px;
}


#header2 {
  background-color: #ffffff;
  height: 60px;
  border-bottom: 1px solid #e7e7e7;
}
a {
  text-decoration: none;
  color: #fff;
}
#header1 a {
  color: #fff;
}
#header2 a {
  color: #222222;
}
nav {
  margin: 0 0 0 auto;
}
ul.menu-ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.menu-ul li {
  margin: 0 0 0 15px;
  font-family: 'shippori-mincho-b1';
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}
.sp-nav {
  display: none;
}
/* フェードイン用のCSS */
.slide-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.3s 0s ease-out;
}


/*--------------------------------------
  tablet
  --------------------------------------*/
@media screen and (max-width: 960px) {
  .pc-nav {
    display: none;
  }
	.pc-nav-title {
    display: none;
  }
  .sp-nav {
    z-index: 9999;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .5s ease-in-out;
  }

  header {
    padding: 15px 25px;
		width: 90px;
    height: 90px;
		right: 0;
  }
	#header1 {
		height: 90px;
	}
	#header2 {
		height: 90px;
	}


  .headlogo {
    width: 150px;
  }
  #hamburger1 {
      position: relative;
      display: block;
      width: 45px;
      height: 30px;
      margin: 0 0 0 auto;
  }
  #hamburger1 span {
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      width: 100%;
      height: 4px;
      background-color: #fff;
      transform: translateY(-50%);
  }
  #hamburger1::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #fff;
  }
  #hamburger1::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #fff;
  }
  #hamburger2 {
    position: relative;
    display: block;
    width: 45px;
    height: 30px;
    margin: 0 0 0 auto;
  }
  #hamburger2 span {
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      width: 100%;
      height: 4px;
      /* background-color: #000; */
      background-color: #f0857d;
      transform: translateY(-50%);
  }
  #hamburger2::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      /* background-color: #000; */
      background-color: #f0857d;
  }
  #hamburger2::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      /* background-color: #000; */
      background-color: #f0857d;
  }

/*スマホメニュー*/
  .sp-nav ul {
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
  }
  .sp-nav li {
		font-size: 1.5em;
    margin: 0;
    padding: 20px;
  }
  .sp-nav li span {
      /* font-size: 15px; */
      color: #fff;
  }
  .sp-nav li a, .sp-nav li span {
      display: block;
      padding: 20px 0;
  }
  /*-閉じるアイコンー*/
  .sp-nav .close {
      position: relative;
      padding-left: 20px;
  }
  .sp-nav .close::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      width: 16px;
      height: 1px;
      background: #fff;
      transform: rotate( 45deg );
  }
  .sp-nav .close::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      width: 16px;
      height: 1px;
      background: #fff;
      transform: rotate( -45deg );
  }
  .toggle {
      transform: translateY( 0 );
      opacity: 1;
  }
  .main-visual {
      padding: 0 4%;
  }

}

/*--------------------------------------
  mobile
  --------------------------------------*/
@media screen and (max-width: 640px){
}