@charset "utf-8";
/* CSS Document */

body {
	padding-top: 50px; 
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 14px;
}

header .navbar-brand {
	font-weight: bold;
}

/*スマホのハンバーガーメニュー*/
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,1);
    border-color: rgba(255,255,255,1);
}






/*ヘッダー*/
header nav p {
	margin-bottom: 0;
}

/*ログインユーザ名*/
header ul .nav-item.user_name {
	color: #fff;
	font-size: 14px;
	display: block;
	padding: 0.5rem 1rem 0.5rem 0;
}


/*画面タイトル*/
h1 {
	font-size: 25px;
	margin-top: 50px;
	margin-bottom: 30px;
	text-align: center;
}

/*特定商取引法表示、プライバシーポリシー、パスワード変更*/
aside {
	margin-top: 100px;
	text-align: center;
}

aside nav li {
	margin-bottom: 10px;
}

aside nav a {
	color: #333;
}

/*footer*/
footer {
	color: #fff;
	margin-top: 30px;
	padding: 10px;
	text-align: center;
}


/*ページトップへ戻るボタン*/
#pageTopBtn {
	bottom: 30px;
	right: 20px;
	position: fixed;
	z-index:9999;
}

#pageTopBtn a {
	background-color: #5A5A5A;
	border: 1px solid #5A5A5A;
	border-radius: 50px;
	color: #fff;
	display: block;
	font-size: 30px;
	line-height: 50px;
	opacity: 0.8;
	text-decoration: none;
	text-align: center;
	width: 50px;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

#pageTopBtn a:hover {
	background-color: #5A5A5A;
	color: #fff;
	opacity: 1;
}



/*--------------------------------------------*/
/*スマホ横/タブレット横/PC/(768px～)*/
/*--------------------------------------------*/

@media (min-width: 768px) {
	/*ヘッダー*/
	header .user_name {
		font-size: 12px;
		padding-right: 5px;
	}

	h1 {
		font-size: 30px;
	}
	
	/*特定商取引法表示、プライバシーポリシー、パスワード変更*/
	aside ul li {
		display: inline-block;
		width: 30%;
		paddng: 20px;
	}
	
	footer {
		padding: 15px;
	}
	/*ページトップへ戻るボタン*/
	#pageTopBtn {
		bottom: 50px;
	}


}


/*--------------------------------------------*/
/*タブレット横/PC/(992px～)*/
/*--------------------------------------------*/


@media (min-width: 992px) {
	
	/*特定商取引法表示、プライバシーポリシー、パスワード変更*/
	aside ul li {
		width: 20%;
		paddng: 20px;
	}


	
}
	