@charset utf-8;
/* CSS Document */
/*======================慣性スクロール用CSS======================*/
/* 便宜上ここに仮置き */
@media (min-width: 768px) {
	body {
		-webkit-overflow-scrolling:touch;
		overflow-scrolling: touch;
		overflow: scroll;
	}
}
/*======================サイドメニュー用CSS======================*/
@media (min-width: 768px) {
	.top_move,
	.top_move2,
	.top_move3 {
		right: auto !important;
		right: 0 !important;
	}
	
	nav {
		transition-duration: .5s;
		transition-property: width;
		position: fixed;
		top: 0;
		right: 0;
		width: 0;
		height: 100vh;
		background-color: #fff;
		opacity: 1;
		display: block;
		z-index: 1000;
	}
	
	nav.init {
		width: 40px;
	}
	
	nav.open {
		width: 320px;
		background: no-repeat center 40px url(../img/kenshokai_logo_tate_black_s.png) #fff;
	}
	
	nav ul {
		padding: 0;
	}
	
	nav li {
		display: none;
		list-style-type: none;
	}
	
	nav li:nth-child(2) {
		margin-top: 300px;
	}
	
	nav li:nth-child(2),
	nav li:nth-child(3),
	nav li:nth-child(4),
	nav li:nth-child(5),
	nav li:nth-child(6),
	nav li:nth-child(7),
	nav li:nth-child(8),
	nav li:nth-child(9) {
		height: 40px;
		line-height: 40px;
		padding: 0 4px 0 0;
		border-bottom: solid 1px white;
	}
	
	
	nav li.open {
		display: block;
	}
	
	nav li a:link,
	nav li a:hover,
	nav li a:visited,
	nav li a:active {
		text-decoration: none;
		color: black;
		font-size: 16px;
		padding: 2px 0 0 38px;
	}
	
	nav li:nth-child(2) a,
	nav li:nth-child(3) a,
	nav li:nth-child(4) a,
	nav li:nth-child(5) a,
	nav li:nth-child(6) a,
	nav li:nth-child(7) a,
	nav li:nth-child(8) a,
	nav li:nth-child(9) a {
		display: block;
		background: no-repeat left center url(../img/left_arrow_black_s.png) transparent;
	}
	
	.menu_button {
		display: block;
		width: 40px;
		height: 40px;
		margin: -40px 0 0 0;
		position: absolute;
		top: 50%;
		right: 0;
		cursor: pointer;
		opacity: 1;
	}
	.button_label {
		font-size: 8px;
		text-align: center;
		padding: 0;
		margin: -8px -4px 0 0;
		display: none;
		color: #000;
	}
	
	
	.button_icon {
		width: 100%;
		height: 100%;
		position: relative;
	}
	.button_icon > div {
		width: 16px;
		height: 2px;
		margin: -1px 0 0 -10px;
		background-color: #000;
		transition: 0.25s;
		position: absolute;
		top: 50%;
		left: 50%;
		overflow: hidden;
	}
	
	.button_icon > div:nth-child(1),
	.button_icon > div:nth-child(3) {
		left: 50%;
	}
	.button_icon > div:nth-child(1) {
		margin-top: -8px;
	}
	.button_icon > div:nth-child(3) {
		margin-top: 6px;
	}
	.close .button_icon > div:nth-child(2) {
		background-color: transparent;
	}
	.close .button_icon > div:nth-child(1),
	.close .button_icon > div:nth-child(3) {
		margin-top: -1px;
/*		background-color: #373737;*/
	}
	.close .button_icon > div:nth-child(1) {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	.close .button_icon > div:nth-child(3) {
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}
	.close .button_icon > div:nth-child(1) > span,
	.close .button_icon > div:nth-child(3) > span {
		display: block;
		width: 0;
		height: 100%;
		background-color: #000;
		position: absolute;
		top: 0;
		left: 0;
	}

}