@charset "utf-8";

/* reset css */

@import "./reset.css";

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

	OOCSS

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.header_logo {
	display:inline;
	float:left;
	padding-right:10pt;
	padding-top:2px;
}
.alignleft { float: left; }
.alignright { float: right; }
.aligncenter {
	display: block;
	margin: 0 auto;
}
.clear { clear: both; }
.clearfix { overflow: hidden; }
.warning {
	border: 1px solid red;
	border-radius: 3px;
	color:red;
	padding:10px 10px 10px 60px;
	background: url(../img/warning_48.png) no-repeat;
	background-position: 5px 10px; 
	background-color:#FFFFEE;
}
.information {
	border: 1px solid #0099FF;
	border-radius: 3px;
	color:#4885C1;
	padding:10px 10px 10px 60px;
	background: url(../img/information_48.png) no-repeat;
	background-position: 5px 10px; 
	background-color:#FFFFFF;
}
.confirm_info {
	background: url(../img/ico_info.png) no-repeat;
	background-position: 10px 0px;
	padding-left: 100px !important;
}


.red { color: red; }
.blue { color: blue; }
.gray { color: gray; }
.darkgray { color: #666; }

.small { font-size: small; }

.x-small { font-size: 11px; } /* x-small = 10px */
.children { padding-left: 20px; }

strong{ font-weight: bold; }
.bold { font-weight: bold; }
.error { color: red; }

a {
	color: #21759B;
	text-decoration: none;
	cursor: pointer;
}

i { margin-right: 5px; }

input[type="image"] {
    width: auto;
}

input[type="file"] {
    width: auto;
}

.hidden_str{
	display: none;
}

/*  Navigation Bar Setting CSS */
.nav > li {
	padding-bottom: 0.5em;
}

.nav > li > a {
	display: block;
	line-height: 0.8em;
	padding: 10px 0px 8px 0px !important;
}

.eng {
	font-size: 0.6em;
}

.break:before {
	content: "\A";
	white-space: pre; /* ←あわせてこれを指定しないと改行しない場合があるらしい */
}

/* 英語併記用 */
div.inner_prefix{
	position: relative;
	float: left;
	white-space: nowrap;
	display: inline-block;
}
.inner_eng {
	font-size: 0.6em;
	position: absolute;
	top: 14px;
}
	


/* Headings ********************************************/

h1 {
	display: block;
	font-size: 13px;
	font-weight: bold;
	float: left;
	line-height: 40px;
	margin-right: 20px;
}
	h1 a { color: white; }
h2 {
	display: block;
	font-size: 18px;
	margin-bottom: 20px;
	text-shadow: 0 1px 0 white;
}
	.admin h2 {
		padding: 0 5px;
	}
h3 {
	display: block;
	font-size: 14px;
	font-weight: bold;
}
h4 {
	font-weight: bold;
	margin: 10px 0;
}

/* Structure ********************************************/
	
html {
	height: 100%;
	background-color: #F0F0F0;
	background-image: url(../img/bg_body.png);
}

body {
	min-height: 100%;
	font-size: small;
	font-family: Helvetica, Helvetica Neue, Arial;
	/*font-family: 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, Arial, Verdana, sans-serif;*/
	position: relative;
}
.wrapper {
	width: 95%;
	margin: 0.5% auto;
}
#header-container {
	background: #333;
	height: 90px; /* modile first */
	top: 0;
	left: 0;
	width: 100%;
	position: fixed; /* fixed にすると最上部固定 */
	z-index: 10; /* 最上部に表示 */
}
#main-container {
	padding-top: 100px; /* modile first */
	overflow: hidden;
	margin: 0 auto;
}
	#main {
/*		padding-bottom: 60px; /* mobile first */ 
		padding-bottom: 125px; /* modified 2017.03.18 */ 

	}
#footer-container {
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	padding: 15px 20px;
	border-top: 1px solid #ccc;	
}

.small_column {
	max-width: 680px;
	margin: 0 auto;
}

.medium_column {
	max-width: 760px;
	margin: 0 auto;
}

.button_right {
	float: right;
	padding: 5px 5px;
}

	
/* entry input *************************************************/

.input-full {
	width: 98%;
}
.input-middle {
	width: 50%;
}

.input-small {
	width: 25%;
}


/* メッセージ表示用 枠 **************************************/
.green-message {
    padding: 0.5em 1em;
/*    margin: 2em 0; */
    font-weight: bold;
    color: #51a351;/*文字色*/
    background: #f6fff6;
    border: solid 3px #51a351;/*線*/
    border-radius: 10px;/*角の丸み*/
	word-break: break-word;
}
.green-message p {
    margin: 0; 
    padding: 0;
}
 
.red-message {
    padding: 0.5em 1em;
/*    margin: 2em 0; */
    font-weight: bold;
    color: #FF3300;		/*文字色*/
    background: #FCE4EA;
    border: solid 3px #FF3300;/*線*/
    border-radius: 10px;/*角の丸み*/
	word-break: break-word;
}
.red-message p {
    margin: 0; 
    padding: 0;
}
 
.center-line-head {
	position: relative;
	display: inline-block;
	padding: 0 55px;
}

.center-line-head:before, .center-line-head:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 1px;
	background-color: black;
}

.center-line-head:before {left:0;}
.center-line-head:after {right: 0;}

 



/* CSS3 Media Query ********************************************/

/*
@media only screen and (min-width: 320px) {
}
*/
@media only screen and (min-width: 320px) {

}
@media only screen and (min-width: 768px) {
	#header-container {
		height: 40px;
	}
	#main-container {
		padding-top: 60px;
	}

	#main-container.portal {
		padding-top: 40px !important;
	}
	.wrapper {
		margin: 0 auto;
	}

}
@media only screen and (min-width: 960px) {
	.wrapper {
	/*	width: 960px; */
		width: 1120px;
	}
}

/* for IE */
.no-boxshadow .content_main {
	border: 1px solid #ccc;
}
.content_main {
	background-color: white;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.35);
	margin: 5px 5px 10px;
}

.content_header {
	border-bottom: 1px solid #CCC;
	background: #FAFAFA;
	background: -moz-linear-gradient(#FAFAFA,#EAEAEA);
	background: -webkit-linear-gradient(#FAFAFA,#EAEAEA);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA',endColorstr='#EAEAEA')";
	-webkit-border-radius: 6px 6px 0 0;
	-moz-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
}
.content_header .content_inner {
	padding: 10px 20px;
}
.content_nav {
	border-bottom: 1px solid #CCC;
	border-bottom: 1px solid #DDD;
	background: #FAFAFA;
	margin-bottom: 0;
	background-color: whiteSmoke;
}
.content_nav .content_inner {
	padding: 10px 20px;
}
.content_inner {
	padding: 30px;
}
/*
.content_inner .No_label {
	padding-left:20px;
}
*/
.content_footer {
	border-top: 1px solid #CCC;
	background: #FAFAFA;
	text-align: center;
	margin-bottom: 0;
	text-align: center;
	background-color: whiteSmoke;
	border-top: 1px solid #DDD;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: inset 0 1px 0 white;
	-moz-box-shadow: inset 0 1px 0 #ffffff;
	box-shadow: inset 0 1px 0 white;
}
.content_footer .content_inner {
	padding: 20px;
}


.index_hd {
	margin-bottom: 10px;
}



.required_mark {
	background: crimson;
	padding: 2px 5px;
	margin-left: 8px;
	color: white;
	font-size: 11px;
	border-radius: 3px;
	font-weight: normal;
	position: relative;
	bottom: 1px;
}





/* table ******************************************/

table {
	width: 100%;
}

/* list */

.list tr {
	border: 1px solid #CCCCCC;
	background: #F9F9F9;
}

/* strip table */

.list tr.odd { background: #FFFFFF; }
.list tr.hover { background: #F5F5F5; }

.list th {
	padding: 7px 8px;
	text-align: left;
	font-weight: bold;
	color: #555;
	text-shadow: 0 1px 0 white;
	border-bottom: 1px solid #CCC;
	background: #FAFAFA;
	background: -moz-linear-gradient(#FAFAFA,#EAEAEA);
	background: -webkit-linear-gradient(#FAFAFA,#EAEAEA);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA',endColorstr='#EAEAEA')";	
}
.list td { padding: 7px 8px; }

/* Table Footer */
.table_footer {
  /* koko */
  margin: 0 0 20px;
  padding: 10px 20px;
  list-style: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-border-radius: 0 0 6px 6px;
     -moz-border-radius: 0 0 6px 6px;
       -o-border-radius: 0 0 6px 6px;
          border-radius: 0 0 6px 6px;
/*
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
*/  
}


th.first, td.first { padding-left: 15px; }
th a { color: #333; }
th { vertical-align: text-top; }


th.th_id { width: 50px; } /* 6桁 */
th.th_mail_send_num { width: 20px;}
th.th_date { width: 140px; }
th.th_name { width: 140px; }
th.th_action { width: 100px; }
th.th_entry { width: 100px; }

/* password_strength */
.password_strength_1 {background-color: #fcb6b1;}
.password_strength_2 {background-color: #fccab1;}
.password_strength_3 {background-color: #fcfbb1;}
.password_strength_4 {background-color: #dafcb1;}
.password_strength_5 {background-color: #bcfcb1;}

/* form */

table.form th, table.form td {
	padding: 3px 0;
}
.form th {
	font-weight: bold;
	font-size: 12px;
}

.add_temp_table {
	margin-bottom: 20px;
}
.add_temp_table th, .add_temp_table td {
	padding: 7px 10px;
}
.add_temp_table th {
	vertical-align: text-top;
	font-weight: bold;
}

.index_ft {
	margin-top: 40px;
}
ul.actions li {
	float: left;
	margin-right: 10px;
}
.paging { margin-top: 10px; }

p { line-height: 1.3em; }

/* input用 */
.full { width: 98%; }
.chk_box_nonowap {
	white-space:nowrap;
}

/* entryform */

dl {
	overflow: hidden;
}
dt {
	border-left: 5px solid gray;
	border-bottom: 1px dotted gray;
	line-height: 25px;
	text-indent: 15px;
	margin-bottom: 15px;
	margin-top: 20px;
	font-weight: bold;
}
dt.No_label {
	border: none;
	clear: both;
	line-height: 25px;
	text-indent: 15px;
	margin-bottom: -10px;
}
dd {
	margin: 0 3px 0px;
	overflow: hidden;
}

dd.required_jpn {
	width: 45px;
	float:left;
	padding: 4px 0px;
}

dd.required_eng {
	width: 65px;
	float:left;
	padding: 4px 0px;
}

dd.required_blg {
	width: 90px;
	float:left;
	padding: 4px 0px;
}

.dl-horizontal dt {
	border: none;
	float: left;
	width: 140px;
	clear: left;
	text-align: right;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dl-horizontal dd {
	margin-left: 150px;
}


/* form */
label {
	font-weight: bold !important;	
}
input[type=checkbox] + label, input[type=radio] + label {
/*	margin: 0 15px 0 10px; */
/*	margin: 0 28px 0 -4px; */
/*	margin: 0 28px 0 -3px; */
	margin: 0 28px 0 -2px;
}

.radio, checkbox {
	padding-left: 22px !important;
}

#example label {
    margin: 0;
}

body:last-child .yoko { padding-right: 10px; }	/* for IE Hack */
.yoko {
	float: left;
	padding-right: 18px;
	padding-right: 6px\9; 	/* for IE8 Only Hack */
}

hr.form{
	margin-left: -50px;
}

/* form */
p.error {
	color: red;
	font-size: small;
	margin-bottom: 5px;
}
.error input[type=text],
.error input[type=password],
.error textarea,
.error select,
.error label {
	background: #FFCCCC;
}

/* Serach Filter */
.serach_filter {
	background-color: #FFFFFF;
	background: url(../img/search_box.png);
	background-repeat:no-repeat;
	background-position: 0 -2px; 
}

/* model validation */

.form-error {
	background: #FFCCCC;
}


/* template **********************************/

#field_list li {
	padding: 5px;
	background: white;
	overflow: hidden;
	cursor: -webkit-grab;
}
#field_list li:hover {
	background: #f5f5f5;
}
#field_list li:active {
	cursor: -webkit-grabbing;
	background: white;
	border: 1px solid #ccc;
}
#field_list li.auth_field {
}

/* Control Field Background Color Setting */
#field_list li.ctrl_field {
	background:#FFEEEE;
}

#field_list li.ctrl_field:hover {
	background:#FFD0D0;
}

#field_list li.admin_field {
	background:#D2F0FF;
}

#field_list li.admin_field:hover {
	background:#95DDFF;
}

/*
#field_list div.No_label {
	margin: 0 15px 0 20px;
}
*/ 
.ui-state-highlight {
	background: whitesmoke !important;
	border: 1px solid #ccc !important;
	margin: 5px 0 !important;
	box-shadow: inset 1px 1px 5px #ccc;
}

#field_list .ui-state-highlight {
	height: 90px;
}

/* form */
/*
input[type=text], input[type=password], textarea {
	padding: 3px;
	background: transparent;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-right: 1px solid #E3E3E3;
	border-bottom: 1px solid #E3E3E3;
	box-shadow: 2px 2px 2px rgba(200, 200, 200, 0.2) inset;
}
*/
textarea {
	resize: vertical;
}

/* submit btn */
.submit {
	height: 34px;
	position: relative;
	font-weight: bold;
	font-size: 12px;
	color: #333;
	text-shadow: 1px 1px 0 white;
	background: white;
	background: -moz-linear-gradient(white,#E1E1E1);
	background: -webkit-linear-gradient(white,#E1E1E1);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='white',endColorstr='#e1e1e1')";
	border-bottom: 1px solid #EBEBEB;
	border-radius: 4px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.3);
	cursor: pointer;
	margin-left: 1px;
	padding: 0 15px;
	-webkit-font-smoothing: subpixel-antialiased!important;
	border: 1px solid #999;
}

a.submit {
	padding: 0.7em 1.3em 0.75em 1.3em; 
	background: -moz-linear-gradient(white,#E1E1E1);
	background: -webkit-linear-gradient(white,#E1E1E1);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='white',endColorstr='#e1e1e1')";
	vertical-align: middle;
}

/*	Firefox Only Hack */
@-moz-document url-prefix() { a.submit {
	padding: 0.75em 1.3em 0.70em 1.3em; 
	background: -moz-linear-gradient(white,#E1E1E1);
	background: -webkit-linear-gradient(white,#E1E1E1);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='white',endColorstr='#e1e1e1')";
	vertical-align: middle;
}}

.submit:hover {
	color: white;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
	background: #4794BC;
	background: -moz-linear-gradient(#0CA3DA,#3A7999);
	background: -webkit-linear-gradient(#0CA3DA,#3A7999);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#4794bc',endColorstr='#3a7999')";
	border-bottom-color: #438BB1;
}

.loginform {
	background-color: white;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.35);
}

/* icon */

.icon_16x16 {
	display: block;
	width: 16px;
	height: 16px;
	float: left;
	background: url(../img/icons_16x16.png);
	margin-right: 5px;
}
.icon_16x16_th {
	display: block;
	width: 16px;
	height: 13px;
	float: left;
	background: url(../img/icons_16x16.png);
	margin-right: 5px;
}
.icon_view { background-position: 0 0; }
.icon_edit { background-position: -16px 0; }
.icon_delete { background-position: -32px 0; }
.icon_copy { background-position: -48px 0; }
.icon_mail { background-position: -64px 0; }
.icon_auth { background-position: -80px 0; }
.icon_mypage { background-position: -96px 0; }
.icon_key { background-position: -112px 0; }
.icon_new { background-position: -128px 0; }
.icon_trash { background-position: -32px -16px; }
.ui_icon {
	display: inline-table; 
	width: 16px;
	height: 16px;
	background: url(../img/ui-icons.png);
	background-position: -128px -16px;
	
}
.ui_sortable {
	background-position: -128px -48px;
}

.asc .ui_icon { background-position: -64px -16px; }
.desc .ui_icon { background-position: 0 -16px; }



/* h2 icon 24x30 */

.icons_24x30 {
	float: left;
	display: block;
	width: 27px;
	height: 30px;
	margin-right: 10px;
	background: url(../img/icons_27x30.png);
}
.icons_24x30.icon_form { background-position: 0 0; }
.icons_24x30.icon_gear { background-position: -27px 0; }
.icons_24x30.icon_user { background-position: -54px 0; }
.icons_24x30.icon_entry { background-position: -81px 0; }
.icons_24x30.icon_mail { background-position: -108px 0; }
.icons_24x30.icon_group { background-position: -135px 0; }


.form_title {
	color: peru;
	font-weight: bold;
	font-size: 14px;
}

/* icon green arrow right */

.icon_arrow_right {
	display: block;
	width: 30px;
	height: 16px;
	float: left;
	background: url(../img/arrow_right.png);
	margin-right: 5px;
}


/* for visual editor */

.cleditorMain {
	border: 1px solid #CCC !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/* for visual editor style */

.cleditor_view { /* ページ詳細 */
	margin-top: 20px;
}
.cleditor_view ul, .editor_view ol {
	margin-left: 20px;
}
.cleditor_view ul li {
	list-style-type: disc;
}
.cleditor_view ol li {
	list-style-type: decimal
}

/* editor */

.ed_box {
	width: 99%;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.ed_box textarea {
	border: none;
	outline: none;
}

.ed_toolbar {
	background: #eee;
	border-bottom: 1px solid #ccc;
	width: 100%;
	padding: 2px 0;
}
.ed_toolbar input[type=button] {
	border: none;
	background: #eee;
	font-size: 11px;
	padding: 4px 5px;
}
.ed_toolbar input[type=button]:hover {
	background: white;
}

/* 「ログインしてください」のとこ */

#login_before {
	color: white;
	line-height: 40px;
}
#login_before a {
	color: skyblue;
}

.admin_divider {
	height: 1px;
	margin: 8px 1px;
	overflow: hidden;
	background-color: #E5E5E5;
	border-bottom: 1px solid white;
}

/*-----------------------------------------------
    Page Setting Modal Field Style
-------------------------------------------------*/
#add_option_field {
	border-right-style:dotted;
}

#add_option_field_value {
	border-radius: 0;
	border-left: 0px;
	margin-left: -4px;	
}

.add_option_label {
	position:relative;
}

.add_option_label_title {
	font-size:10px;
	width:210px;
	text-align:center;
	background-color:#ddd;
	position:absolute;
	top:1px;
	left:3px;
	border:solid 1px #ccc;
	border-top-right-radius:3px;
	border-top-left-radius:3px;
	-webkit-border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
}

.add_option_label_value {
	font-size:10px;
	width:90px;
	text-align:center;
	background-color:#ddd;
	position:absolute;
	top:1px;
	left:225px;
	border:solid 1px #ccc;
	border-top-right-radius:3px;
	border-top-left-radius:3px;
	-webkit-border-top-left-radius:3px;
	-webkit-border-top-right-radius:3px;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
}

.calc_sum_id {
	width:20px;
	float:left;
	border: 1px solid rgb(204, 204, 204);
	margin: 0px 5px 5px 0px;
	font-size: 16px;
	line-height: 18px;
	text-align:center;
	padding:2px 20px 0px 0px;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius;
}

.calc_val {
	display:none;
}

/************************************************

	Paginate Style

*************************************************/
.paging {
	padding: 3px;
	margin: 3px;
}
.paging a {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	padding: 2px 5px 2px 5px;
	margin: 2px;
	border: 1px solid #aaaadd;
	text-decoration: none;
	color: #000099;
}
.paging a:hover, .paging a:active {
	border: 1px solid #000099;
	color: #000;
}
.paging span.current {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	padding: 2px 5px 2px 5px;
	margin: 2px;
	border: 1px solid #000099;
	font-weight: bold;
	background-color: #000099;
	color: #FFF;
}
.paging span.disabled {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	padding: 2px 5px 2px 5px;
	margin: 2px;
	border: 1px solid #eee;
	color: #ddd;
}

/************************************************

	カレンダーからの機器予約フォーム

*************************************************/
.reserve_form {
	padding: 2px 0px;
	text-align: left;
}

/************************************************

	カレンダー Tips

*************************************************/
.calendar_tooltips {
	position: absolute;
	bottom: -2.8em;
	left: 0.3em;
	z-index: 9998;
	padding: 0.3em 0.5em;
	color: #666666;
	background: #F8F8F8;
	border: 1px solid #c72439;
	border-radius: 0.5em;
	/* max-height: 150px; */
	/*box-shadow*/
	box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -webkit-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -moz-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
    -ms-box-shadow:0 0 5px #ccc, 0 0 5px #aaa, 0 0 1px #888;
}
.calendar_tooltips:after {
	z-index: 9999;
	width: 100%;
	content: "";
	display: block;
	position: absolute;
	left: 0.5em;
	top: -8px;
	border-top:8px solid transparent;
	border-left:8px solid #c72439;
}

/************************************************

	新規登録ユーザの承認ダイアログ

*************************************************/
.approve-dialog {
	padding: 0px 20px;
}

.approve-dialog fieldset {
	font-size: 1.1em;
	margin-top: 10px;
}

.approve-dialog label {
	font-size: 1.1em;
	margin-right: 20px;
}

/************************************************

	メッセージ用フレーム枠

*************************************************/
.msg_frame_blue{
  padding: 10px 40px 10px 40px;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #bce8f1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #3a87ad;
  background-position: 5px 10px; 
  background-color: #d9edf7;
}

.msg_frame_yellow{
  padding: 10px 40px 10px 40px;
  margin-bottom: 18px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #c09853;
  background-position: 5px 10px; 
  background-color: #fcf8e3;
}

.serach_mode{
  font-size: 140%;
  font-weight: bold;
  padding: 10px 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #c09853;
  background-position: 5px 10px; 
  background-color: #fcf8e3;
  float: left;
}

/************************************************

	Time Picker Add style

*************************************************/
.time_pick {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
}
.timepicker_wrap {
	width: 160px;
}


/************************************************

	IME モード設定

*************************************************/
.ime-auto { ime-mode: auto; }
.ime-active { ime-mode: active; }
.ime-disabled { ime-mode: disabled; }
.ime-inactive { ime-mode: inactive; }

/************************************************

	タブボタン

*************************************************/
.tab_btn {
	background: #FAFAFA;
	background: -ms-linear-gradient(top,#FFF 0%,#FFF 3%,#E6E6E6 3%,#FFF);
	background: -moz-linear-gradient(top,#FFF 0%,#FFF 3%,#E6E6E6 3%,#FFF);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(0.03,#FFF), color-stop(0.03,#E6E6E6), to(#FFF));
	color: #111;
	border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border: 1px solid #CCC;
	border-bottom: 3px solid #0099CC;
	width: 100px;
	padding: 10px 0;
}

.tab_btn_enabale {
	background: #0099CC;
	background: -ms-linear-gradient(top,#B1D2E0 0%,#B1D2E0 3%,#0099CC 3%,#069);
	background: -moz-linear-gradient(top,#B1D2E0 0%,#B1D2E0 3%,#0099CC 3%,#069);
	background: -webkit-gradient(linear, left top, left bottom, from(#B1D2E0), color-stop(0.03,#B1D2E0), color-stop(0.03,#0099CC), to(#069));
	color: #FFF;
	border-radius: 8px 8px 0px 0px;
	-ms-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border: 1px solid #09C;
	border-bottom: 3px solid #09C;
	width: 100px;
	padding: 10px 0;
}

/************************************************

	お知らせ カテゴリタブ

*************************************************/
div.info {
	font-size: 0.8em;
	text-align: center;
	background: #0099CC;
	background: -ms-linear-gradient(top,#0099CC 0%,#006699);
	background: -moz-linear-gradient(top,#0099CC 0%,#006699);
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#0099CC',endColorstr='#006699')";
	color: #FFF;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	width: 60px;
	padding: 3px 5px;
}
/*
div.mente {
	font-size: 0.8em;
	text-align: center;
	background: #53B54A;
	background: -ms-linear-gradient(top,#53B54A 0%,#006633);
	background: -moz-linear-gradient(top,#53B54A 0%,#006633);
	background: -webkit-gradient(linear, left top, left bottom, from(#53B54A), to(#006633));
	color: #FFF;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	width: 50px;
	padding: 3px 5px;
}
*/
div.mente {
	font-size: 0.8em;
	text-align: center;
	background: #CC9933;
	background: -ms-linear-gradient(top,#FFCC33 0%,#CC9933);
	background: -moz-linear-gradient(top,#FFCC33 0%,#CC9933);
	background: -webkit-gradient(linear, left top, left bottom, from(#FFCC33), to(#CC9933));
	color: #FFF;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	width: 60px;
	padding: 3px 5px;
}

div.other {
	font-size: 0.8em;
	text-align: center;
	background: #936093;
	background: -ms-linear-gradient(top,#CC99CC 0%,#663366);
	background: -moz-linear-gradient(top,#CC99CC 0%,#663366);
	background: -webkit-gradient(linear, left top, left bottom, from(#CC99CC), to(#663366));
	color: #FFF;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	width: 60px;
	padding: 3px 5px;
}


/************************************************

	お知らせ 重要

*************************************************/

div.important {
	font-size: 0.8em;
	text-align: center;
	background: #BB1100;
	background: -ms-linear-gradient(top,#FF3300 0%,#990000);
	background: -moz-linear-gradient(top,#FF3300 0%,#990000);
	background: -webkit-gradient(linear, left top, left bottom, from(#FF3300), to(#990000));
	color: #FFF;
	border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	-webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	width: 60px;
	padding: 3px 5px;
}

/************************************************

	ユーザ登録「学内」・「学外」選択時

*************************************************/

.not_display {
	display:none;
}


/************************************************

	機器予約画面のフォーム枠

*************************************************/
.group_box {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
/*    border: solid 1px #95ccff; */
    border: solid 1px #CCCCCC;
    border-radius: 8px;
}
.group_box .group_box-title {
    position: absolute;
    display: inline-block;
    top: -8px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 1.0em;
	font-weight: bold;
    background: #FFF;
/*    color: #95ccff; */
	color: #CCCCCC;
    font-weight: bold;
}
.group_box p {
    margin: 0; 
    padding: 0;
}

/************************************************

	利用停止ユーザのラベル

*************************************************/
.label-stop {
	background-color: #FFFFFF !important;
	color: #FF0000 !important;
	border: 1px solid #FF0000 !important;
	text-shadow: none !important;
}

/************************************************

	入力フィールド（編集用）

*************************************************/
.hidden_input_style {
	background-color: unset !important;
	border: none !important;
	box-shadow: none !important;
	-moz-box-shadow: unset !important;
}

/************************************************

	利用者更新ボタン設定用

*************************************************/
/* === ボタンを表示するエリア ============================== */
.radioOnOff {
  position       : relative;            /* 親要素が基点       */
  margin         : auto;                /* 中央寄せ           */
  width          : 160px;               /* ボタンの横幅       */
  height         : 60px;                /* ボタンの高さ       */
}
 
 /* === ラジオボタン ======================================== */
.radioOnOff input[type="radio"] {
  display        : none;            /* チェックボックス非表示 */
}
 
 /* === ラジオボタンのラベル（標準） ======================== */
.radioOnOff label {
  display        : block;               /* ボックス要素に変更 */
  position       : absolute;            /* 親要素からの相対位置*/
  top            : 0;                   /* 標準表示位置(上)   */
  bottom         : 0;                   /* 標準表示位置(下)   */
  left           : 0;                   /* 標準表示位置(左)   */
  right          : 0;                   /* 標準表示位置(右)   */
  text-align     : center;              /* 文字位置は中央     */
  line-height    : 60px;                /* 1行の高さ(中央寄せ)*/
  font-size      : 18pt;                /* 文字サイズ         */
  font-weight    : bold;                /* 太字               */
  border         : 2px solid #ccc;      /* 枠線(一旦四方向)   */
}
 
 /* === ON側のラジオボタンのラベル（標準） ================== */
.radioOnOff #UserUpdateUserEnable0 + label {
  right          : 50%;                 /* 右端を中央に変更   */
  border-radius  : 6px 0 0 6px;         /* 角丸(左側の上下)   */
  background     : #eee;                /* 背景               */
  color          : #666;                /* 文字色             */
  border-right   : none;                /* 枠線の右側を消す   */
}
 
 /* === ON側のラジオボタンのラベル（ONのとき） ============== */
.radioOnOff #UserUpdateUserEnable0:checked +label {
                                        /* 背景グラデーション */
  background     : linear-gradient(180deg, #00b359, #006633, #00b359);
  color          : #fff;                /* 文字色             */
  text-shadow    : 1px 1px 1px #333;    /* 文字に影を付ける   */
}
 
 /* === OFF側のラジオボタンのラベル（標準） ================ */
.radioOnOff #UserUpdateUserEnable0 + label {
  left           : 50%;                 /* 左端を中央に変更   */
  border-radius  : 0 6px 6px 0;         /* 角丸(右側の上下)   */
  background     : #eee;                /* 背景               */
  color          : #666;                /* 文字色             */
  border-left    : none;                /* 枠線の左側を消す   */
}
 
 /* === OFF側のラジオボタンのラベル（OFFのとき） ============= */
.radioOnOff #sample1off:checked +label {
                                        /* 背景グラデーション */
  background     : linear-gradient(175deg, #ccc, #999, #ccc);
  color          : #fff;                /* 文字色             */
  text-shadow    : 1px 1px 1px #333;    /* 文字に影を付ける   */

/************************************************

	メインメニュー（モバイル）

*************************************************/
@media only screen and (min-width: 320px) and ( max-width: 640px ){
	.navbar .nav {
		padding 0px 0px 0px 0px;
		margin: 0px 0px 0px 0px !important;
	}
	
	.navbar-inner {
		font-size: 0.8em !important;
		padding-left: 5px !important;
		padding-right: 5px !important;
		min-height: 35px !important;
	}
	
	.nav > li {
		padding-bottom: 0;
	}

	.navbar .nav > li > a {
		/* padding: 0 !important; */
	}
	
	.mobile-none-disp {
		display: none;
	}
	
	.moble-scale-font {
		font-size: 0.6em !important;
	}
	
	.search-btn {
		width: 100%;
		text-align:center;
	}

	.machine-spec-disp{
 		background-color: #FFFFFF;
		margin: 0px 10px 0px 10px;
 	}
	
	.calendar-3p-width {
		width:100%;
	}
	
	.form-time {
		margin-left: 65px;
	}

	.reserve-form-cell {
		margin-top: 10px;
	}

	.reserve-btn-frame {
		display:block;
		width:100%;
		padding: 10px 0px;
	}
	
	.mobile-reserve-btn {
		width: 90%;
	}
	
	/*---------------------------*/
	/*     個人情報編集画面      */
	/*---------------------------*/
	.individual-edit-label {
		width: 105px !important;
	}
	.individual-edit-control {
		margin-left: 120px !important;
	}
	
}

@media only screen and (min-width: 768px) {
	.search-btn {
		text-align:center;
		width: 28%;
		margin-left: 10px;
		float: left;
	}
	
	.float-left {
		float: left;
	}

	.machine-spec-disp{
 		background-color: #FFFFFF;
		margin: 0px 10px 0px 310px;
 	}
	
	.calendar-3p-width {
		width:32.8%;
	}
	
	.calendar-3p-contine {
		padding-left:5px;
	}

	.reserve-form-cell {
		display:table-cell;
	}

	.reserve-carendar-cell {
		float:left; width: 50%;
	}
	
/*	
	.reserve-form-cell{
		float:left; width: 50%;
	}
*/
}

@media only screen and (min-width: 960px) {
	.nav > li > a {
		min-height: 30px;
	}

	.reserve-multi-field-right {
		float: right;
	}
	.reserve-multi-field-left {
		float: left;
	}
}
