



.sp_menu{
  display: none;
}

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

.sp_menu{
  display: block;
  position: fixed;
  top: 15px;
  right: 40px;
  z-index: 101;
}


/* ボタンのCSS 【クリック前】 */
.nav_toggle {
  display: block;
  position: absolute;
  width: 1.75rem;
  height: 1.5rem;
  z-index: 10001;
}
.nav_toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
  top: 0;
}
.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-child(3) {
  bottom: 0;
}



/* ボタンのCSS 【クリック後　.showが追加されている】 */

.nav_toggle.show i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}


/* メニューリストのCSS【クリック前】 */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0rem 0rem 1rem;
  opacity: 0;
  visibility: hidden;
}




/* メニューリストのCSS【クリック後　.showが追加されている】 */
.nav.show {
  opacity: 1;
  visibility: visible;
  background-color: rgba(255,255,255,0.95);
  transition: 0.1s;
}
.nav_menu_ul{
  margin: 0;
  padding: 0;
}
.nav_menu_ul li{
  margin: 0;
  padding: 0;
}
.nav_menu_ul li a{
  display: block;
  font-size: 16px;
  padding: 24px 0;
  font-weight: normal;
  text-align: center;
}




}