* {
	box-sizing: border-box;
	line-height: 1.5;
}

html {
	height: 100%;
	font-size: 62.5%;
}

html > body {
	background-color: #e1e4e8;
}

body, #root {
	margin: 0;
	padding: 0;
	height: 100%;
	min-width: 1024px;
	background-color: #e1e4e8;
	color: #333333;
	font-size: 1.6rem;
}


header.MuiAppBar-root {
  display: flex;
  flex-grow: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 70px;
	height: 70px;
	background: rgb(0,70,139);
	background: -moz-linear-gradient(left,  rgba(0,70,139,1) 0%, rgba(67,120,182,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,70,139,1) 0%,rgba(67,120,182,1) 100%);
	background: linear-gradient(to right,  rgba(0,70,139,1) 0%,rgba(67,120,182,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00468b', endColorstr='#4378b6',GradientType=1 );
	color: #ffffff;
}

.MuiToolbar-root {
  width: 100%;
  padding : 0px;
  min-height: 70px;
}

header * {
	line-height: 1;
}

#siteTitle {
	padding: 16px 40px 0;
	font-size: 3.2rem;
	font-weight: bold;
	/*font-family: Georgia, 'Times New Roman', serif;*/
}

#siteTitle a:hover,  #siteTitle a:visited {
	color :  #ffffff;
	text-decoration: none;
}

/* #loginUser {
	position: relative;
	padding: 4px 32px 0 10px;
	font-size: 1.4rem;
	white-space: nowrap;
	color :  #ffffff;
}

#personIcon {
	font-weight: bold;
	font-size: 5rem;
} */

#navBar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 70px;
	background: rgb(0,98,197);
	background: -moz-linear-gradient(left,  rgba(0,98,197,1) 0%, rgba(94,167,219,1) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,98,197,1) 0%,rgba(94,167,219,1) 100%);
	background: linear-gradient(to right,  rgba(0,98,197,1) 0%,rgba(94,167,219,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0062c5', endColorstr='#5ea7db',GradientType=1 );
	color: #ffffff;
}

#navBar > div:first-child,
#navBar > ol:first-child {
	margin: 0 0 0 40px;
}

#navBar > div:last-child,
#navBar > ol:last-child {
	margin: 0 40px 0 0;
}

#navBar li {
	display: inline-block;
	margin: 0 40px 0 0;
}

#navBar li a {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.6rem;
	padding-right: 40px;
}

#navBar li p {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.6rem;
	margin: 0 auto;
	padding-right: 40px;
}

#navBar li a:hover {
	color: #accb39;
	text-decoration: none;
}

/* ===== ナビバー：右 ===== */
.navBarRight {
	margin-left: 40px;
	padding: 0 8px;
	height: 45px;
	border-radius: 22px;
	background-color: #003f71;
	color: #ffffff;
	font-size: 1.6rem;
	min-width: 18rem;
}

.navBarRight:hover {
	margin-left: 40px;
	padding: 0 8px;
	height: 45px;
	border-radius: 22px;
	background-color: #003f71;
	color: #ffffff;
	font-size: 1.6rem;
	background-color: #000e1a;
	min-width: 18rem;
}

.navBarRight:focus {
	outline: none !important;
}

#main {
	margin: 40px;
	margin-top: 140px;
	border-radius: 16px;
	background-color: #ffffff;
	box-shadow: 4px 4px 8px rgba(0,0,0,.15);
}

#mainCon {
	padding: 40px;
}