@charset "utf-8";
/*--京research.css--*/
/* ##########SP########## */
/*トップ*/
.research_index_catch_box{
	box-sizing: border-box;
	position: absolute;
	top: 15vw;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	height: 35vw;
	padding-left: 8vw;
}

	.research_index_catch_box p{
		font-weight: bold;
	}

	.research_index_catch_box .fig{
		height: 35vw;
	}

		.research_index_catch_box .fig img{
			height: 100%;
			width: auto;
		}

.research_index_intro_box{
	margin-bottom: 2em;
	margin-top: 26vw;
}

	.research_index_intro_box p{
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 1.15em;
		font-weight: bold;
		color: #333;
	}

.research_list{
	margin:0 5vw 2vw 5vw;
}

	.research_list ul{
		counter-reset: r_num;
	}

		.research_list ul li{
			margin: 0 0 8vw 0;
			position: relative;
		}

			.research_list ul li a{
				display: flex;
				text-decoration: none;
				padding: 3vw 0 0 0;
			}

			.research_list ul li .research_name{
				box-sizing: border-box;
				display: block;
				width: 43vw;
				font-size: 0.9em;
				padding: 2vw 0 2vw 2vw;
				background: #1946ab;
				color: #ffffff;
				position: absolute;
				top: 0;
				left: -2vw;
				z-index: 9;
			}

			.research_list ul li:nth-child(5n+1) .research_name{
				background: #1946ab;
			}

			.research_list ul li:nth-child(5n+2) .research_name{
				background: #e60a85;
			}

			.research_list ul li:nth-child(5n+3) .research_name{
				background: #ff6433;
			}

			.research_list ul li:nth-child(5n+4) .research_name{
				background: #3dab32;
			}

			.research_list ul li:nth-child(5n) .research_name{
				background: #0092ab;
			}

			.research_list ul li .research_image{
				display: block;
				position: relative;
				width: 43vw;
			}

			.research_list ul li a .research_image:before{
				box-sizing: border-box;
				content: "";
				width: 100%;
				height: 100%;
				background:rgba(0,0,0,0.2);
				position: absolute;
				top: 0;
				left: 0;
				z-index: 5;
				transition: .3s all ease;
				border: 0 solid rgba(0,0,0,0);
			}

			.research_list ul li a:hover .research_image:before{
				background:rgba(0,0,0,0);
				border: 6px solid rgba(0,0,0,0.5);
			}



			.research_list ul li:nth-child(5n+1) a:hover .research_image:before{
				border-color: #1946ab;
			}

			.research_list ul li:nth-child(5n+2) a:hover .research_image:before{
				border-color: #e60a85;
			}

			.research_list ul li:nth-child(5n+3) a:hover .research_image:before{
				border-color: #ff6433;
			}

			.research_list ul li:nth-child(5n+4) a:hover .research_image:before{
				border-color: #3dab32;
			}

			.research_list ul li:nth-child(5n) a:hover .research_image:before{
				border-color: #0092ab;
			}

			.research_list ul li .research_image:after{
				font-family: 'arial';
				font-style: italic;
				font-size: 10vw;
				color: #ffffff;
				position: absolute;
				bottom: 1vw;
				left: 1vw;
				z-index: 10;
				counter-increment: r_num;
				content: counter(r_num);
			}

			.research_list ul li a:hover .research_image:after{
				text-shadow: 2px 2px 0 rgba(0,0,0,0.3), -2px -2px 0 rgba(0,0,0,0.3), -2px 2px 0 rgba(0,0,0,0.3), 2px -2px 0 rgba(0,0,0,0.3);
			}

			.research_list ul li .research_text{
				box-sizing: border-box;
				display: block;
				line-height: 1.7;
				color: #000;
				width: calc(100% - 43vw);
				padding: 0.5em 0 0 1em;
				font-weight: bold;
			}

/*##########詳細ページ用##########*/
.research_catch_image{
	box-sizing: border-box;
	position: absolute;
	z-index: 2;
	top: 19vw;
	right: 3vw;
	width: 32vw;
	border: 3px solid #fff;
	box-shadow: 3px 3px 0 0 rgba(0,0,0,0.15);
	border-radius: 10px;
	overflow: hidden;
	transition: .3s all ease;
	opacity: 0;
	transform: translateX(10px);
	display: none;
}

	.research_catch_image.show{
		opacity: 1;
		transform: translateX(0);
	}

	.research_catch_image img{
		max-width: 100%;
		height: auto;
	}


.research_index_list{
	background: #fafafa;
	line-height: 1.4;
	margin-bottom: 2em;
	padding: 4vw;
	font-size: 0.9em;
	position: relative;
	z-index: 2;
}

	.page_content_box .box_inner .research_index_list ol{
		list-style: none;
		margin: 0;
		padding: 0;
	}

		.page_content_box .box_inner .research_index_list ol li{
			margin-bottom: 0.5em;
			padding-left: 1.2em;
			position: relative;
			margin-left: 0;
		}

			.page_content_box .box_inner .research_index_list ol li:before{
				font-family: FontAwesome;
				content:"\f111";
				position: absolute;
				top: 0.2em;
				left: 0;
				font-size: 0.8em;
				color: #1947a7;
			}

		.page_content_box .box_inner .research_index_list ol li:last-child{
			margin-bottom: 0;
		}


			.page_content_box .box_inner .research_index_list ol li a{
				color:#222;
				text-decoration: none;
			}

			.page_content_box .box_inner .research_index_list ol li a:hover{
				text-decoration: underline;
				background: none;
			}

.research_link_list{
	margin: 0 5vw;
	padding: 3vw 2vw 4vw;
	border-top: 1px dashed #000000;
	border-bottom: 1px dashed #000000;
	line-height: 1.4;
	font-size: 0.9em;
}

	.research_link_list ul{
		display: flex;
		flex-wrap: wrap;
	}

		.research_link_list ul li{
			width: calc( (100% - 3vw) / 2);
			border-bottom: 1px dotted #aaa;
			margin-right: 3vw;
		}

		.research_link_list ul li:nth-child(even){
			margin-right: 0;
		}

			.research_link_list ul li a{
				display: block;
				color: #000000;
				text-decoration: none;
				padding: 0.5em 0.5em 0.5em 1em;
				position: relative;
				transition: .3s all ease;
			}

			.research_link_list ul li a:hover{
				background: rgba(61,171,50,0.1);
			}

				.research_link_list ul li a:before{
					font-family: FontAwesome;
					content:"\f105";
					position: absolute;
					top: 0.5em;
					left: 0.3em;
					color: #3dab32;
				}



.b_research_title{
	display: none;
	/*
    width: 85vw;
    text-align: center;
    font-size: 0.9em;
    margin: 0 auto 12vw auto;
    color: #656565;
    line-height: 1.5em;
    padding-top: 5vw;
	*/
}

.back_link{
	font-size: 0.9em;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3em;
}

	.back_link a{
		text-decoration: none;
		color: #1947a7;
		display: block;
		padding: 0.7em 1em;
		position: relative;
	}

		.back_link a:before{
			font-family: FontAwesome;
			content:"\f104";
			font-size: 1.1em;
			margin-right: 0.5em;
			position: relative;
			display: inline-block;
			transition: .3s all ease;
		}

		.back_link a:hover:before{
			transform: translateX(-3px);
		}

		.back_link a:after{
			content: "";
			display: block;
			width: 100%;
			height: 0;
			border-top: 1px solid #1947a7;
			position: absolute;
			left: 0;
			bottom: 0;
			transition: .3s all ease;
			transform: scaleX(0);
			opacity: 0;
		}

		.back_link a:hover:after{
			transform: scaleX(1);
			opacity: 1;
		}

/*ipad*/
@media screen and (min-width:768px){
/*#####start#####*/
/*トップ*/
.research_index_catch_box{
	top: 80px;
	height: 200px;
	padding-left: 50px;
}
	
	.research_index_catch_box p{
		font-size: 1.1em;
	}
	
	.research_index_catch_box p br{
		display: none;
	}

	.research_index_catch_box .fig{
		height: 200px;
	}

.research_index_intro_box{
	margin-bottom: 2em;
	margin-top: 120px;
}

	.research_index_intro_box p{
		font-size: 1.3em;
	}

.research_list{
	margin:0 30px 2em;
}

	.research_list ul{
		display: flex;
		flex-wrap: wrap;
	}

		.research_list ul li{
			margin: 0 30px 30px 0;
			width: calc((100% - 30px) / 2);
		}

		.research_list ul li:nth-child(even){
			margin: 0 0 30px 0;
		}
			.research_list ul li a{
				padding: 1em 0 0 0;
				flex-direction: column;
			}

			.research_list ul li .research_name{
				width: 60%;
				padding: 0.6em;
				left: -10px;
			}

			.research_list ul li .research_image{
				width: 100%;
			}

			.research_list ul li .research_image:after{
				font-size: 2em;
				bottom: 0.5em;
				left: 0.5em;
			}

			.research_list ul li .research_text{
				width: auto;
				padding: 0.5em 0.5em 0 0.5em;
				line-height: 1.4;
			}

/*##########詳細ページ用##########*/
.research_catch_image{
	top: 110px;
	right: 30px;
	width: 240px;
}

.research_index_list{
	padding: 2em;
	margin-bottom: 3em;
}

.research_link_list{
	box-sizing: border-box;
	width: 90vw;
	margin: 0 auto;
	padding: 1.5em 1em 2em;
}

		.research_link_list ul li{
			width: calc( (100% - 60px) / 3);
			margin-right: 30px;
		}

		.research_link_list ul li:nth-child(even){
			margin-right: 30px;
		}
	
		.research_link_list ul li:nth-child(3n){
			margin-right: 0;
		}

/*#####end#####*/
}

/*PC*/
@media screen and (min-width:1024px), print{
/*#####start#####*/
/*トップ*/
.research_index_catch_box{
	box-sizing: border-box;
	top: 95px;
	left: 0;
	right: 0;
	margin: auto;
	padding-left: 150px;
	width: 1100px;
}

.research_index_intro_box{
	margin-bottom: 4em;
}

	.research_index_intro_box p{
		font-size: 1.6em;
	}

.research_list{
	margin:0 auto 2em;
	width: 900px;
}

		.research_list ul li{
			margin: 0 50px 50px 0;
			width: calc((100% - 50px) / 2);
		}

		.research_list ul li:nth-child(even){
			margin: 0 0 50px 0;
		}
		
			.research_list ul li .research_name{
				font-size: 1.1em;
				padding-top: 0.5em;
			}
	
			.research_list ul li .research_image:after{
				font-size: 3em;
				bottom: 0.2em;
				left: 0.2em;
			}

			.research_list ul li .research_text{
				font-size: 1.1em;
				padding: 0.7em 0.3em 0 0.3em;
			}
	
	
	
/*詳細ページ*/
.research_catch_image{
	top: 130px;
	right: calc(50% - 440px);
	width: 320px;
}

.research_index_list{
	padding: 1.5em;
	font-size: 0.94em;
	margin: 0 1em 3em;
}

.research_link_list{
	width: 940px;
}

.research_link_list ul li a {
	padding: 0.7em 0.5em 0.7em 1.3em;
}

	.research_link_list ul li a:before{
		top: 0.7em;
	}
/*#####end#####*/

	
}


/* ##########印刷用########## */
@media print{
	.research_index_catch_box .fig {
		height: 200px;
	}
	
	.research_index_catch_box {
		box-sizing: border-box;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		padding-left: 150px;
		width: 1100px;
		height: 200px;
	}
	
		.research_index_catch_box p {
			font-size: 1.1em;
		}
	
			.research_index_catch_box p br {
				display: none;
			}
	
	.research_index_intro_box {
		margin-top: 120px;
	}
	
	.research_link_list{
		margin: 0 auto;
	}
	
	.research_list ul {
		display: flex;
		flex-wrap: wrap;
	}
	
	.research_list ul li a {
		padding: 1em 0 0 0;
		flex-direction: column;
	}
	
	.research_list ul li .research_name {
		width: 60%;
		padding: 0.6em;
		left: -10px;
	}
	
	.research_list ul li .research_image {
		width: 100%;
	}
	
		.research_list ul li a .research_image:before{
			content: none;
		}
	
	.research_list ul li .research_text {
		width: auto;
	}
}