@charset "utf-8";

/*====================================================================
　研究成果・実績
====================================================================*/

main{
  background-color: #B0DBCA;
  border-top: 1px solid #B0DBCA;
  padding-top: 14px;
}

/*
検索条件設定セクション
---------------------------------------------------------*/
.searchArea {
	margin: 12px 0 40px 0;
}

main .pageLeadText {
	margin-bottom: 0;
}

/*
searchArea
---------------------------------------------------------*/
main .searchArea h2 {
	position: relative;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0;
  text-align: left;
  padding-bottom: 0;
  margin: 0 0 18px;
}

main .searchArea h2:before { display: none; }
main .searchArea h2:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 2px solid #008654;
	width: 100%;
	margin: 0;
}

.searchArea .title {
	position: relative;
	display: block;
	font-size: 1.4rem;
	line-height: 1.357;
	letter-spacing: 0;
  margin: 3px 0 0;
	padding: 0 0 0 10px;
}
.searchArea .title:before {
	content: "";
	display: block;
	background-color: #008654;
	width: 4px;
	height: 15px;
	position: absolute;
	top: 3px;
	left: 0;
}

@media screen and (min-width: 769px) {
	.searchArea .title {
		width: 130px;
		flex-shrink: 0;
	}
	.searchArea .genreSearch .keywordArea:nth-child(2) .title {
		width: 115px;
	}
	body.english .searchArea .title {
		width: 110px;
	}
	.keywordArea {
		display: flex;
	  margin: 5px 0;
	}
	.searchArea .genreSearch {
		display: flex;
		justify-content: space-between;
	}
	.searchArea .genreSearch .keywordArea {
		width: calc(50% - 10px);
	}
}

@media screen and (max-width: 768px) {
	.keywordArea {
	  margin: 15px 0;
	}
	.searchArea .title {
		margin-bottom: 7px;
	}
	.keywordArea select {
		width: 100%;
	}
	.categoryArea ul li {
		width: 100%;
		float: none;
	}
}

/* label */
.searchArea form label {
	margin-right: 7px;
}

/* select, textarea */
.sortArea select, 
.searchArea select, 
.searchArea textarea {
	margin: 3px 0;
	padding: 3px;
	background: #fff;
	border: 1px solid #b7b7c0;
}
/* input */
.searchArea input {
	margin: 3px 0;
	padding: 4px 10px;
	background: #fff;
	border: 1px solid #b7b7c0;
	vertical-align: top;
}
@media screen and (min-width: 769px) {
	.keywordArea input,
	.keywordArea select {
		width: calc(100% - 130px);
		align-self: flex-start;
	}
	.keywordArea select#searchJournal {
		width: calc(100% - 115px);
	}
	body.english .keywordArea input,
	body.english .keywordArea select {
		width: calc(100% - 110px);
	}
}

@media screen and (max-width: 768px) {
	.searchArea input {
		width: 100%;
	}
}

/* checkbox */
.searchArea input[type="checkbox"] { display: none;}

.searchArea label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
}

.searchArea label::before {
	position: absolute;
	content: '';
	top: 1em;
	left: 0;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background: #fff;
	border: 1px solid #b7b7c0;
}

.searchArea input[type="checkbox"]:checked + label::after {
	position: absolute;
	content: '';
	top: 7px;
	left: 3px;
	width: 13px;
	height: 5px;
	border-left: 3px solid #008654;
	border-bottom: 3px solid #008654;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* searchBtn */
.btnArea {
	display: flex;
	justify-content: center;
	margin: 15px 0 5px 0;
}
.searchBtn input,
.resetBtn input {
  display: block;
	margin: 0;
	padding-top: 8px;
	padding-bottom: 7px;
	color: #fff;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	text-decoration: none;
	border: 2px solid #008654;
	text-align: center;
	border-radius: 20px;
	font-size: 1.4rem;
	box-sizing: border-box;
	height: 100%;
}

.searchBtn input:hover,
.resetBtn input:hover {
  opacity: 0.9;
}

.searchBtn input {
	background-image: url(../img/common/ico_search.png);
	background-repeat: no-repeat;
	background-position: 15px 50%;
	background-color: #008654;
}

.resetBtn {
	margin-left: 10px;
}
.resetBtn input {
	padding-left: 20px;
	padding-right: 20px;
	color: #008654;
	background-color: #d7ede4;
}

@media screen and (min-width: 769px) {
	.searchBtn input {
		background-position: 15px 50%;
		padding-left: 55px;
		padding-right: 55px;
	}
	.searchBtn input,
	.resetBtn input {
		min-width: 240px;
	}
	body.english .searchBtn input,
	body.english .resetBtn input {
		min-width: 200px;
	}
}

@media screen and (max-width: 768px) {
	.searchBtn input {
		background-position: 10px 50%;
		padding-left: 45px;
		padding-right: 45px;
	}
	.searchBtn,
	.resetBtn {
		min-width: fit-content;
		width: calc(50% - 5px);
		max-width: 200px;
	}
}

/*
resultArea
---------------------------------------------------------*/

main .resultArea {
	position: relative;
	margin-bottom: 45px;
}

.sortArea {
	position: absolute;
	top: 20px;
	right: 20px;
}

.sortArea strong {
	padding-right: 5px;
	font-size: 100%;
}
@media screen and (max-width: 1060px) {

}
@media screen and (max-width: 1060px) {
	.sortArea {
		top: 20px;
		right: 0;
	}
}

@media screen and (max-width: 640px) {
	.sortArea {
		position: static;
		margin: -15px 0 20px 0;
		text-align: right;
	}
}

/* resultUnit */
main #resultUnit li {
	position: relative;
	margin: 0 20px 20px 0;
	padding-bottom: 30px;
	width: 320px;
	float: left;
	background-color: #fff;
	box-shadow: 0 0 2px #d5d5d5;
	box-sizing: content-box;
	list-style: none;
}

main #resultUnit li a{ text-decoration: none;}

main #resultUnit li:nth-child(3n) { margin: 0 0 20px 0;}

main #resultUnit li a .imgCover {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 170px;
	background: -moz-linear-gradient(bottom, rgba(0,0,0,0.1),  rgba(0,0,0,0) 30%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.1)), color-stop( 30%, rgba(0,0,0,0)));
	background: -o-linear-gradient(bottom, rgba(0,0,0,0.1),  rgba(0,0,0,0) 30%);
	background: linear-gradient(bottom, rgba(0,0,0,0.1),  rgba(0,0,0,0) 30%);
}

main #resultUnit li .result_pic {
	display: block;
	height: 170px;
	overflow: hidden;
}
		
main #resultUnit li .result_pic img {
	width: 100%;
	height: auto;
	transition: all .3s;
}

main #resultUnit li .result_pic a:hover img {
	color: #fff;
	opacity: 0.7;
}
	
main #resultUnit li a:hover {
	text-decoration: none;
}

main #resultUnit li p {
	margin: 0;
	padding: 0 15px 10px 15px;
	color: #313131;
	font-size: 90%;
}

main #resultUnit li .result_date {
	display: inline-block;
	margin: 10px;
	padding: 3px 10px;
	font-size: 80%;
	background-color: #ececef;
}

main #resultUnit li .result_title {
	margin: 0 0 5px 0;
	padding: 0 15px;
	font-size: 100%;
	line-height: 1.5;
	background: none;
	border: none;
}
main #resultUnit li .result_title sup,
main #resultUnit li .result_title sub {
	font-size: 1.2rem;
}

main #resultUnit li a:hover .result_title { text-decoration: underline; }

main #resultUnit li a .new {
	position: absolute;
	top: 10px;
	left: -7px;
	z-index: 2;
}

main #resultUnit li a .new img {
	width: 70px;
	height: 30px;
}

main #resultUnit li .more {
	position: absolute;
	bottom: 0;
	padding: 3px 0;
	color: #fff;
	font-size: 85%;
	width: 100%;
  min-width: 100%;
	background-color: #008654;
	text-align: center;
}

main #resultUnit li .more span {
	padding: 0 0 0 15px;
	background: url(../img/common/ico_arrow_white.svg) no-repeat left center / 7px 7px;
}

main #resultUnit li a:hover .more span { opacity: 0.6; }

@media screen and (min-width: 1061px) {
  main #resultUnit {
    width: 1000px;
    margin: auto;
  }  
}
@media screen and (max-width: 1060px) {
  
  main #resultUnit li {
		margin: 0 4% 4% 0;
		width: 48%;
	}
	
  main #resultUnit li:nth-child(3n) { margin: 0 4% 4% 0; }

  main #resultUnit li:nth-child(2n) {
		margin: 0 0 4% 0;
		float: right;
	}

  main #resultUnit li a .imgCover { display: none; }
}
@media (max-width: 640px) {
  main ul#resultUnit li {
		margin: 0 0 20px 0;
		width: 100%;
		height: fit-content!important;
	}
	main ul#resultUnit li .result_pic {
		height: 170px;
		/*height: calc(17/32*100%);*/
	}
}
