@charset "UTF-8";

*{
  margin:0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,body{
	height:100%;
	//background:#999;
}

div {
	
}

.required::after {
	content: 	"必須";
	position: 	relative;
	bottom: 	1px;
	left:		5px;
	color: #ffffff;
	background: #cc0000;
	font-size: 80%;
	padding: 1px 3px 0px 3px;
	border-radius: 0px;	
}

option:first-child{

}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

@font-face {
    font-family: 'password';
    src: url(../font/password.ttf);
    /*src: url(https://jsbin-user-assets.s3.amazonaws.com/rafaelcastrocouto/password.ttf);*/
    /*src: url(text-security-disc.ttf);*/
}

/** クラスに password を持つならば入力された文字列を全てパスワード記号化 */
input.password {
    font-family : 'password';
    ime-mode    : disabled;
}

#wrapper{
	width: 100%;
	/*min-height: 100vh;*/
	position: relative;
}
/*
 * blockUIの直書きできない調整
 */
.blockui_adjust{
	vertical-align:	middle;
	margin-right:	10px;
	font-size:		1.8em;
}

main{
	padding-bottom:20px;
}

main.disactive{
	display:none;
}

#end  {
	padding-bottom:40px;
}

/*
 * スクロールすると出てくるページトップアイコン
 */
#to_page_top{
	display:		none;
	width: 			50px;
	height: 		50px;
	position: 		fixed;
	right: 	 		10px;
	bottom: 		30px;
	background: 	#999;
	opacity: 		0.8;
	border-radius: 	50%;
	z-index:		500;
}

#to_page_top a{
	position: 		relative;
	display: 		block;
	width: 			50px;
	height: 		50px;
	text-decoration: none;
}

#to_page_top a::before{
	font-family: 	'Font Awesome 5 Free';
	font-weight: 	900;
	content: 		'\f102';
	font-size: 		25px;
	color: 			#fff;
	position: 		absolute;
	width: 			25px;
	height: 		25px;
	top: 			0;
	bottom: 		0;
	right: 			0;
	left: 			0;
	margin: 		auto;
	text-align: 	center;
}

/*
 * 入力フォーム内見出し
 */
.input_form_main_title {
	box-sizing: 		border-box;
	background:			#fff;
	margin:				0px 0px 0px 0px;
	padding-left:		10px;
	width: 				100%;
	max-width:			800px;
	margin:				30px auto 0px;
	color:				#666;
	font-size:			10pt;
	display:			block;
}

/* 
 * 入力フォーム一覧
 */
.input_form_list {
	box-sizing: 		border-box;
	background:			#fff;
	border:				1px solid #bbb;
	padding:			30px 30px 30px 30px;
	margin:				0px 0px 0px 0px;
	border-radius:		3px;
	width: 				100%;
	max-width:			800px;
	min-height:			calc(100vh - 280px);
	margin:				10px auto 50px;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

/*
 * 
 */
.input_form_container{
	padding:			10px 30px 10px 30px;
}

#print_context_menu{
	display:none;
	position:fixed;
	left:0px;
	top:0px;
	padding: 10px 50px 0px 20px;
	color: 				#333333;
	text-decoration: 	none;
	line-height: 		25px;
	font-size: 			0.8em;
	background-color:	#fff;
	border:1px solid #000;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
	z-index:999;
}

#print_context_menu li{
	cursor:pointer;
	margin-bottom:10px;
}

#print_context_menu li:hover{
/*
	text-decoration: underline
*/
	color:orange;
}

/*
 * 
 */
.input_form_title{
	font-size:			11pt;
	font-weight:		bold;
	display:			block;
}

/*
 * 
 */
.input_form_explanat{
	font-size:			9pt;
	display:			block;
	margin-top:			10px;
	color:				#999;
}

/*
 * 
 */
.input_form_value{
	padding:			20px 0px 20px 0px;
}

/*
 * 
 */
.input_form_value select{
	min-width:			200px;
}

/*
 *
 */
.input_form_value label{
	border-bottom:       1px solid #666;
}

/*
 *
 */
.input_form_value textarea{
	width:100%;
	height:200px;
	resize:vertical;
}

#upload_file {
  	display:none;
}

/*
 * blockUIで回るアイコンのアニメーション
 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 600px){

	#toolbar {
		/*display:        none;*/
	}

	#action_button_panel{
		display: none !important;
	}
	
	#to_page_top{
		bottom: 		70px;
	}
	
	.input_form_list {
		border:			none;
		padding:		10px 10px 10px 10px;
		width: 			calc(100vw -17px);
		min-height:		100vh;
	}
	
	.input_form_container{
		padding:			10px 10px 10px 10px;
	}
	
	.input_form_title{
		font-size:			12pt;
	}
}
/*
 * スマホサイズの場合、ボトムに余白を作成する
 */
@media screen and (max-width: 480px){

	main{
		padding-bottom:75px;
	}
}

