@charset "UTF-8";

/* CSS Document */

/*====================================

	press_list

====================================*/ 

.press_list {
	margin-bottom: 40px;
}
.press_list ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.press_list ul li {
	width: 100%;
	list-style: none;
	margin-bottom: 10px;
}
.press_list ul li a {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	border: 1px solid #d6d6d6;
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	padding: 20px;
	text-decoration: none;
	color: #333;
	transition-duration: 0.3s;
}
.press_list ul li a:hover {
	border-radius: 4px;
	background: #d6d6d6;
}
.press_list ul li a .ph {
	width: 30%;
}
.press_list ul li a .text {
	width: 65%;
}
.press_list ul li a .text h6 {
	font-size: 130%;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
	margin-bottom: 10px;
}