
/* 黒背景 */
.demo {

}
  .demo a {
    display: block; }
  .demo .child {
    display: none;

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

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

.menu2 {
	display: block;
	cursor: pointer;
	width: 45px;
	height: 45px;
	text-decoration: none;
	position: relative;
	text-align: center;
	border : solid 1px #000 ;
	border-radius: 50%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
}

.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 Serif JP', serif;
	content: "More";
	font-size: 13px;
	line-height: 1.5;
	width: 100%;
	display: inline-block;/*忘れずに！*/
	position:absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	-webkit- translateX(-50%);
}

/* アフター要素 */
.s-witch .menu2:after {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 12px;/*画像の幅*/
  height: 6px;/*画像の高さ*/
  background-image: url(../../examples/img/kamioka/arrow02.png);
  background-size: contain;
  vertical-align: middle;
	position:absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	-webkit- translateX(-50%);
}

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

}

/* ボタンを押しているとき　ビフォア要素 */
.s-witch .menu2.active:before {
	font-family: "Font Awesome 5 Free";
	content: "\f00d";
	font-weight: bold;
	font-size: 20px;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

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

.child01 {
 }

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

}
	
.menu2 span {

}
	
.s-witch .menu2:after {

}
	
}


