/*--------------------------------------
  コンテンツ領域 ★background 変更 rgba 透過度を0に変更
                 ★background-color #ffffff変更
---------------------------------------*/
#page_wrapper {
	background: -moz-linear-gradient(left top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../../images2/back_login.jpg');
	background: -webkit-linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../../images2/back_login.jpg');
	background: linear-gradient(60deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../../images2/back_login.jpg');
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #ffffff;
	min-height: 600px;
}
@media(max-width:767px) {
	#page_wrapper {
		background: -moz-linear-gradient(left top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../../images2/back_login.jpg');
		background: -webkit-linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../../images2/back_login.jpg');
		background: linear-gradient(60deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../../images2/back_login.jpg');
		background-position: top center;
		background-size: cover;
		background-repeat: no-repeat;
		background-color: #ffffff;
		min-height: 0px;
	}
}


/*--------------------------------------
  パネル ★ .panel background-color rgba(0,0,0,0)から変更　.panel-body　color: #ffffffから変更
---------------------------------------*/
.panel {
	background-color: rgba(255, 255, 255, 0);
	border: 0px;
	border-radius: 4px;
	max-width: 800px;
	min-height: 350px;
	margin:auto;
}
.panel-heading {
	padding: 30px 0px 10px 0px;
	color: #000000;
	font-size: 1.6em;
	font-weight: normal;
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
}
.panel-body {
	color: #000000;
	font-size: 2.2em;
}
/*--------------------------------------
  パネル ★ .panel background-color rgba(0, 0, 0, 0.5)から変更
---------------------------------------*/
@media(min-width:768px) {
	.panel {
		background-color: rgba(255, 255, 255, 0.5);
		margin-top: 30px;
		padding:15px;
	}
}
/*--------------------------------------
  フォーム ★色変更#ffffffから変更
---------------------------------------*/
form {
	font-size: 14px;
}
legend {
	border : 0px solid #000000;
	margin-bottom: 30px;
}
legend > span,
legend > div {
	color: #000000;
}
.help-block {
	color: #000000;
}

/*--------------------------------------
  ボタン　★ボタン色変更　background-color　rgba(0, 0, 0, 0)から変更　border　1px solid #ffffff;から変更
---------------------------------------*/
.btn-primary,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:hover,
.btn-primary.hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary:active,
.btn-primary.active{
    color: #ffffff;
    border: 0px;
    background-color: #4B3839;
    background-image: none;
    border-radius: 3px;
}

/*--------------------------------------
  チェックボックスボタン　★色変更　#ffffff;から変更
---------------------------------------*/

.btn-info, .btn-info:focus, .btn-info.focus, .btn-info:hover, .btn-info.hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info:active, .btn-info.active {
    color: #ffffff;
    border: 0px;
    background-color: #4B3839;
    background-image: none;
    border-radius: 3px;
}

/*--------------------------------------
  文章　★色変更　color: #000000から変更
---------------------------------------*/

a, a:hover, a:focus {
    color: #000000;
}

