h3 {
	font-size: 28px;
	letter-spacing: 0px;
}

header,p,#n_move a {
	color: #000000;
}

header span {
	font-size: 15px;
}

#n_contents {
	width: 90%;
	max-width: 800px;
	
	position: relative;
	
	font-size: 18px;
	
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 200px;
}

#n_contents header {
	margin-bottom: 30px;
}

#n_contents img {
	width: 100%;
}

#n_p {
	margin-bottom: 50px;
}
#n_p a {
	color: #000000;
	
	border-bottom: 1px #000000 solid;
}

#n_move {
	position: relative;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	border-top: 1px #D3D3D3 solid;
	border-bottom: 1px #D3D3D3 solid;
}

#hover_move_left {
	position: absolute;
	
	width: 50%;
	height: 100%;
	
	left: 0;
}
#hover_move_right {
	position: absolute;
	
	width: 50%;
	height: 100%;
	
	right: 0;
}

#move_left::before{
  content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 2px #D3D3D3;
  border-right: solid 2px #D3D3D3;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
	
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;

	left: 20px;
	
}
#move_right::after{
  content: '';
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 2px #D3D3D3;
  border-right: solid 2px #D3D3D3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
	
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	
	right: 20px;
}

#n_move a {
	position: relative;
	
	width: 50%;
	
	padding: 20px 50px;
	
	-webkit-transition : all 0.3s;
	-o-transition : all 0.3s;
	transition : all 0.3s;
}

#n_move a:hover {
	padding: 20px 40px;
}


#move_left {
	text-align: left;
}

#move_right {
	text-align: right;
}

#to_news_btn {
	display: block;
	
	width: 200px;
	
	text-align: center;
	
	font-size: 15px;
	letter-spacing: 5px;
	
	background-color: #000000;
	
	padding: 10px 0px;
	
	margin: 0 auto;
	margin-top: 50px;
}
@media screen and (max-width: 900px){
	#n_move {
		flex-wrap: wrap;
	}
	#n_move a {
		width: 100%;
	}
	#move_right {
		border-top: 1px #D3D3D3 solid;
	}
}