@charset "UTF-8";



/* ----------共通---------- */

/* 全体 */

body {
	font-family: "dnp-shuei-mgothic-std";
	margin: 0;
	font-size: 14px;
	line-height: 1.8em;
}



/* -----リスト----- */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}



/* -----リンク----- */

a {
	transition: 0.3s;
	text-decoration: none;
}

a:hover {
	transition: 0.3s;
	opacity: 0.7;
}



/* -----テキスト----- */

p {
	margin: 0;
}



/* -----テキストエリア----- */

textarea {
    resize: none;
}



/* -----トップへ戻るボタン----- */

.page_top {
	clear: both;
	margin-top: 10px;
	float: right;
	color: #6f6f69;
}

/* アニメーション */

.page_top {
	display: inline-block;
	transition: all 0.3s;
	height: 40px;
}

.page_top:hover {
	transform: translate(0,2px);
}



/* ウィンドウ幅が0?479pxの場合に適用するCSS */
@media screen and ( max-width:479px )
{



/* -----共通----- */

body {
	width: 100%;
	font-size: 14px;
	line-height: 1.3em;
}



/* -----トップへ戻るボタン----- */

.page_top {
	margin-top: 5vw;
}



}