/* タイトルテーブル */
table.title {
	width:100%;
	background: #e8601c;
	margin:0px;
	border-collapse:collapse;
	border-bottom:none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
table.title td {
	padding-left:12px;
	padding-top:8px;
	padding-bottom:8px;
	font-family:"Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}
/* サイト名 */
table.title td.siteName {
	font-size:25px;
	font-weight:bold;
	color:#ffffff;
}
table.title td.siteName a{
	display:inline-flex;
	align-items:center;
	gap:10px;
}
/* サイト名 リンク */
table.title td.siteName a:link {
	color:#ffffff;
	text-decoration:none;
}
table.title td.siteName a:visited {
	color:#ffffff;
	text-decoration:none;
}
table.title td.siteName a:hover {
	color:#ffd9c2;
	opacity:1;
	text-decoration:none;
}
table.title td.userAndLogin {
	text-align:right;
	white-space:nowrap;
	padding-right:12px;
}
/* ユーザー名 */
div.userName {
	text-align:right;
	color:#fff3ec;
	display:inline-block;
	font-size:13px;
	font-weight:700;
	margin-right:8px;
	padding:5px 10px;
	border:1px solid rgba(255,255,255,0.35);
	border-radius:999px;
	background:rgba(255,255,255,0.15);
}
/* ログアウト欄 */
div.logout {
	text-align:right;
	display:inline-block;
	font-size:13px;
}
div.logout a:link,
div.logout a:visited {
	color:#ffd9c2;
	text-decoration:none;
	font-weight:700;
	padding:4px 6px;
	border-radius:8px;
}
div.logout a:hover {
	background:rgba(255,255,255,0.2);
	color:#ffffff;
	text-decoration:none;
}

.headerIcon {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	vertical-align:middle;
}

.headerIcon img {
	display:block;
	width:48px;
	height:48px;
	border-radius:50%;
	object-fit:cover;
	box-shadow:0 1px 3px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
	table.title td {
		padding-left:8px;
		padding-right:8px;
	}
	table.title td.siteName {
		font-size:20px;
	}
	span.timelineLogo {
		font-size:38px;
	}
	div.userName {
		display:block;
		margin-right:0;
		margin-bottom:4px;
	}
	.headerIcon {
		margin-right:0;
	}
	.headerIcon img {
		width:34px;
		height:34px;
	}
}

/* エラーメッセージ */
span.fedError {
	color:#ff6b3d;
}
/* メッセージ */
div.lblMessage {
	width:95%;
	margin:5px;
	padding-top:5px;
	padding-bottom:5px;
	padding-left:10px;
	padding-right:10px;
	background-color:#fff3ec;
	border:1px solid #e8d0c0;
}


/* メニュー ----------------------------------------------------------------*/

table.systemMenu {
	border-collapse:collapse;
	width:100%;
	margin:0;
	padding:0;
	background: #f5f5f5;
	border-top: 2px solid #ffffff;
	border-bottom: 1px solid #b6bcc3;
}

table.systemMenu tr {
	height:40px;
}
table.systemMenu td {
	width:120px;
	text-align:center;
	border:0;
	padding:0;
}

table.systemMenu td.select {
	color:#ffffff;
	background: #555;
	font-size:10pt;
	font-weight:700;
}

table.systemMenu td.non_select {
	color:#555;
	background: transparent;
	font-size:10pt;
	font-weight:700;
	border-left: 1px solid #b6bcc3;
	transition: background 0.14s ease, color 0.14s ease;
}

table.systemMenu a:visited{
	color:inherit;
	text-decoration:none;
	display:block;
	padding:10px 12px;
}

table.systemMenu a:link{
	color:inherit;
	text-decoration:none;
	display:block;
	padding:10px 12px;
}

table.systemMenu a:hover{
	text-decoration:none;
}

table.systemMenu td.non_select:hover {
	background: #ebebeb;
	color:#333;
}

table.systemMenu td:first-child {
	border-left:0;
}

table.systemMenu td:first-child,
table.systemMenu td:first-child a {
	border-top-left-radius:0;
	border-bottom-left-radius:0;
}

table.systemMenu td:last-child,
table.systemMenu td:last-child a {
	border-top-right-radius:0;
	border-bottom-right-radius:0;
}

/* Timeline logo (high-DPI text-based) */
span.timelineLogo {
	display:inline-block;
	font-family:"Arial Black", Arial, sans-serif;
	font-size:46px;
	font-weight:900;
	line-height:1;
	letter-spacing:-1px;
	color:#ffffff;
	white-space:nowrap;
}
span.timelineLogo .logoI {
	position:relative;
	display:inline-block;
}
span.timelineLogo .logoI::before {
	content:"";
	position:absolute;
	left:50%;
	top:0.067em;
	width:0.234em;
	height:0.234em;
	margin-left:-0.073em;
	border-radius:50%;
	background-color:#ffd9c2;
}
