body{
    background:url(../images/bg.png) repeat fixed;
	font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}
.navicon {
  background: transparent;
  position: relative;
  height: 30px;
  display: inline-block;
  z-index: 99;
  -webkit-transition: linear 0.5s all;
  transition: linear 0.5s all;
  width:50px;
}

.navicon:before, .navicon:after {
  background: #777;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  content: "";
  height: 2px;
  left: 0;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  width: 35px;
}

.navicon:before {
  box-shadow: #777 0 12px 0 0;
  position: absolute;
  top: 0;
}

.navicon:after {
  position: absolute;
  top: 24px;
}

.navicon--active {
  -webkit-transition: linear 0.5s all;
  transition: linear 0.5s all;
}

.navicon--active:before {
  box-shadow: transparent 0 0 0 0;
  top: 15px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.navicon--active:after {
  top: 15px;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}

.toggle {
  display: block;
  margin: 20px auto;
  width: 30%;
  background: radial-gradient(#ffb39c, rgba(0, 0, 0, 0.85));
  padding: 15px;
  display: block;
  opacity: 0;
  -webkit-transition: ease-in 0.5s all;
  transition: ease-in 0.5s all;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  position:absolute;
  left:35%;
  border: 3px #c17979 solid;  /* 枠線を引く */
  border-radius: 20px;      /* 角丸の指定 */
  -webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
  -moz-box-shadow: 0 10px 8px -6px #8d8c8c;
  box-shadow: 0 16px 16px -6px #8d8c8c;
}

.toggle--active {
  display: block;
  opacity: 1;
  -webkit-transition: ease-in 0.5s all;
  transition: ease-in 0.5s all;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index:999;
}


.list-menu li {
  width: 80%;
  display: block;
  margin: 10px auto;
}

.list-menu-item {
  display: block;
}

.list-menu li a {
  text-decoration: none;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 17px;
  border-bottom: 2px solid transparent;
  -webkit-transition: linear 0.5s all;
  transition: linear 0.5s all;
  font-weight: 500;
  padding: 5px 0;
}

.list-inner-menu {
	list-style: disc;
	margin-left: 25%;
}

.list-inner-menu li {
    display: list-item;
    list-style-type: none;
}

.list-inner-menu li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f1b0";
    position: absolute;
    margin: 4px 0 0 -1.4em;
    color: #ff938b;
}

.list-inner-menu li a {
    font-size: 14px;
	text-align: left;
}

.list-menu li a.active {
  color: #f78d8d;
  -webkit-transition: linear 0.5s all;
  transition: linear 0.5s all;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  font-weight: 700;
}

.list-inner-menu li a {
  display: inline-block;
}
.list-inner-menu li a {
  transition: .5s;
}
.list-inner-menu li a:hover {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

@media(max-width:991px){
.toggle {
    width: 50%;
    left: 25%;
}
}
@media(max-width:414px){
    .navicon {
        width: 35px;
    }
    .toggle {
        width: 70%;
        left: 15%;
        padding: 10px;
    }
    .list-menu li a {
        font-size: 15px;
    }
    .list-inner-menu li a {
      font-size: 12px;
    }
    .list-inner-menu li:before {
        margin: 2px 0 0 -1.4em;
    }
}
