@charset "utf-8";

/*------------------------------*/
body {
	background-color: #f0f5f0;
}

/* レフトボックス */
#left_box {
	background-color: #004d83;
	width:200px;
	float:left;
	padding:10px;
	min-height:100vh;
}

/* メインボックス */
#main_box {
	padding-left:200px;
}

/* スマホ */
@media only screen and (max-width:599px) {
#left_box {
	display: none;
}
#main_box {
	padding:0px;
}
}

/* メインコンテンツ枠 */
#main_contents {
	min-height:100%;
	padding-bottom:100px;
	min-height:100vh;
}

/*------------------------------*/
/* 幅制限用メインフレーム */
.main_table_frame {
	width:1500px;
	margin-top:10px;
	padding-bottom:50px;
}

/*------------------------------*/
/* レフトメニュータイトル */
.left_menu_title_box {
	height:50px;
	color:#ffffff;
	font-size:18px;
}

/* レフトメニュー */
.left_menu_box {
	margin-bottom:10px;
	background-color:#195F8F;
	color:#ffffff;
	text-align:center;
	transition:0.3s;
	font-size:12px;
	height:35px;

}
.left_menu_box:hover {
	background-color:#3096db;
}
.left_menu_box_on {
	background-color:#00223c;
}

/* レフトアイコン */
.left_icon {
	height:40px;
	margin-right:10px;
}

/* レフトサブアイコン */
.left_icon_sub_01 {
	width:30px;
	background-color: #35C398;
	float:left;
	left: 0px;
	transition:0.3s;
	height:35px;
}
.left_menu_box:hover .left_icon_sub_01 {
	background-color:#6ee9c4;
}

.left_icon_sub_02 {
	width:30px;
	background-color: #EF9A5A;
	float:left;
	left: 0px;
	transition:0.3s;
	height:35px;
}
.left_menu_box:hover .left_icon_sub_02 {
	background-color:#ffba85;
}

.left_icon_sub_03 {
	width:30px;
	background-color: #EA86B3;
	float:left;
	left: 0px;
	transition:0.3s;
	height:35px;
}
.left_menu_box:hover .left_icon_sub_03 {
	background-color:#ffafd3;
}

.left_icon_sub_04 {
	width:30px;
	float:left;
	left: 0px;
	transition:0.3s;
	height:35px;
}

/*------------------------------*/
/* メニューライン */
.menu_line_01 {
	font-size:20px;
	font-weight: bold;
}

/*------------------------------*/
/* 平板アイコン */
.icon_flat_plate {
	background-color: #35c398;
	width:35px;
	margin-left:auto;
	margin-right:auto;
}
/* ロータリーアイコン */
.icon_rotary {
	background-color: #ef9a5a;
	width:35px;
	margin-left:auto;
	margin-right:auto;
}
/* 作図・サンプルアイコン */
.icon_drawing {
	background-color: #ffafd3;
	width:35px;
	margin-left:auto;
	margin-right:auto;
}

/*------------------------------*/
/* セレクトボックス */
.select_form_01 {
	background-image: url('../image/down_arrow_01.png');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 30px 25px;
}
/* チェックボックス・ラジオボックス */
.checkbox_form_01 {
	width: 30px;
	height: 30px;
	margin:0px;
	padding:0px;
}

/* テキストエリア */
.textarea_50 {
	min-height: 50px;
}
.textarea_100 {
	min-height: 100px;
}
.textarea_200 {
	min-height: 200px;
}
/* フォーム共通 */
.input_form_01, .select_form_01, .checkbox_form_01, .textarea_50, .textarea_100, .textarea_200 {
	box-sizing: border-box;
	background-color: #ffffff;
	border:1px solid #cccccc;
	font-size: 14px;
	padding: 7px;
	border-radius: 7px;
	line-height:20px; /* auto_textarea */
	cursor:pointer;
	outline: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	max-width:100%;
}
.input_form_01, .select_form_01, .textarea_50, .textarea_100, .textarea_200 {
	appearance: none; /* デフォルトCSS打ち消し*/
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
}

/*------------------------------*/
/* アップロードボックス */
.uplode_box {
	display: inline-block;
	padding: 5px;
	margin: 5px 0px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	background-color: #efefef;
	text-align: center;
	position: relative;
	box-sizing: border-box;
	/* 選択不可能にする */
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.uplode_box:hover {
	background-color: #cccccc;
}

.uplode_box input[type="file"] {
	cursor: cell;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	box-sizing: border-box;
}

/*------------------------------*/
/* 決定ボタン */
.submit_button_01 {
	background-color:#004d83;
	border:none;
	border-radius:50px;
	color:#ffffff;
	width:100%;
	max-width:300px;
	padding:10px;
	font-size:20px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	outline: none;
}
.submit_button_02 {
	background-color:#00a199;
	border:none;
	border-radius:50px;
	color:#ffffff;
	width:100%;
	max-width:300px;
	padding:10px;
	font-size:20px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	outline: none;
}
.submit_button_03 {
	border:1px solid #004D83;
	background-color: #ffffff;
	color:#004D83;
	display:block;
	width:100%;
	min-height:35px;
	border-radius:5px;
	font-size:15px;
	padding:5px 2px;
	transition:0.3s;
	max-width:300px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	outline: none;
}
.submit_button_03:hover {
	background-color: #004D83;
	color:#ffffff;
}
.submit_button_03_on {
	border:1px solid #004D83;
	background-color: #004D83;
	color:#ffffff;
	display:block;
	width:100%;
	min-height:35px;
	border-radius:5px;
	font-size:15px;
	padding:5px;
	transition:0.3s;
	max-width:300px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	outline: none;
}

.submit_button_04 {
	border:1px solid #004D83;
	color:#ffffff;
	background-color: #004D83;
	display:block;
	width:100%;
	min-height:35px;
	border-radius:5px;
	font-size:15px;
	padding:5px;
	transition:0.3s;
	max-width:300px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	outline: none;
}
.submit_button_04:hover {
	background-color: #195F8F;
}
.submit_button_04_on {
	background-color: #00243d;
}

.submit_button_05 {
	width:100px;
	text-align:center;
	border:1px solid #004D83;
	color:#ffffff;
	background-color: #004D83;
	padding:2px 10px;
	border-radius: 5px;
}
.submit_button_05:hover {
	background-color: #195F8F;
}

.submit_button_06 {
	border:1px solid #004D83;
	background-color: #ffffff;
	color:#004D83;
	display:block;
	width:100%;
	border-radius:5px;
	font-size:12px;
	padding:0px 2px;
	transition:0.3s;
	max-width:300px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	cursor:pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	outline: none;
}
.submit_button_06:hover {
	background-color: #004D83;
	color:#ffffff;
}

/*------------------------------*/
/* 必須アイコン */
.required_icon {
	background-color: #ff0000;
	padding:2px 5px;
	border-radius:5px;
	font-size:10px;
	color:#ffffff;
}

/*------------------------------*/
/* 線 */
.hr_ffffff {
	border:none;
	border-top:1px solid #ffffff;
}
.hr_cccccc {
	border:none;
	border-top:1px solid #cccccc;
}
.hr_cccccc_d {
	border:none;
	border-top:1px dotted #cccccc;
}
.border_all_cccccc {
	border:1px solid #cccccc;
}
.border_all_ff0000 {
	border:2px solid #ff0000;
	margin-bottom:-1px;
	padding:1px 0px 0px 1px;
}

/*------------------------------*/
/* 背景色 */
.background_color_ffffcc {
	background-color:#ffffcc;
}

/*------------------------------*/
/* ポップアップ表示 (_common_footer_sys.php) */
.popup {
	position:absolute;
	background-color:#ffffdd;
	border:1px solid #000000;
	padding:10px;
	border-radius:5px;
	font-size:16px;
	color:#ff0000;
	margin-top:02px;
}

/* ポップアップ表示 (短時間) */
.short_pop {
	position:fixed;
	max-width:100%;
	min-width:300px;
	bottom:10px;
	left:10px;
	text-align:center;
	border:1px solid #666666;
	color:#666666;
	border-radius:20px;
	background-color:#efefef;
	padding:10px 5px;
	font-size:20px;
	font-weight:bold;
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	user-select:none;
	z-index: 3;
}

/* ローディングアイコン */
.loading_icon {
	width:50px;
	max-width:100%;
	margin:20px auto 0px auto;
	display:block;
}

/*------------------------------*/
/* ツールチップ */
.tooltip {
	cursor: pointer;
	background-color: #dedede;
	text-align: center;
	padding: 3px;
	border-radius: 05px;
	font-size: 9px;
	color: #666666;
}

.tooltip_box {
	text-align: left;
	background-color: #ffffff;
	border:1px solid #333333;
	font-size: 14px;
	border-radius: 5px;
	padding: 20px;
	position: absolute;
	visibility: hidden;
	z-index: 1;
}

/*------------------------------*/
/* コンテンツページヘッダー用アイコン */
.sub_header_icon {
	width:30px;
}

/* 編集ボタン */
.edit_button {
	background-color: #004d83;
	text-align:center;
	color:#ffffff;
	padding:10px 5px;
	border-radius: 5px;
	transition:0.3s;
}
.edit_button:hover {
	background-color: #195F8F;
}

/*------------------------------*/
/* ページャー用ボタン */
.pager_button_off {
	min-width: 30px;
	display: block;
	text-align: center;
	padding: 1px;
	margin: 2px;
	text-decoration: none;
	float: left;
	padding-bottom: 1px;
	color: #666666;
	border-radius: 5px;
	background-color: #efefef;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pager_button_on {
	min-width: 30px;
	display: block;
	text-align: center;
	padding: 1px;
	margin: 2px;
	text-decoration: none;
	float: left;
	padding-bottom: 1px;
	border-radius: 5px;
	background-color: #cccccc;
	color: #ffffff;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pager_button_off:hover {
	background-color: #cccccc;
}

/*------------------------------*/
/* スマホ用メニューボタン */
.js_menu_switch {
	position: fixed;
	bottom: 55px;
	left: 30px;
	background-color:rgba(0,0,0,0.1);
	border:1px solid #cccccc;
	border-radius:5px;
	padding:10px;
	width: 35px;
	height: 35px;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* スマホハイライトカラー */
	z-index: 3;
}
.js_menu_switch img {
	transition:0.5s;
}
.js_menu_switch:hover img {
	transition:1s;
	transform: rotateZ(180deg) ;
	-webkit-transform: rotateZ(180deg) ;
}
/* スマホ */
@media only screen and (max-width:550px) {
	.js_menu_switch {
		left:20px;
	}
}

/*------------------------------*/
/* スマホ用ナビメニューのスタイル */
.js_mobile_nav {
	position:fixed;
	top:0px;
	height:100%;
	padding:20px 10px 120px 10px;
	width:70%;
	max-width:300px;
	left:-100%;
	background-color: #004d83;
	border-right:1px solid #cccccc;
	z-index:1;
	overflow: auto;
}

.left_menu_01 {
	padding: 10px;
}

/* スマホ用アンダーナビのスタイル */
.under_nav {
	margin-top: 200px;
	display: none;
}

.under_nav .left_menu_01 {
	padding: 20px 10px;
}
@media only screen and (max-width:599px) {
	.under_nav {
		display: block;
	}
}

/*------------------------------*/
/* オートコンプリート枠 */
.ui-widget {
	max-height:500px;
	overflow: auto;
}

/*------------------------------*/
/* スマホ用コントローラーフレーム */
#sp_controller {
	position:fixed;
	height:100px;
	border-top:1px solid #cccccc;
	background-color:rgba(0,0,0,0.5);
	width:100%;
	bottom:0px;
	display:none;
	z-index: 2;
}
#sp_controller_under {
	width:100%;
	height:100px;
	display:none;
}