@charset "Shift_JIS";

@import url("base.css");

/* Selectbox Styles
=================================*/

a.sctble_display {
	border: solid #999 1px;

}

	a.sctble_display span {
		padding: 0 22px 0 7px;
		height: 22px;
		width: 80px;
		background: #fff url(icon_select.gif) no-repeat right 0;
		line-height: 22px;
	}
	a.sctble_display:hover span { background-position: right -21px }
	a.sctble_focus span { background-position: right -42px !important }
	
/* Pulldown Mat (Basis)
=================================*/

div.sctble_mat {}

div.sctble_mat dl {}

div.sctble_mat a {
	padding-right: .7em;
	color: #407cb3;

}

div.sctble_mat a.selected {
	color: #333;
	text-decoration: none;
	cursor: default;
}

/* 必須項目
=================================*/
.contact_a	{
	FONT-SIZE: 11px;
	color: #fff;
	background: #69A0D8;
	padding: 2px;

	text-align: center;
}
.contact_a2	{
	border-radius:5px;
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}

/* 必須項目（エラー画面）
=================================*/
.contact_c	{
	FONT-SIZE: 11px;
	color: #fff;
	background: #cc0000;
	padding: 2px;

	text-align: center;
}
.contact_c2	{
	border-radius:5px;
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}
/* 任意項目
=================================*/
.contact_b	{
	FONT-SIZE: 11px;
	color: #fff;
	background: #3f61bc;
	border:1px solid #3f61bc; 
	padding: 1px;

	text-align: center;
}
.contact_b2	{
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}

/*
 * (fushi)2023/02/10 
 */
select {
  height:1.5rem !important;
}
input[type=text]  {
  height:1.5rem !important;
}

/*
 * 入力項目の枠
 */
.form_grid ul.row {
	display:table-row;
}

.form_grid ul.row li {
	border-top:#ddd 1px solid;
	display:table-cell;
	vertical-align:middle;
	padding:8px 15px;
	position:relative;
}

.form_grid ul.last li {
	border-bottom:#ddd 1px solid;
}

.form_grid ul.row li:first-child {
	background-color:#edf5f8;
	width:200px;
}

.form_grid ul.row li:nth-child(2) {
	width:600px;
	background-color:#fff;
}

.form_grid ul.row li input[type="text"] , .form_grid ul.row li textarea {
	width:560px;
}

/* [必須] */
.form_required {FONT-SIZE: 10px;COLOR: #fff;padding:2px 8px 1px 8px;background-color:#2998da;font-weight:normal; text-align : center;border-radius: 5px 5px 5px 5px;text-decoration:none;margin-left:5px;border:none;float:right;}

/* エラーの吹き出し */
.error {
	position: relative;
	display: inline-block;
	margin: 1.5rem 0;
	padding: 17px 10px;
	font-size: 13px;
	border-radius:5px;
	background: #ce2e27;
}

.error:before{
	content: "";
	position: absolute;
	top: 0%;
	left: 50%;
	margin-left: -15px;
	margin-top: -10px;  /* 調整 */
	border: 5px solid transparent;   /* 調整 */
	border-bottom: 5px solid #ce2e27;/* 調整 */
}

.error {
	margin: 0;
	padding: 5px 10px 5px 10px;
	text-align: center;
	color: #fff;
}

/*----------------------------------------------------------------------*/
/* 処理中表示      														*/
/*----------------------------------------------------------------------*/
/* loader(＊)。画面中央に表示  */
#loader { 
	width: 100px; 
	height: 100px; 
	display: none; 
	position: fixed; 
	top: 50%; 
	left: 50%; 
	margin-top: -50px; /* heightの半分 */ 
	margin-left: -50px; /* widthの半分 */ 
	z-index: 100; 
}
/* loader(＊)背景 */
#fade { 
	width: 100%; 
	height: 100%; 
	display: none; 
	background-color: #FFFFFF; 
	position: absolute; 
	top: 0px; 
	left: 0px; 
	z-index: 50; 
	opacity:0.7; 
}
