@charset "UTF-8";

/*--------------------------
privatePlacementList.css
----------------------------*/
.privatePlacementList_sec1{
	width: 94%;
	margin:auto;
	max-width: 1100px;
}

.privatePlacementList_ttl{
	font-size: 19px;
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 3px 1px;
}

.privatePlacementList_wrap{
	padding: 30px;
	background-color: #fff;
	box-shadow: 0px 3px 1px rgba(0,0,0,.5);
}

.privatePlacementList_search{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.privatePlacementList_search ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.privatePlacementList_search_name{
	margin-right: 5px;
}

.privatePlacementList_search_ym{
	margin-right: 5px;
	margin-left: 5px;
}

.privatePlacementList_search_junior{
	padding: 10px 0;
	min-width: 175px;
}

.privatePlacementList_add{
	margin-right: 5px;
}

.privatePlacementList_mail{
	margin-left: 5px;
}

.privatePlacementList_search ul li span{
	font-size: 14px;
    color: #919191;
}

.privatePlacementList_search ul li select{
	border:1px solid #ddd;
	padding: 5px;
	height: 35px;
	border-radius: 3px;
}

.privatePlacementList_search ul li input[type="text"]{
	border:1px solid #ddd;
	padding: 5px;
	height: 35px;
	border-radius: 3px;
}

.privatePlacementList_search ul li input[type="checkbox"]{
	width: 14px;
	height: 14px;
	margin-left: 5px;
	margin-bottom: 3px;
}

.privatePlacementList_search_btn button{
	height: 35px;
    background-color: #585858;
    width: 60px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    transition: .3s;
    font-size: 15px;
    margin: 10px;
    margin-right: 20px;
}

.privatePlacementList_search_btn button:hover{
	opacity: .8;
}

.privatePlacementList_add a{
	display: flex;
    align-items: center;
    justify-content: center;
	background-color: #ffa033;
	color: #fff;
	height: 35px;
	width: 60px;
	border-radius: 3px;
	transition: .3s;
	font-size: 15px;
}

.privatePlacementList_add a:hover{
	opacity: .8;
}

.privatePlacementList_mail a,
.privatePlacementList_mail button {
	display: flex;
    align-items: center;
    justify-content: center;
	background-color: #33aeff;
	color: #fff;
	height: 35px;
	width: 130px;
	border-radius: 3px;
	transition: .3s;
	font-size: 15px;
}

.privatePlacementList_mail a:hover,
.privatePlacementList_mail button:hover {
	opacity: .8;
}

.privatePlacementList_table table{
	width: 100%;
}

.privatePlacementList_table table tr{
	border-bottom: 1px solid #ececec;
}

.privatePlacementList_table table tr:nth-child(2n){
	background-color: #edf5ff;
}

.privatePlacementList_table table tr td{
	padding: 10px;
	vertical-align: middle;
}

.privatePlacementList_table table tr td button{
	background-color: #376bb3;
    font-size: 15px;
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    transition: .3s;
}

.privatePlacementList_table table tr td button:hover{
	opacity: .8;
}

.privatePlacementList_table table tr th{
	padding: 10px;
}

@media screen and (max-width:1024px) {
	.privatePlacementList_search{
		flex-wrap: wrap;
	}

	.privatePlacementList_search ul{
		margin: 10px 0px;
	}
}

@media screen and (max-width:768px) {
	.privatePlacementList_table table tr th{
		display: none;
	}

	.privatePlacementList_table table tr{
		padding: 15px 0px;
    	display: block;
	}

	.privatePlacementList_table table tr td{
		display: inline-block;
	}
	.privatePlacementList_table table tr td:nth-child(1):before{
		font-weight: bold;
	}
	.privatePlacementList_table table tr td:nth-child(2):before{
		content: "募集名:";
		font-weight: bold;
	}
	.privatePlacementList_table table tr td:nth-child(3):before{
		content: "対象日:";
		font-weight: bold;
	}
	.privatePlacementList_table table tr td:nth-child(4):before{
		content: "販売期間:";
		font-weight: bold;
	}
	.privatePlacementList_table table tr td:nth-child(5){
		width: 100%;
	}

	.privatePlacementList_table table tr td button{
		width: 100%;
		height: 40px;
	}

	.privatePlacementList_search ul:first-child {
		flex-wrap: wrap;
	}
	.privatePlacementList_search_name{
		width: 100%;
		margin-bottom: 10px;
	}

	.privatePlacementList_search_ym{
		margin: 0px;
		margin-right: 10px;
	}
}