@charset "utf-8";
#page_top{
	width: 40px;
	height: 40px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: none;
	border-radius: 50px;
	background: #555;
	opacity: 0.8;
	transition: .5s;
}
#page_top:hover{
	opacity: 1;
}
#page_top a{
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	text-align: center;
	z-index: 2000;
}
#page_top a:hover{
	color: #333;
	opacity: 1;
}
#page_top i{
	padding-top: 10px;
}
.nav{
	display: none;
}
@media screen and (max-width: 768px){
	.btn_menu{
		display: block;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 10000;
		width: 60px;
		height: 60px;
		background: #111;
	}
	.btn_menu span{
		display: block;
		position: absolute;
		left: 20%;
		width: 60%;
		height: 2px;
		background: #fff;
		transition: all 0.1s linear;
	}
	.btn_menu span:nth-of-type(1){
		top: 20px;
		transform: rotate(0);
	}
	.btn_menu span:nth-of-type(2){
		top: 32px;
		transform: scale(1);
	}
	.btn_menu span:nth-of-type(3){
		bottom: 14px;
		transform: rotate(0);
	}
	.btn_menu.active span:nth-of-type(1){
		top: 26px;
		transform: rotate(-45deg);
	}
	.btn_menu.active span:nth-of-type(2){
		transform: scale(0);
	}
	.btn_menu.active span:nth-of-type(3){
		top: 26px;
		transform: rotate(45deg);
	}
	.nav{
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 5000;
		width: 100%;
		height: 100%;
		background: #111;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		transition: right .6s;
		overflow-y: auto;
	}
	.nav.active{
		right: 0;
	}
	.gnav{
		margin-top: 80px;
		overflow: auto;
	}
	.gnav li a{
		width: 100%;
		padding: 14px 10px;
		display: block;
		text-align: center;
		vertical-align: middle;
		color: #fff;
		text-decoration: none;
		font-size: 1.6rem;
		overflow: hidden;
		transition:all .2s ease-out;
	}
	.gnav li a:hover {
		color: #ff0000;
	}
	.gnav li a:active {
		color: #ff0000;
	}
	.btn_menu{
		cursor: pointer;
	}
	.logo2{
		margin: 40px 0 10px 0;
		text-align: center;
	}
	.circle_name2{
		margin-bottom: 20px;
		text-align: center;
		font-size: 18px;
	}
}
@media screen and (max-width:480px){
}