@charset "utf-8";
.modal {
	width: 570px;
	position: fixed;
	background-color: #FFF;
	display: none;
	z-index: 2;
	border: 3px solid #DFDFDF;
}

.modal_title {
	background-color: #F3F3F3;
	border-bottom: 3px solid #D7D7D7;
	font-weight: bold;
	font-size: 18px;
	height: 43px;
	line-height: 66px;
	background-repeat: no-repeat;
	background-position: 45px center;
	padding: 0 0 0 80px;
	margin-bottom: 8px;
}

.modal_close {
	background-image: url(../../img/common_pc/icon_close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 30px;
	height: 30px;
	display: block;
	float: right;
	margin: 6px 15px 0 0;
}

.modal_contents {
	padding: 0 20px 0 20px;
	/*font-size: 14px;*/
}

.modal h2 {
	font-size: 16px;
	font-weight: bold;
	padding: 5px 0 12px 0;
}

.modal_contents p {
	clear: both;
	margin: 0 0 8px 0;
}

.modal_bottom {
	padding: 20px 35px;
	text-align: right;
}

.modal_bottom .btn_bulk {
	float: left;
}

.modal_notification {
	width: 800px;
	z-index: 4;
}
.modal_notification .modal_title {
	padding-left: 45px;
	background-image: none;
}
.modal_notification .modal_contents {
	font-size: 15px;

}
.modal_notification .modal_contents .title{
	line-height: 30px;
}
.modal_notification .modal_contents .msg{
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 49px;
	clear: both;
}
.modal_notification .modal_contents .read_checkbox{
	padding-top: 15px;
}

.modal_notification .icon{
	height: 30px;
	width: 30px;
	float: left;
	margin-right: 5px;
}

.modal_notification .icon.type1{
	background: url(../../img/icon/icon_info.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px;
}

.modal_notification .icon.type2{
	background: url(../../img/icon/icon_error.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px;
}

.modal_notification .modal_bottom {
	text-align: center;
}

.modal_error {
	width: 400px;
	text-align: center;
	z-index: 4
}
.modal_error .modal_title {
	background-image: none;
}
.modal_error .modal_contents {
	font-size: 15px;
}
.modal_error .modal_bottom {
	text-align: center;
}
.modal_info {
	width: 400px;
	text-align: center;
	z-index: 4
}
.modal_info .modal_title {
	background-image: none;
}
.modal_info .modal_contents {
	font-size: 15px;
}
.modal_info .modal_bottom {
	text-align: center;
}

/* --- 以下 CSS版のモーダル用 --- */

.modal-css {
  display: none;
  position: fixed;
  background-color: #FFF;
  width: 570px;
  top:50%;
  left:50%;
  transform: translateY(-50%) translateX(-50%);
  border: 3px solid #DFDFDF;
  z-index: 2;

}

.modal-css_close {
	background-image: url(../../img/common_pc/icon_close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 30px;
	height: 30px;
	display: block;
	float: right;
	margin: 6px 15px 0 0;
	z-index: 2;
}

.modal-css:target {
  justify-content: center;
  align-items: center;
}