@charset "UTF-8";

/*----------------------------------
btn
----------------------------------*/
.btn {
	border: none;
	text-align: center;
	padding: 0.5rem 1.5rem;
	border-radius: 0.5rem;
	user-select: none;
	color: #4d4d4d;
	text-decoration:none;
	background: #DDDDDD;
	display:inline-block;
	font-weight: normal;
}
.btn-primary {
	color:#FFFFFF;
	background: #0073AC;
}
.btn-success {
	color:#FFFFFF;
	background: #5cb85c;
}
.btn-info {
	color:#FFFFFF;
	background: #5bc0de;
}
.btn-warning {
	color:#FFFFFF;
	background: #f0ad4e;
}
.btn-danger {
	color:#FFFFFF;
	background: #d9534f;
}
.btn:hover,
.btn:focus,
.btn:active{
 	background: #CCCCCC;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background: #286090;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
	background: #449d44;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
	background: #31b0d5;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
	background: #ec971f;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
	background: #c9302c;
}
.btn-primary:disabled {
	background: #337ab7;
	filter:alpha(opacity=40);
    -moz-opacity: 0.4;
    opacity: 0.4;
}
.btn:disabled {
	filter:alpha(opacity=40);
    -moz-opacity: 0.4;
    opacity: 0.4;
}


.btn-box01 {
	text-align: center;
	padding-top: 2rem;
}

.table01 .file-del-btn .btn {
  margin:10px 0;
}
.table01 th {
  text-align: center;
}
.table01 td img {
  max-width:100%;
}
.table01 td .file-box img {
  width:200px;
}
.table01 .nowrap {
	white-space: nowrap;
}
.sort-btn {
	padding:0 2px;
	margin:0 10px;
	border:#CCCCCC 1px solid;
}
.sort-btn.current {
	color:#FF0000;
}
/*----------------------------------
InputForm
----------------------------------*/
textarea, input[type="text"], input[type="number"], input[type="time"], input[type="date"],
input[type="password"]{
	background-color: #FFF;
	border: 1px solid #CCC;
	border-radius: 0.5rem;
	padding:5px;
	margin:1px 0;
	width: 100%;
}
input[type="text"].smin{
	width:10%;
}
input[type="text"].min{
	width:15%;
}
input[type="text"].mmin{
	width:6%;
}
input[type="text"].smid,
input[type="password"].smid{
	width:25%;
}
input[type="text"].mid,
input[type="password"].mid{
	width:30%;
}
input[type="text"].wmid,
input[type="password"].wmid,
select.wmid{
	width:75%;
}
input[type="text"].wmid2,
input[type="password"].wmid2{
	width:50%;
}
textarea{
	height:65px;
	width: 100%;
}
textarea.hhlow{
	height: 400px;
}
textarea.hlow{
	height:100px;
}
textarea.low{
	height:50px;
}
::placeholder {
  color: #DDDDDD;
}

select{
	background-color: #FFF;
	border: 1px solid #CCC;
	border-radius: 0.5rem;
	padding:4px 5px;
	margin:1px 0;
	appearance: menulist;
}
input[type="radio"] ,
input[type="checkbox"] {
	margin: 0 5px 3px 0;
	appearance: auto;
}


form label {
	margin-right:20px;
	display:inline-block;
	padding: 0.5rem 0;
}
form label input[type=radio] {
	margin-right:5px;
}
form p {
	font-size: 1.6rem;
	margin-bottom: 5px;
}
form .caution {
	color:#FF0000;
}
.submit-box01{
	padding:20px;
	text-align:center;
}
.submit-box01 .btn{
	margin:0 10px;
}







.listCtrl {
	display: flex;
	margin-bottom: 10px;
	justify-content: space-between
}
.listCtrl.flex-end {
	justify-content: flex-end;
}
.pager ul {
	display: flex;
}
.pager ul li {
	margin-right: 0.5rem;
}
.pager ul a {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #FFFFFF;
	border: #CCCCCC 1px solid;
	border-radius: 0.5rem;
}
.pager .active a {
	background: #FF9900;
	color: #FFFFFF;
}


/*----------------------------------
table
----------------------------------*/
.table01{
	width:100%;
	background:#CCC;
	font-size: 1.6rem;
    border-collapse: collapse;
    border-spacing: 0;
}
.table01 th,
.table01 td{
	border:#CCC 1px solid;
	padding: 0.5rem 1rem;
	background:#FFF;
	vertical-align:middle;
}
.table01 th{
	background: #E6E6E6;
	font-weight:normal;
}
.table01.edit th{
	width:25%;
}

.table01 td p{
	padding-top: 0.5rem;
}
.table01 form{
	text-align: center;
}


/*----------------------------------
table
----------------------------------*/
.table02{
	width:100%;
	background:#CCC;
	font-size: 1.4rem;
    border-collapse: collapse;
    border-spacing: 0;
}
.table02 th,
.table02 td{
	border-top:#CCC 1px solid;
	padding:5px;
	background:#FFF;
	vertical-align:middle;
}
.table02 th{
	background: #E6E6E6;
	font-weight:normal;
}
.table02.edit th{
	width:25%;
}

.table02 td p{
	padding-top: 0.5rem;
}
.table02 form{
	text-align: center;
}

/* alert */
.alert {
	border: #CCCCCC 1px solid;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.alert p {
	padding: 1rem;
}
.alert a.close {
	display: block;
	padding: 0.5rem 1rem 0;
	font-size: 1.8rem;
	font-weight:bold;
}
.alert.success {
	background-color:#D9EED9;
	border-color:#5CB85C;
}
.alert.danger {
	background-color:#F8DFDE;
	border-color:#D9534F;
}
/* flex-box */
.flex-box01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* width */
.w100 {
	width: 100px!important;
}
.w200 {
	width: 200px!important;
}

.wp10 {
	width: 10%!important;
}
.wp15 {
	width: 15%!important;
}
.wp20 {
	width: 20%!important;
}
.wp25 {
	width: 25%!important;
}
.wp30 {
	width: 30%!important;
}
.wp40 {
	width: 40%!important;
}
.wp45 {
	width: 45%!important;
}
.wp50 {
	width: 50%!important;
}
.wp60 {
	width: 60%!important;
}
.wp30 {
	width: 30%!important;
}
.wp80 {
	width: 80%!important;
}

.wp100 {
	width: 100%!important;
}

.mt-05 {
	margin-top: 0.5rem;
}
.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-4 {
	margin-top: 4rem;
}
.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mr-1 {
    margin-right: 1rem;
}

.text-right {
	text-align: right!important;
}
.text-left {
	text-align: left!important;
}
.text-center {
	text-align: center!important;
}


form .result div {
	width: 0;
	height: 1rem;
	margin-top: 0.5rem;
	background-color: #19C600;
}
