@charset "UTF-8";
/* "@(#) $Id: common_style_tag.css,v 1.4 2020/12/14 08:42:20 vic25 Exp $" */
/* ========================================================================== */
/* ファイル名		：	common_style_tag.css								  */
/* ファイル内容		：	共通タグスタイル定義								  */
/* 作成				：	2012/04/02 M.F										  */
/* ========================================================================== */

*:not(br) {
	margin:0;
	line-height:1.8em;
	box-sizing:border-box;
}

*:before, *:after {
	box-sizing:border-box;
}

html {
	height:100%;
	color:#333;
}

body {
	background-color:#EDF1FA;
    height:100%;
	margin:0px;
	color:#333;
}

form {
	margin:0;
}

table {
	border:none;
	border-collapse:collapse;
}

td {
	padding:0px;
	margin:0px;
	word-break:break-all;
	word-wrap:break-word;
}

input[type=text], [type=password] {
	padding-left:10px;
	padding-right:30px;
	padding-top:5px;
	padding-bottom:5px;
	color:#495057;
	background-color:#fff;
	border:1px solid #ced4da;
	border-radius:5px;
	height:35px;
}

input[type=number] {
	padding-left:10px;
	padding-right:5px;
	padding-top:5px;
	padding-bottom:5px;
	color:#495057;
	background-color:#fff;
	border:1px solid #ced4da;
	border-radius:5px;
	height:35px;
}

input[type=text]:focus {
	outline: none;
	border:1px solid #39C494;

}

input[type=password]:focus {
	outline: none;
	border:1px solid #39C494;

}

input[type=number]:focus {
	outline: none;
	border:1px solid #39C494;

}

input[type=file] {
	padding:10px;
	border-radius:3px;

}

/* ここのbackgroundを変える	*/
select {
	padding-left:10px;
	padding-right:30px;
	padding-top:4px;
	padding-bottom:4px;
	color:#495057;
	background-color:#fff;
	border:1px solid #ced4da;
	border-radius:5px;
}
select::-ms-expand {
	display:none;
}

select:focus {
	outline:none;
	border:1px solid #39C494;
}

select[size="1"] {
	height:35px;
	background-image:url('../fonts/fontawesome/svgs/solid/chevron-down.svg');
	background-repeat:no-repeat;
	background-size:10px 30px;
	background-position:right 10px center;
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
}

button {
	display:			inline-block;
	text-align:			center;
	background-color:	#e7e7e7;
	height:				20px;
	border:				1px solid #adadad;
	cursor:				pointer;
	border-radius:		3px;
	box-sizing:			border-box;
	line-height:		14px;
	color:				#333;
	box-sizing:			border-box;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

/* ブラウザ依存対応 ie8/ie9/ie10 */
.ie7 button {
	line-height:		normal;
}
.ie8 button {
	line-height:		normal;
}
.ie9 button {
	line-height:		normal;
}
.ie10 button {
	line-height:		normal;
}

span {
	padding:			0px;
	margin:				0px;
	word-break:			break-all;
	word-wrap:			break-word;
	line-height:		1.0;
}
/* ブラウザ依存対応 ie8/ie9/ie10 */
.ie7 span {
	line-height:		normal;
}
.ie8 span {
	line-height:		normal;
}
.ie9 span {
	line-height:		normal;
}
.ie10 span {
	line-height:		normal;
}

div {
	padding:			0px;
	margin:				0px;
	word-break:			break-all;
	word-wrap:			break-word;
	line-height:		1.0;
}
/* ブラウザ依存対応 ie8/ie9/ie10 */
.ie7 div {
	line-height:		normal;
}
.ie8 div {
	line-height:		normal;
}
.ie9 div {
	line-height:		normal;
}
.ie10 div {
	line-height:		normal;
}

img {
	border:				none;
}

textarea {
	color:#495057;
	background-color:#fff;
	border:1px solid #ced4da;
	border-radius:5px;
	resize:vertical;
	padding:5px;
}

textarea:disabled {
	background-color:#dddddd;
	opacity:0.5;
}

a:link {
	text-decoration:	none;
	color:				#0033ff;
}

a:hover {
	text-decoration:	underline;
	color:				#0033ff;
}

a:active {
	color:				#ff0000;
}
a:visited {
	color:				#0033ff;
}

li {
	list-style:none;
}
