@charset "UTF-8";
/* CSS Document */

#modalMailAddressInput {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.5);
}

#mailAddressInput .header {
	height: 45px;
}

#modalMailAddressInput h2 {
	font-size: 20px;
	margin-top: 10px;
	margin-left: 15px;
	float: left;
}

#modalMailAddressInput #mailAddressInput_messageArea {
	width: 65%;
	margin-top: 12px;
	margin-left: 10px;
	float: left;
}

#modalMailAddressInput .body {
	position: relative;
	padding: 5px 30px;
	clear: both;
}

#modalMailAddressInput .body table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 2px;
}

#modalMailAddressInput .body th, #modalMailAddressInput .body td {
	text-align: left;
	padding: 5px 10px;
}

#modalMailAddressInput .body th {
	width: 180px;
	border-left: solid 2px #888;
	background-color: #888;
	color: #fff;
}

#modalMailAddressInput .body td {
	border-bottom: solid 1px #ccc;
}

#modalMailAddressInput .body td input[type='text'] {
	width: 100%;
	box-sizing: border-box;
}

#modalMailAddressInput .body th.error, #modalMailAddressinput .body td.error
{
	background: #f00;
}

#mailAddressInput {
	visibility: hidden;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 50%;
	height: 35%;
	min-height: 290px;
	min-width: 700px;
	margin: auto;
	background: #e8e8e8;
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.2s cubic-bezier(0, .6, .4, 1.2);
}

#mailAddressInput.act {
	transition: all 0.4s cubic-bezier(0, .6, .4, 1.2);
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

#mailAddressInput .footer {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: #9e9e9e;
	padding: 15px;
	text-align: right;
}

#mailAddressInput .btn {
	width: 145px;
	margin-left: 10px;
}

/*
 * 確認ダイアログ
 */
.confirmDialog {
	z-index: 10000 !important;
}

