@charset "UTF-8";
/*
基本配色角度 hsl(356, 100%, 44%) ※#DE0010

[Blue]
236

[BlueGreen]
206

[Orange]
26

[Yellow]
41

[LightYellow]
56

*/

a {
	color: hsl(206, 76%, 62%);
	text-decoration: none;
}
a .ruby {
	color: hsl(206, 76%, 62%);
}
a:hover {
	text-decoration: underline;
}

/*
.background-black {
	background: hsl(0, 0%, 15%) !important;
}
*/
.background-darkred {
	background: hsl(356, 100%, 44%) !important;
}
.background-lightblue {
	background: hsl(236, 50%, 62%) !important;
}
.background-gray {
	background: hsl(0, 0%, 62%) !important;
}
.background-lightgreen {
	background: hsl(116, 50%, 62%) !important;
}
.background-lightorange {
	background: hsl(41, 50%, 62%) !important;
}
.background-lightaqua {
	background: hsl(176, 50%, 62%) !important;
}
.background-red {
	background: hsl(356, 100%, 85%);
}
.background-transparent {
	background: transparent;
}

.black {
	color: hsl(0, 0%, 15%);
}

.block_form {
	width: 70.71%;
}
.block_form.margin-0-auto {
	margin: 0 auto;
}

.block_message {
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px;
	display: block;
	height: 340px;
	line-height: 340px;
	text-align: center;
	text-decoration: none;
}

.block_ruby {
	float: left;
	margin-right: 1%;
	width: 49%;
}

.blue {
	color: hsl(206, 76%, 62%);
}

body {
	background: #fff;
}

.btnButton {
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px;
	color: inherit;
	display: inline-block;
	padding: 2px 6px;
	text-decoration: none;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(hsl(0, 0%, 94%)));
	background: -moz-linear-gradient(top, #fff, hsl(0, 0%, 94%));
	background: -ms-linear-gradient(top, #fff, hsl(0, 0%, 94%));
}
.btnButton:hover {
	color: hsl(206, 76%, 62%);
}
.btnButton.padding-2px-12px {
	padding: 2px 12px;
}

.btnGrad {
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px;
	box-shadow: 2px 4px 8px 0px hsla(0, 0%, 91%, 0.38);
	color: hsl(0, 0%, 24%);
	cursor: pointer;
	display: inline-block;
	line-height: 100%;
	padding: 8px 16px;/* input[type="text"] の高さに大体一致するため */
	text-align: center;
	text-decoration: none;
	
	/*角を丸くする*/
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(hsl(0, 0%, 94%)));
	background: -moz-linear-gradient(top, #fff, hsl(0, 0%, 94%));
	background: -ms-linear-gradient(top, #fff, hsl(0, 0%, 94%));
}
.btnGrad:hover {
	border-color: hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 62%) hsl(0, 0%, 85%);
	box-shadow: 2px 4px 8px 0px hsla(0, 0%, 76%, 0.38);
	color: hsl(0, 0%, 15%);
}
.btnGrad.disabled {
	color: hsl(0, 0%, 85%);
	cursor: not-allowed;
}

.btnSubmit {
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px;
	box-shadow: 2px 4px 8px 0px hsla(0, 0%, 91%, 0.38);
	cursor: pointer;
	height: 60px;
	margin: 16px 0 0 0;
	width: 25%;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(hsl(0, 0%, 94%)));
	background: -moz-linear-gradient(top, #fff, hsl(0, 0%, 94%));
	background: -ms-linear-gradient(top, #fff, hsl(0, 0%, 94%));
}
.btnSubmit:hover {
	border-color: hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 62%) hsl(0, 0%, 85%);
	box-shadow: 2px 4px 8px 0px hsla(0, 0%, 76%, 0.38);
	color: hsl(0, 0%, 15%);
}
.btnSubmit.large {
	display: block;
	font-size: 115%;
	margin: 30px auto 0 auto;
	width: 35.36%;
	
	/* 角を丸くする */
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.btnSubmit.red {
	background: hsl(356, 100%, 44%);
	color: #fff !important;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(hsl(356, 100%, 50%)), to(hsl(356, 100%, 38%)));
	background: -moz-linear-gradient(top, hsl(356, 100%, 50%), hsl(356, 100%, 38%));
	background: -ms-linear-gradient(top, hsl(356, 100%, 50%), hsl(356, 100%, 38%));
}
.btnSubmit.reset {
	margin: 16px 0 0 2px;
}

#contents {
	display: none;
	padding: 3%;
	width: 87.5%;
}

.cursor-pointer {
	cursor: pointer;
}

.font-family-MSGOTHIC {
	font-family: 'ＭＳ ゴシック';
}
.font-weight-normal {
	font-weight: normal;
}

footer {
	background: hsl(0, 0%, 15%);
	color: #fff;
	font-size: 62%;
	text-align: left;
}

#footer_copyright {
	background: hsl(356, 100%, 50%);
	padding: 3px;
	text-align: center;
}
#footer_copyright a {
	color: #fff;
}

#footer_help {
	background-color: hsl(0, 0%, 97%);
	border-color: hsl(0, 0%, 100%) hsl(0, 0%, 94%) hsl(0, 0%, 94%) hsl(0, 0%, 100%);
	border-style: solid;
	border-width: 1px;
	font-size: 94%;
	margin-top: 120px;
	padding: 22px;
	
	/*角を丸くする*/
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(hsl(0, 0%, 100%)), to(hsl(0, 0%, 97%)));
	background: -moz-linear-gradient(top, hsl(0, 0%, 100%), hsl(0, 0%, 97%));
	background: -ms-linear-gradient(top, hsl(0, 0%, 100%), hsl(0, 0%, 97%));
}
#footer_help img {
	margin-right: 6px;
	position: relative;
	top: -1px;
	vertical-align: middle;
}
#footer_help p {
	padding: 6px 12px;
}

.gray {
	color: hsl(0, 0%, 62%);
}

.gt {
	font-family: 'MS UI GOTHIC';
}

h3 {
	background: hsl(41, 38%, 91%);
	border-color: hsl(0, 0%, 85%) hsl(356, 100%, 50%);
	border-style: double;
	border-width: 0 0 1px 3px;
	font-weight: bold;
	/*height: 42px;
	line-height: 42px;*/
	margin-bottom: 1px;
	padding: 2px 16px;
}
h3 .memo {
	font-weight: normal;
}

h4 {
	background: hsl(41, 38%, 100%);
	border-color: hsl(0, 0%, 85%) hsl(356, 100%, 50%);
	border-style: double;
	border-width: 0 0 1px 3px;
	font-weight: bold;
	height: 42px;
	line-height: 42px;
	margin-bottom: 1px;
	padding-left: 16px;
}

h6.help {
	background-color: hsl(0, 0%, 100%);
	border-color: hsl(0, 0%, 85%);
	border-style: solid;
	border-width: 1px 0;
	color: hsl(0, 0%, 24%);
	font-size: 115%;
	font-weight: bold;
	line-height: 176%;
	margin: 16px 0 12px 0;
	padding: 8px 16px;
}

header {
}

#header_logo {
	border-color: hsl(356, 100%, 50%);
	border-style: solid;
	border-width: 0 0 1px 0;
	font-size: 115%;
	padding: 12px;
}
#header_logo img {
	height: 30px;
	margin-right: 16px;
}
#header_logo strong {
	color: hsl(0, 0%, 15%);
	position: relative;
	top: 1px;
}
html {
	background: hsl(0, 0%, 15%);
}

img {
	vertical-align: middle;
}
input.code {
	ime-mode: disabled;
	text-align: center;
}
input.code:focus {
	text-align: left;
}
input.number {
	ime-mode: disabled;
	text-align: right;
}
input[type='button'].disabled, input[type='submit'].disabled {
	color: hsl(0, 0%, 62%);
	cursor: not-allowed;
}
input[type='text']::placeholder {
	color: hsl(0, 0%, 76%);
}
.larger {
	font-size: 138%;
}
.lightblack {
	color: hsl(0, 0%, 38%);
}
.lightgray {
	color: hsl(0, 0%, 85%) !important;
}
.link {
	color: hsl(206, 76%, 62%);
	cursor: pointer;
}
.link:hover {
	text-decoration: underline;
}
main {display: flex;}
.margin-top-3px {margin-top: 3px;}
.margin-top-16px {margin-top: 16px;}
.margin-top-22px {margin-top: 22px;}
.margin-top-30px {margin-top: 30px;}
.margin12 {
	display: block;
	margin-bottom: 12px;
}
.margin16 {
	display: block;
	margin-bottom: 16px;
}
.margin3 {
	display: block;
	margin-bottom: 3px;
}
.margin4 {
	display: block;
	margin-bottom: 4px;
}
.margin6 {
	display: block;
	margin-bottom: 6px;
}
.margin8 {
	display: block;
	margin-bottom: 8px;
}

.mark {
	background: hsl(356, 100%, 50%);
	border: #fff;
	color: #fff;
	display: inline-block;
	font-size: 62%;
	font-weight: normal;
	height: 16px;
	line-height: 16px;
	padding: 0 6px;
	
	/* 角を丸くする */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.mark.background-transparent {
	background: transparent;
	color: 
}
.mark.black {
	border: solid 1px hsl(0, 0%, 38%);
	color: hsl(0, 0%, 38%);
}
.mark.darkred {
	border: solid 1px hsl(356, 100%, 44%);
	color: hsl(356, 100%, 44%);
}

.mark.font-size-85 {
	font-size: 85%;
	height: 18px;
	line-height: 18px;
	padding: 1px 6px;
}

.memo {
	color: hsl(0, 0%, 62%);
	font-size: 85%;
}

#progressbar {
	border-color: hsl(0, 0%, 85%) hsl(0, 0%, 76%) hsl(0, 0%, 76%) hsl(0, 0%, 85%);
	border-style: double;
	border-width: 3px;
	display: flex;
	margin-top: 170px;
	width: 100%;
}
#progressbar .progressbar_bar {
	background: hsl(56, 100%, 44%);
	height: 100%;
	width: 0%;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(hsl(56, 100%, 50%)), to(hsl(56, 100%, 44%)));
	background: -moz-linear-gradient(top, hsl(56, 100%, 50%), hsl(56, 100%, 44%));
	background: -ms-linear-gradient(top, hsl(56, 100%, 50%), hsl(56, 100%, 44%));
}
#progressbar .progressbar_bar_container {
	height: 42px;
	text-align: left;
	width: 91.16%;
}
#progressbar .progressbar_value {
	background: hsl(56, 100%, 44%);
	color: #fff;
	height: 42px;
	line-height: 42px;
	text-align: center;
	width: 8.84%;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(hsl(56, 100%, 50%)), to(hsl(56, 100%, 44%)));
	background: -moz-linear-gradient(top, hsl(56, 100%, 50%), hsl(56, 100%, 44%));
	background: -ms-linear-gradient(top, hsl(56, 100%, 50%), hsl(56, 100%, 44%));
}
#progressbar_message {
	margin-top: 30px;
	max-width: 678px;
	text-align: left;
	width: 70.71%;
}

.red {
	color: hsl(356, 100%, 50%) !important;
}

.ruby {
	color: hsl(0, 0%, 62%);
	font-size: 85%;
	margin-bottom: 3px;
}

#sidemenu {
	background: hsl(41, 15%, 85%);
	min-height: 640px;
	padding-top: 2px;
	width: 12.5%;
}
#sidemenu hr {
	border-color: #fff;/*hsl(0, 0%, 62%);*//*hsl(356, 100%, 62%)*/
	border-style: dotted;
	border-width: 0 0 1px 0;
	margin: 12px 0;
	width: 94%;
}
#sidemenu ul li a {
	background: hsl(41, 38%, 91%);
	border-color: hsl(41, 15%, 62%);
	border-style: solid;
	border-width: 0 0 1px 0;
	box-shadow: 0 3px 6px hsl(0, 0%, 85%);
	color: hsl(0, 0%, 24%);
	display: block;
	font-size: 76%;
	height: 42px;
	line-height: 42px;
	margin-bottom: 6px;
	overflow: hidden;
	padding-left: 12px;
	text-decoration: none;
}
#sidemenu ul li a:hover {
	background: hsl(41, 38%, 85%);
	box-shadow: 0 3px 6px 0px hsl(0, 0%, 76%);
	color: hsl(0, 0%, 15%);
	padding-left: 22px;
	transition: 0.3s;
}
#sidemenu ul li a.selected {
	background: hsl(356, 100%, 50%);
	color: #fff;
	transition: 0.3s;
	
	/*グラデーション*/
	background: -webkit-gradient(linear, left top, left bottom, from(hsl(356, 100%, 50%)), to(hsl(356, 100%, 38%)));
	background: -moz-linear-gradient(top, hsl(356, 100%, 50%), hsl(356, 100%, 38%));
	background: -ms-linear-gradient(top, hsl(356, 100%, 50%), hsl(356, 100%, 38%));
}
#sidemenu.test {
	background: hsl(356, 50%, 50%)
}

.smaller {
	font-size: 85% !important;
}
.sort {
	background: hsl(41, 15%, 97%);
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 85%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px;
	color: hsl(0, 0%, 24%) !important;
	display: inline-block;
	padding: 3px 6px;
	/*text-decoration: underline;*/
}
.sort:hover {
	color: hsl(206, 76%, 62%) !important;
	/*text-decoration: none;*/
}

table.form {
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 85%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px 0 0 1px;
}
table.form td {
	border-color: hsl(0, 0%, 85%);
	border-style: solid;
	border-width: 0 1px 1px 0;
	padding: 12px;
}
table.form th {
	background: hsl(41, 15%, 94%);
	/*
	background: hsl(0, 0%, 76%);
	color: #fff;
	*/
	border-color: hsl(0, 0%, 85%);
	border-style: solid;
	border-width: 0 1px 1px 0;
	padding: 12px;
	text-align: left;
}

table.view {
	border-color: hsl(0, 0%, 91%) hsl(0, 0%, 85%) hsl(0, 0%, 85%) hsl(0, 0%, 91%);
	border-style: solid;
	border-width: 1px 0 0 0;
}
table.view tr.even td {
	background-color: hsl(0, 0%, 97%);
}
table.view tr.background-lightgray td {
	background: hsl(0, 0%, 91%);
	color: hsl(0, 0%, 62%) !important;
}
table.view tr.background-lightgray td .ruby {
	color: hsl(0, 0%, 62%);
}
table.view tr.text-decoration-line-through td {
	text-decoration: line-through;
}
table.view tr.text-decoration-line-through td.text-decoration-none {
	text-decoration: none;
}
table.view td {
	background-color: #fff;
	border-color: hsl(0, 0%, 85%);
	border-style: solid;
	border-width: 0 0 1px 0;
	padding: 6px 8px;
}
table.view th {
	/*background-color: hsl(0, 0%, 94%);*/
	background: hsl(41, 15%, 94%);
	border-color: hsl(0, 0%, 85%);
	border-style: solid;
	border-width: 0 0 1px 0;
	padding: 6px 8px;
}
table.view th a {
	color: inherit;
	text-decoration: underline;
}
table.view th a:hover {
	text-decoration: none;
}

.text-align-right {
	text-align: right;
}
.text-decoration-none {
	text-decoration: none;
}
.text-decoration-none:hover {
	color: hsl(206, 76%, 62%);
	text-decoration: underline;
}
.text-decoration-underline {
	text-decoration: underline;
}
.text-decoration-underline:hover {
	text-decoration: none;
}
tr.border-bottom-double th, tr.border-bottom-double td {
	border-bottom: double 3px hsl(0, 0%, 62%);
}
ul.decimal {
	list-style-type: decimal;
	line-height: 176%;
	padding-left: 22px;
}
.width-42px {width: 42px;}
.width-60px {width: 60px;}
.width-84px {width: 84px;}
.width-100 {width: 100%;}
.width-102px {width: 102px;}/*84px と 120px の中間*/
.width-120px {width: 120px;}
.width-170px {width: 170px;}
.width-220px {width: 220px;}
.width-340px {width: 340px;}
.width-search {width: calc(100% - 60px);}
.width-search-narrow {width: calc(100% - 120px);}
.width1 {width: 70.71% !important;}
.width2 {width: 50.00% !important;}
.width3 {width: 35.36% !important;}
.width4 {width: 25.00% !important;}
.width5 {width: 17.68% !important;}
.width6 {width: 12.50% !important;}
.width7 {width: 8.84% !important;}
.width8 {width: 6.25% !important;}
.width9 {width: 4.42% !important;}
.width10 {width: 3.13% !important;}
.width11 {width: 2.21% !important;}
.width12 {width: 1.56% !important;}
.width13 {width: 1.10% !important;}

.x-smaller {
	font-size: 62%;
}