@charset "UTF-8";

/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# PC・スマホ 共通設定 #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */

/* L1 ######################################## サイト更新履歴 ######################################## */

#history > h2::after {
	content: "サイト更新履歴";
}

/* L2 **************************************** 読み込み中 **************************************** */

#history p.loading {
	margin: 0 5px;
	color: #999999;
	font-size: 1.3rem;
	text-align: center;
}

/* L2 **************************************** もっと見る **************************************** */

#history p.more {
	margin: 1em 0;
	text-align: center;
}

#history p.more a {
	display: inline-block;
	padding: 0.4em 1.5em;
	color: #336699;
	font-size: 1.4rem;
	text-decoration: none;
	border: 1px solid #cccccc;
	background: #ffffff;
	
	border-radius: 2.0em;
	background: #ffffff -webkit-gradient(linear, left top, left bottom, color-stop(0.00, rgba(0, 0, 0, 0.025)), color-stop(1.00, rgba(0, 0, 0, 0.1)));
	background: #ffffff -webkit-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff -moz-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff -o-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff -ms-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
}

#history p.more a::before {
	content: "\f138";
	margin-right: 0.4em;
	font-family: "FontAwesome";
}

/* L2 **************************************** 日付 **************************************** */

#history p.date {
	position: relative;
	margin: 1em 25%;
	text-align: center;
}
#history h2 + p.date {
	margin-top: 0;
}

#history p.date time {
	display: inline-block;
	position: relative;
	z-index: 2;
	padding: 0 1em;
	color: #777777;
	font-family: "Ubuntu Condensed", sans-serif;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
	white-space: nowrap;
	background-color: #ffffff;
	
	/*
	padding: 0.4em 5em;
	color: #777777;
	font-family: "Ubuntu Condensed", sans-serif;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
	border: 1px solid #cccccc;
	background: #ffffff;
	
	border-radius: 2.0em;
	background: #ffffff -webkit-gradient(linear, left top, left bottom, color-stop(0.00, rgba(0, 0, 0, 0.025)), color-stop(1.00, rgba(0, 0, 0, 0.1)));
	background: #ffffff -webkit-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff -moz-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff -o-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff -ms-linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	background: #ffffff linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.1));
	*/
}
#history p.date time::before,
#history p.date time::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 200px;
	height: 1px;
}
#history p.date time::before {
	right: 100%;
	
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
#history p.date time::after {
	left: 100%;
	
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

/* L2 **************************************** リスト部分 **************************************** */

#history ul {
	list-style-type: none;
	border-top: 1px dotted #999999;
}

#history ul.fixed-info {
	color: #333333;
}

#history ul + ul {
	border-top: none;
}

#history ul li {

	-webkit-transition: background-color 0.2s linear;
	-moz-transition: background-color 0.2s linear;
	-ms-transition: background-color 0.2s linear;
	-o-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
}
#history ul li:hover {
	background: rgba(0, 0, 0, 0.05);
}

#history ul.fixed-info li.no-link,
#history ul li.error {
	display: table;
	width: 100%;
	padding: 4px;
	border-bottom: 1px dotted #999999;
	
	box-sizing: border-box;
}

#history ul li a {
	display: table;
	width: 100%;
	color: #336699 !important;
	text-decoration: none;
	border-collapse: separate;
	border-spacing: 2px;
	border-bottom: 1px dotted #999999;
}

#history ul li span.text span.A {
	display: table-cell;
	width: 16em;
	padding: 0.2em 1em;
	color: #ffffff;
	text-align: center;
	/* white-space: nowrap; */
	word-break: auto-phrase;
	line-break: strict;
	overflow-wrap: break-word;
	vertical-align: middle;
	
	border-radius: 5px;
	box-sizing: border-box;
}

#history ul li span.text span.B {
	display: table-cell;
	padding: 0.2em 1em;
}

#history ul.fixed-info li.unfortunate a {
	color: #666666 !important;
}

#history ul.fixed-info li.unfortunate span.A {
	background: #777777 !important;
}

#history ul li.dark span.text span.A.others {
	background: #777777;
}


/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# PC・スマホ 共通設定 ここまで #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */


