/* CSS Document */
#mainBlock{
	font-size: 1.7rem;
	line-height: 1.8;
}
.felx{
	display: flex;
	justify-content: center;
	align-items: center;
}
.content{
	padding: 0 20px;
}
.pdf:after{
	margin-left: 5px;
}
.crumb{
	font-size: 13px;
	margin: 0 0 44px;
	padding: 3px 0 0;
	text-align: left;
	max-width: 1240px;
	width: 100%;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.crumb{
		margin-bottom: 0;
	}
	
	.pdf:after{
		margin-left: 5px;
		width: 13px;
		height: 20px;
	}
}
@media screen and (max-width: 680px) {
	#mainBlock{
		font-size: 1.4rem;
	}
}
/*メインビジュアル
----------------------------------------------*/
.mainVisual{
	max-height: 347px;
	height: 50vh;
	background: url("../../img/mainVisual_ir.jpg") no-repeat center;
	background-size: cover;
}
@media screen and (max-width: 1500px) {
	.mainVisual{
		height: 56vw;
	}
}
@media screen and (max-width: 767px) {
	.mainVisual{
		background: url("../../img/mainVisual_ir_sp.jpg") no-repeat center;
		background-size: cover;
		height: 52.152vw;
		max-height: inherit;
	}
}

/*タブボタン
----------------------------------------------*/
.tab_btn_wrap {
	border-bottom: solid 1px #a8a8a8;
	position: relative;
	margin-bottom: 100px;
}
.tab_btn{
	padding: 0 20px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
	.tab_btn li{
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		font-weight: bold;
		font-size: 2.2rem;
		max-width: 240px;
		width: 20%;
		position: relative;
		transition: 0.5s ease;
		line-height: 1.2;
	}
		.tab_btn li a{
			padding: 20px;
			width: 100%;
			border-right: solid 1px #a8a8a8;
			text-decoration: none;
			height: 80%;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.tab_btn li:first-child a{
			border-left: solid 1px #a8a8a8;
			text-decoration: none;
		}
	
		.tab_btn li a:hover{
			text-decoration: underline #d0001b;
		}

/*
.tab_btn li::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: #d0001b;
	transform-origin: bottom center;
	transform: scaleY(0);
	transition: transform ease .3s;
}
	.tab_btn li:hover::before{
		transform: scaleY(1);
	}*/

.tab_btn li span{
	width: 100%;
	display: block;
	text-align: center;
}


.tab_btn li.btn_active{
	background: #d0001b;
}
.tab_btn li.btn_active a{
	color: #fff;
}

.tab_detail{
	display: none;
}
.tab_detail.active{
	display: block;
}

.tab_detail h2{
	font-size: 2.4rem;
	margin-bottom: 30px;
	text-align: left;
	word-break: break-word;
}

.tab_detail .item_tab{
	border: solid 1px #d0001b;
	position: relative;
	padding: 10px 40px 10px 20px;
	cursor: pointer;
	transition: 0.5s ease;
}

.tab_detail .item_tab.gry_out{
	border: none;
	background: #eee;
}

.tab_detail .item_tab:hover{
	opacity: .8;
}

.tab_detail .item_tab::after{
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-20px,-50%) rotate(90deg);
	-ms-transform: translate(-20px,-50%) rotate(90deg);
	transform: translate(-20px,-50%) rotate(90deg);
	right: 0px;
	content: "\f105";
	font-family: 'FontAwesome';
	color: #d0001b;
	font-size: 16px;
}

.tab_detail .item_tab.on::after{
	-webkit-transform: translate(-20px,-50%) rotate(270deg);
	-ms-transform: translate(-20px,-50%) rotate(270deg);
	transform: translate(-20px,-50%) rotate(270deg);
}

.slide_area{
	display: none;
}
.slide_area.open{
	display: block;
}


@media screen and (max-width: 1240px) {
	.tab_btn li{
		font-size: 1.5vw
	}
}

@media screen and (max-width: 980px) {
	.tab_btn li{
		font-size: 2vw;
	}
}
@media screen and (max-width: 767px) {
	.tab_btn_wrap{
		margin-bottom: 40px;
	}
	
	.tab_btn::before{
		top: 50px;
		transform: none;
	}
	
	.tab_btn li{
		max-width: 242px;
		width: 33.3%;
		border-bottom: solid 1px #a8a8a8;
		height:50px;
	}
	
	.tab_btn li:nth-child(4){
		border-bottom: none;
	}

	.tab_btn li:nth-child(4) a{
		border-left: solid 1px #a8a8a8;
	}
	
	.tab_btn li:nth-child(5){
		border-bottom: none;
	}
	.tab_btn li:nth-child(5) a{
		border-right: solid 1px #a8a8a8;
	}
	
	
	.tab_btn li:nth-child(6){
		border-bottom: solid 1px #a8a8a8;
	}
	.tab_btn li:nth-child(n + 7){
		border-bottom: none;
	}
	
	.tab_btn li:nth-child(6) span{
		border-left: none;
	}
}
@media screen and (max-width: 680px) {
	.tab_btn li {
		font-size: 1.5rem;
	}
	.tab_detail h2 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
	.tab_btn li{
		font-size: 3.4vw;
	}
}

/*タブ内容
----------------------------------------------*/
.tab_area section{
	margin-bottom: 200px;
	width: 100%;
}
.library_list{
	border-top: solid 1px #a0a0a0;
	margin-bottom: 60px;
}
	.library_list > li{
		width: 100%;
		border-bottom: solid 1px #a0a0a0;
	}

.library_list > li a{
	align-items: center;
	padding: 30px 20px 30px 0;
	justify-content: flex-start;
	width: 100%;
	transition: 0.5s ease;
	text-decoration: none;
	position: relative;
}
	.library_list > li a::after{
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0px;
		content: "\f105";
		font-family: 'FontAwesome';
		color: #d0001b;
		font-size: 16px;
	}

	.library_list > li a:hover{
		opacity: 0.8;
	}

.library_list > li a .label_box{
	justify-content: flex-start;
	align-items: center;
}


.library_list > li a p{
	margin: 0 0 0 22px;
	color: #0066c0;
	text-align: left;
	word-break: break-word;
}

.library_list .label li{
	font-size: 1.5rem;
	line-height: inherit;
}

@media screen and (max-width: 767px) {
	.library_list > li{
		display: block;
	}
		.library_list > li a .label_box{
			margin-bottom: 8px;
			flex-wrap: wrap;
		}
	
		.library_list > li a p{
			margin: 0;
		}
}

@media screen and (max-width: 680px) {
	.tab_area section{
		margin-bottom: 100px;
	}
	.library_list{
		margin-bottom: 40px;
	}
	.library_list .label li{
		font-size: 1.2rem;
		min-width: 110px;
		margin: 0 0 0 10px;
	}
	
	.library_list > li a{
		padding: 15px 20px 15px 0;
	}
}

/*ニュースエリア
----------------------------------------------*/
.infoList{
	max-width: 1240px;
	width: 100%;
	margin-bottom: 150px;
}
.infoList > li:first-child a{
	border-top: 1px solid #a0a0a0;
}
.infoList > li a{
	display: flex;
	border-bottom: 1px solid #a0a0a0;
	padding: 32px 0 26px;
	text-align: left;
	position: relative;
	text-decoration: none;
	transition: 0.5s ease;
	
}
.infoList li a:before{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0px;
	content: "\f105";
	font-family: 'FontAwesome';
	color: #d0001b;
	font-size: 1.6rem;
}
.infoList li a p{
	font-size: 1.7rem;
	margin-right: 15px;
	word-break: break-all;
}
.infoList > li >a span{
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 3px;
	margin-right: 20px;
}
.infoList > li >a p{
	color: #0066c0;
}
.infoList > li >a:hover{
	opacity: 0.8;
}
.infoList > li >a:hover p{
	text-decoration: underline;
}
.infoList .tblStyle01{
	margin: 0;
}
.label li {
	border: 1px solid #e60012;
	border-radius: 5px;
	min-width: 95px;
	text-align: center;
	margin: 0 0 0 10px;
	display: inline-block;
	font-size: 1.5rem;
	line-height: 1.7;
}
.label li.label_red {
	border: 1px solid #e60012;
	background: #e60012;
	border-radius: 5px;
	color: #fff;
	margin-left: 10px;
	line-height: 1.7;
}
.info_ttl{
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.info_ttl a{
	color: #0066c0;
	text-decoration: none;
}
.info_ttl a:hover{
	text-decoration: underline;
	opacity: 0.7;
}
.top_back{
	padding: 3% 20px 5%;
}

@media screen and (max-width: 767px) {
	.infoList {
		margin: 0 0 40px;
	}
	
	.infoList > li a{
		display: block;
	}
	
	.label{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.label li {
		min-width: 108px;
		padding: 2px 10px;
		margin-left: 10px;
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 480px) {
	.infoList > li a{
		padding: 10px 0;
	}
	.infoList li a span {
		margin-bottom: 10px;
	}
	time, .infoList li a p {
		font-size: 1.4rem;
	}
	.top_back{
		padding: 6% 20px 0;
	}
	.top_back a{
		font-size: 1.4rem;
		max-width: 170px;
		width: 100%;
		padding: 7px 10px;
	}
}

