html {
	font-size: 13px;
}

.orig-check input[type="checkbox"] + label::before,
.orig-check input[type="checkbox"] + input[type=hidden] + label::before {
  color: #9E9E9E;
  content: "";
  font: 16px/1 FontAwesome;
  left: 15px;
  position: absolute;
  text-rendering: auto;
  top: 4px;
  transform: rotate(0.001deg);
}

.orig-check input[type="checkbox"]:checked + label::before,
.orig-check.checked input[type="checkbox"] + label::before,
.orig-check input[type="checkbox"]:checked + input[type=hidden] + label::before,
.orig-check.checked input[type="checkbox"] + input[type=hidden] + label::before {
  color: #333;
  content: "" !important;
}

.navbar.withLabel:before {
/*メインナビラベル部分は任意のbackground-colorに変更可*/
}

@media (min-width: 768px) {
	.navbar .navbar-header {
/*メインナビヘッダ部分は任意のbackground-colorに変更可*/
	}
}

.ui-widget { /*jquery-uiの記述を上書き*/
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 10px;
}

/*
body {
	background: #ffffff;
}
*/

.generalContents > .container,
.generalContents > .container-fluid {
  background: #fff;
  box-shadow: none;
}

@media (max-width: 1440px) and (min-width: 1000px) {
    .container {
        width: 800px;
    }
}

@media (min-width: 1600px), (min-width: 1200px) {
    .pre-annotation {
        width: 100%;
    }
}

@media (max-width: 768px) {
	.table-responsive-columns table > tbody > tr > th, .table-responsive-columns table > tbody > tr > td {
	  display: block;
	  width: 100%;
	}
}

.required {
    display: inline-block;
    background: #cc0000;
    font-weight: normal;
    color: #fff;
    padding: 3px 5px;
    font-size: 11px;
    float: right;
}

.table > thead > tr > th, .table > tbody > tr > th {
	padding: 5px 8px;
    line-height: 1.42857;
    font-size: 13px;
    color: rgb(51, 51, 51);
    width: 210px;
    background: rgb(237, 237, 237);
    text-align: left;
	vertical-align: middle;
}

.table > thead > tr > td, .table > tbody > tr > td {
    padding: 12px 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 1px;
    font-weight: normal;
}

.form-control {
    display: block;
    width: 100%;
    height: 32px;
    padding: 2px 6px 1px;
    font-size: 1.1rem;
    line-height: 1.42857;
    color: #555555;
    background-color: #F7F7F7;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-box-shadow: inset 0 1px 1px transparent;
    box-shadow: inset 0 1px 1px transparent;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

#member-update {
    font-size: 17px;
    padding: 12px 32px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    width:200px;
}
#member-return {
    font-size: 17px;
    padding: 12px 32px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    width:200px;
}

#member-top {
	font-size: 17px;
	padding: 12px 32px;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
	vertical-align: middle;
}

#member-create {
	font-size: 17px;
	padding: 12px 32px;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
	vertical-align: middle;
}

.agreement {
	width: 100%;
	height: 140px;
}

#member-create.disabled {
    pointer-events: none;
    background: rgb(221, 221, 221);
}

label.required {
	color: #E00;
}

.requiredMsg {
	color: #E00;
	font-weight: bold;
}

label.required:after {
	content: " *";
	color: #E00;
}

#term[readonly]{
  background-color: white;
  opacity: 1;
}

.loading_wheel{
    position:fixed;
    top:0;right:0;bottom:0;left:0;
    margin:auto;
    width:150px;
    height:150px;

    -webkit-animation:loading_wheel linear 0.75s infinite;
    animation:loading_wheel 0.75s linear infinite;
    -webkit-animation:loading_wheel linear 1.5s infinite;
    animation:loading_wheel 01.5s linear infinite;
    z-index:11000;
}
.loading_wheel.sm{
    -webkit-animation:loading_wheel_sm linear 0.6s infinite;
    animation:loading_wheel_sm 1.0s linear infinite;
    -webkit-animation:loading_wheel_sm linear 0.6s infinite;
    animation:loading_wheel_sm 1.0s linear infinite;
}
.loading_wheel.lg{
    -webkit-animation:loading_wheel_lg linear 0.9s infinite;
    animation:loading_wheel_lg 1.8s linear infinite;
    -webkit-animation:loading_wheel_lg linear 0.9s infinite;
    animation:loading_wheel_lg 1.8s linear infinite;
}

#overlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.50);
    z-index:-10000;
}
@-webkit-keyframes loading_wheel{
    from{-webkit-transform:rotate(0deg) scale(0.92,0.92);}
    to{-webkit-transform:rotate(360deg) scale(0.92,0.92);}
}
@keyframes loading_wheel{
    from{transform:rotate(0deg) scale(0.92,0.92);}
    to{transform:rotate(360deg) scale(0.92,0.92);}
}
@-webkit-keyframes loading_wheel_sm{
    from{-webkit-transform:rotate(0deg) scale(0.84,0.84);}
    to{-webkit-transform:rotate(360deg) scale(0.84,0.84);}
}
@keyframes loading_wheel_sm{
    from{transform:rotate(0deg) scale(0.84,0.84);}
    to{transform:rotate(360deg) scale(0.84,0.84);}
}
@-webkit-keyframes loading_wheel_lg{
    from{-webkit-transform:rotate(0deg) scale(1.0,1.0);}
    to{-webkit-transform:rotate(360deg) scale(1.0,1.0);}
}
@keyframes loading_wheel_lg{
    from{transform:rotate(0deg) scale(1.0,1.0);}
    to{transform:rotate(360deg) scale(1.0,1.0);}
}

.orig-radio input[type="radio"]:disabled + label::before,
.orig-radio.disabled input[type="radio"] + label::before {
  color: #c0c0c0;
  cursor: not-allowed;
}
.orig-radio .radio-inline-disabled{
  color:#c0c0c0;
  cursor: not-allowed;
}

body {
  background: #fafafa;
}