@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;
	top:		2px;
	left:		5px;
	font-width:	bold;
	color:		red;
}

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;
}

#upload_file {
  	display:none;
}

.version_line{
	width:      		calc(100vw - 20px);
	padding-top:		5px;
   	z-index:			1;
   	position: 			-webkit-sticky;
	position:			sticky;
	left:       		0px;
	/*
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .5);
	*/
}

/*
 * バージョン（最終更新日）表示エリア
 */
.version {
	display:		block;
	width:			calc(100% - 20px);
	text-align:		right;
	font-size:		10pt;
	color:			#999;
	margin:			10px 10px 5px 10px;

}

/*
 * リリースノート
 */
.version_note {
	display:		block;
	width:			calc(100% - 20px);
	text-align:		right;
	font-size:		10pt;
	//color:			#999;
	margin:			15px 10px 5px 10px;

}

/*
 * blockUIで回るアイコンのアニメーション
 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 600px){

	#action_button_panel{
		display: none !important;
	}
	
	#to_page_top{
		bottom: 		70px;
	}
}
/*
 * スマホサイズの場合、ボトムに余白を作成する
 */
@media screen and (max-width: 480px){

	main{
		padding-bottom:75px;
	}
}

