
/* 黒背景 */
.demo {
	margin-top: 70px;
}
  .demo a {
    display: block; }
  .demo .child {
    display: none;

     }
    .demo .child .menu {
 }
      .demo .child .menu:hover {
 }
    .demo .child > li {

       }
      .demo .child > li:last-child {
       }
	
/* ボタン部分 */

.menu2 {
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
	margin-right: auto;
	margin-left: auto;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.5rem;
	letter-spacing: 1px;
	position: relative;
	width: 320px;
	height: 39px;
	background: #4C4C4C;
}

.menu2 span {
	font-size: 1.6rem;
}

a.menu2 {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}

/* ボタンに触ってるとき */
a.menu2:hover {
    opacity:0.7;
	transition: .7s;
}

/* ビフォア要素 */
.s-witch .menu2:before {
	font-family: 'Noto Sans JP', sans-serif;
	content: "LINE\a0UP\3092\3082\3063\3068\898B\308B";/*LINE UPをもっと見る*/
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: 1px;
	display: inline-block;/*忘れずに！*/
	color: #ffffff;
	position:absolute;
	top: 5px;
	left: 69px;
}

/* アフター要素 */
.s-witch .menu2:after { /* 棒の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  width: 30px; /* 棒の長さ */
  height: 1px; /* 棒の太さ */
  background: #ffffff;　 /* 棒の色 */
}



.s-witch .menu2:hover:before {
	left: 80px;
	transition: .7s;
}

.s-witch .menu2:hover:after {
  width: 50px; /* 棒の長さ */
	transition: .7s;
}

/* ボタンを押しているとき */
.s-witch .menu2.active {

}

/* ボタンを押しているとき　ビフォア要素 */
.s-witch .menu2.active:before {
	font-family: 'Noto Sans JP', sans-serif;
	content: "LINE\a0UP\3092\975E\8868\793A\306B\3059\308B";/*LINE UPを非表示にする*/
}

/* ボタンを押しているとき　アフター要素 */
.s-witch .menu2.active:after {

}

.child01 {
 }

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

}
	
.menu2 span {

}
	
.s-witch .menu2:after {

}
	
}


