@charset "utf-8";

/*------------------------------
	content
------------------------------*/
.visual{
	background-image: url("/img/visual_works.jpg");
	background-position: center center;
}

section#result {
	background-color:#f5e8e6;
}

#result h1 {
	position: relative;
	margin-bottom: 60px;
	color: #222;
}

#result h1:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 60px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #A51F24;
	border-radius: 2px;
}


/*------------------------------
	options
------------------------------*/
#options {
	margin: 0 auto 20px;
	width: 900px;
	overflow: hidden;
}

#options ul {
	box-sizing: border-box;
	list-style: none;
	overflow: hidden;
}

#options ul li {
	margin: 0;
	box-sizing: border-box;
	float: left;
}

#options .mode {
	margin-top: 30px;
}

#options .mode li:not(:last-child)::after {
	content: "/";
	margin: 0 10px;
}

#options .types {
	width: 100000px;
	height: 40px;
	margin: 15px 0 0;
}

#options .types li {
	margin: 0 10px;
	padding: 0 15px;
	height: 100%;
	line-height: 40px;
	border-radius: 10px;
	background-color: #ccc;
	cursor: pointer;
}

#options .types li.now {
	background-color: #f5d4a9;
}

#options .types li:hover {
	opacity: 0.6;
}

#options .types li:first-child {
	margin-left: 0;
}
#options .types li:last-child {
	margin-right: 0;
}

#options .arrow {
	position: absolute;
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	cursor: pointer;
}

#options .arrow:hover {
	opacity: 0.5;
}

#options .arrow_left {
	margin: 11px 0 0 -35px;
}
#options .arrow_right {
	margin: 11px 0 0 910px;
}

/*------------------------------
	result_list
------------------------------*/

/* 共通 */
#result_list {
	width: 1000px;
	margin: auto;
	list-style: none;
	overflow: hidden;
}

#webresult #result_list {
	display: flex;
	flex-wrap: wrap;
}

#result #result_list ul {
	display: flex;
	flex-wrap: wrap;
}

#result_list li {
	display: block;
	width: 48%;
	min-height: 300px;
	margin: 0 1% 20px;
	padding: 15px 20px;
	box-sizing: border-box;
	text-align: center;
	border: solid 1px #ccc;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
	float: left;
}

#webresult #result_list li {
	width: 325px;
	margin: 0 0 12px 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
	border-radius: 0;
}

#webresult #result_list li+li {
	margin-left: 12px;
}

#webresult #result_list li:nth-child(3n+1){
	margin-left: 0;
}


#result_list li .texts {
	margin-top: 10px;
	padding: 0 6px;
	text-align: left;
}
#result_list li p.image {
	text-align: center!important;
}

#result_list li h3 {
/*	height: 28px;
	overflow: hidden;*/
	line-height: 1.5em;
}

#webresult #result_list li h3 {
	font-size: 15px;
	margin-bottom: 10px;
}


#result_list li .image {
	display: table;
	width: 100%;
	height: 168px;
}

#result_list li a {
	display: table-cell;
	vertical-align: middle;
}

#webresult #result_list li a{
	display: block;
	min-height: 300px;
	height: 100%;
	line-height: 1.5em;
	padding: 20px 5px;
	color: #000;
	font-size: 14px;
	box-sizing: border-box;
	border: 2px solid #fff;
}

#webresult #result_list li a:hover,
#webresult #result_list li a:focus{
	border: 2px solid #A51F24;
}


#result_list li a img {
	width: auto;
	max-width: 100%;
	max-height: 168px;
}

/* result */
#result_list h2 {
	width: 98%;
	color:#fff;
	box-sizing: border-box;
	background-color: #a51f24;
	margin: 0 1% 15px;
	padding: 3px 0 3px 15px;
}

#result_list ul {
	width: 100%;
	margin: 0 0 20px;
	overflow: hidden;
}