@charset "UTF-8";
/*----------------------------------------

	#company history
	- mv
	- content
		+ history
		+ bnr
	- parts
		+ tab

-----------------------------------------*/

/*----------------------------------------
	mv
-----------------------------------------*/
#mv {
	background: #62b1d9 url("../img/c_mv_bg01.jpg") no-repeat right top;
	background-size: 1320px auto;
}
@media screen and (max-width: 767px) {
	#mv {
		background-size: auto 100%;
	}
}

/*----------------------------------------
	content
-----------------------------------------*/
/* commons */
#content h2,h3 {color: #000;}
#content h2>span {color: #222;display: inline-block;}

#content > div#history {
	margin-bottom: 60px;
}

/* history */
.history_table + .history_table {
	margin-top: 60px;
}
.history_table>h2 {
	margin-bottom: 20px;
}
.history_table dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid #ddd;
}
.history_table dl:first-child,
.history_table h2+dl {
	border-top: 1px solid #ddd;
}
.history_table dl dt {
	width: 22%;
	max-width: 280px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 280px;
	        flex: 1 1 280px;
	padding: 20px;
	background-color: #fafafa;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.history_table dl dd {
	width: 78%;
	max-width: 840px;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 840px;
	        flex: 1 1 840px;
	padding: 14px 20px;
	background-color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.history_table dl dd p {
	line-height: 1.75;
}
.history_table dl dd p+p {
	padding-top: 8px;
}
@media screen and (max-width: 767px) {
	#content > div#history {
		margin-bottom: 40px;
	}
	.history_table + .history_table {
		margin-top: 32px;
	}
	.history_table {
		line-height: 1.5;
	}
	.history_table>h2 {
		margin-bottom: 9px;
	}
	.history_table dl dt {
		width: 35.6%;
		max-width: 35.6%;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 35.6%;
		        flex: 1 1 35.6%;
		padding: 12px 14px 12px;
	}
	.history_table dl dd {
		width: 64.4%;
		max-width: 64.4%;
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 64.4%;
		        flex: 1 1 64.4%;
		padding: 11px 16px;
	}
	.history_table dl dd p+p {
		padding-top: 20px;
	}
}

/* bnr */
.bnr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 35px;
}
.bnr a {
	width: calc((100% - 35px)/2);
}
.bnr a:first-child {
	margin-right: 40px;
}
.bnr figure img {
	margin-bottom: 13px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.bnr a:hover figure img {
	opacity: 0.8;
}
@media screen and (max-width: 767px) {
	.bnr {
		margin-bottom: 25px;
	}
	.bnr,
	.bnr a {
		display: block;
	}
	.bnr a {
		width: 100%;
	}
	.bnr a:first-child {
		margin: 0 0 24px 0;
	}
	.bnr figure img {
		margin-bottom: 8px;
	}
}


/*----------------------------------------
	parts
-----------------------------------------*/
/* tab */
#tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 60px;
}
#tab>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#tab>ul>li {
	width: calc(4.2em + 10px);
}
#tab>ul>li+li {
	margin-left: 20px;
}
#tab>ul>li>a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0 5px 20px;
	color: #000;
	border-bottom: 2px solid #ddd;
	-webkit-transition: border 0.1s ease-out, color 0.1s ease-out;
	-o-transition: border 0.1s ease-out, color 0.1s ease-out;
	transition: border 0.1s ease-out, color 0.1s ease-out;
}
#tab>ul>li>a:hover,
#tab>ul>li.crnt>a {
	border-bottom-color: #00a0e9;
}
#tab>ul>li>a:hover {
	color: #666;
}
#tab>ul>li.crnt>a {
	pointer-events: none;
}
@media screen and (max-width: 767px) {
	#tab {
		margin-bottom: 33px;
	}
	#tab>ul {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		width: 100%;
	}
	#tab>ul>li {
		width: calc(50% - 0.5px);
		line-height: 1.6rem;
		border-right: 1px solid rgba(255,255,255,0.0);
	}
	#tab>ul>li+li {
		margin: 0;
	}
	#tab>ul>li:nth-child(2n) {
		border-right: none;
	}
	#tab>ul>li:nth-child(n + 3) {
		margin-top: 1px;
	}
	#tab>ul>li>a {
		padding: 15px 5px;
		font-weight: normal;
		border-bottom: none;
		background-color: #eee;
		color: #666;
	}
	#tab>ul>li>a:hover,
	#tab>ul>li.crnt>a {
		color: #fff;
		background-color: #62b1d9;
	}
}