@charset "utf-8";
/* CSS Document */
/* ----------------------------------------------
	header
---------------------------------------------- */
header {
	z-index: 10;
}

/* ----------------------------------------------
	mv
---------------------------------------------- */
.mv {
	width: 100%;
	height: 380px;
	background: url(../img/mv_bg.jpg) center /cover no-repeat;
	background-attachment: fixed;
	position: relative;
}
.title_box {
	display: flex;
	justify-content: space-between;
	width: 1000px;
	height: 300px;
	background: #fff;
	box-shadow: 0 5px 24px rgba(0,0,0,.2);
	position: absolute;
	top: 150px;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
}
.mv.on .title_box {
	top: 130px;
	opacity: 1;
	transition: 1s ease;
}
.title_box .img {
	width: 50%;
	height: 100%;
}
.title_box .txt {
	width: 50%;
	height: 100%;
	box-sizing: border-box;
	padding-top: 54px;
	text-align: center;
	color: #fff;
}
/* 事業別 */
.biz_010 .title_box .txt {
	background: linear-gradient(-75deg, #317fc7, #3c99f0);
}
.biz_020 .title_box .txt {
	background: linear-gradient(-75deg, #96b709, #b1d70d);
}
.biz_030 .title_box .txt {
	background: linear-gradient(-15deg, #e29c04, #ffae00);
}

.title_box .txt h1 {
	padding-bottom: 14px;
	font-size: 2.375em;
	font-weight: 400;
	font-family:YuMincho, '游明朝体', serif;
	line-height: 1.158;
	letter-spacing: .1em;
	position: relative;
}
.title_box .txt h1::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background: rgba(255,255,255,.8);
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.title_box .txt h1 span {
	display: block;
	margin-bottom: 8px;
	font-size: .3684em;
	opacity: .5;
	line-height: 1;
	letter-spacing: .1em;
}
.title_box .txt p {
	margin-top: 18px;
	font-size: .875em;
	line-height: 1.6;
}

/* ----------------------------------------------
	article
---------------------------------------------- */
.contents {
	width: 1000px;
	margin: 120px auto 110px;
}
article {
	margin-top: 70px;
}
h2 {
	font-size: 1.875em;
	font-weight: 400;
	font-family:YuMincho, '游明朝体', serif;
	line-height: 1.2;
	letter-spacing: .1em;
	position: relative;
}
h2::before {
	content: '';
	display: block;
	width: 1000px;
	height: 1px;
	background: rgba(34,34,34,.3);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
h2 span {
	display: inline-block;
	position: relative;
	z-index: 2;
	max-width: 860px;
}
h2 span::before {
	content: '';
	display: block;
	width: calc(100% + 30px);
	height: 1px;
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
}
h2 em{
	font-size:16px;
}
h3 {
	margin-top: 45px;
	font-size: 1.25em;
}
h2 + h3 {
	margin-top: 30px;
}
article > p,
article > ul,
article > div,
article > blockquote {
	margin-top: 26px;
	line-height: 1.6;
}
strong {
	font-weight: bold;
}
sup {
	vertical-align: super;
	font-size: .6em;
}
blockquote {
	padding: 30px;
	font-size: 1.25em;
	font-family:YuMincho, '游明朝体', serif;
	font-weight: 400;
	background: #f8f8f8;
	/* box-shadow: 0 5px 10px rgba(0,0,0,.1); */
}
blockquote li {
	padding-left: 24px;
	position: relative;
	line-height: 1.4;
}
blockquote li + li {
	margin-top: 10px;
}
blockquote li::before {
	content: '';
	display: block;
	width: 12px;
	height: 1px;
	background: #c0c0c0;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
/* 事業別 */
.biz_020 blockquote {
	
}

article > ul {
	list-style: disc;
	padding-left: 24px;
}
article > ul > li + li {
	margin-top: 6px;
}
article > ul > li > ul {
	margin-top: 8px;
	font-size: .875em;
}
article > ul > li > ul > li {
	padding-left: 13px;
	position: relative;
}
article > ul > li > ul > li::before {
	content: '';
	display: block;
	width: 8px;
	height: 1px;
	background: #8b8b8b;
	position: absolute;
	left: 0;
	top: 9px;
}
article > ul > li > ul > li + li {
	margin-top: 6px;
}
.flex > ul {
	display: flex;
	justify-content: space-between;
}
.flex.one_third > ul::after {
	content: '';
	display: block;
}
.flex > ul > li {
	width: calc((100% - 30px) / 2);
}
.flex.one_third > ul > li,
.flex.one_third > ul::after {
	width: calc((100% - (30px * 2)) / 3);
}
.flex > ul > li.normal {
	background: rgba(85,85,85,.05)!important;
}
/* 事業別 */
.biz_010 .flex > ul > li {
	background: rgba(60,153,240,.05);
}
.biz_020 .flex > ul > li {
	background: rgba(150,183,9,.05);
}
.biz_030 .flex > ul > li {
	background: rgba(253,178,17,.05);
}

figure img {
	width: 100%;
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
figcaption {
	font-size: .875em;
	padding: 24px 30px 26px;
}
figcaption h4 {
	font-weight: bold;
	font-size: 1.4286em;
}
.normal figcaption h4 {
	color: #333!important;
}
/* 事業別 */
.biz_010 figcaption h4 {
	color: #317fc7;
}
.biz_020 figcaption h4 {
	color: #b1d70d;
}
.biz_030 figcaption h4 {
	color: #fdb211;
}

figcaption h5 {
	margin-top: 16px;
	font-weight: bold;
}
figcaption p {
	margin-top: 16px;
}
figcaption ul {
	margin-top: 10px;
}
figcaption li {
	padding-left: 16px;
	line-height: 1.4;
	position: relative;
}
figcaption li::before {
	content: '';
	display: block;
	width: 8px;
	height: 1px;
	background: rgba(139,139,139,.4);
	position: absolute;
	top: 8px;
	left: 0;
}
figcaption li+ li {
	margin-top: 6px;
}
/* 事業別 */
.biz_010 .article_box {
	background: rgba(60,153,240,.05);
}
.article_box figure {
	display: flex;
	justify-content: space-between;
}
a.video,
.article_box > img,
.article_box figcaption {
	display: block;
	box-sizing: border-box;
	width: 50%;
}
a.video {
	background: #fff;
}
a.video img {
	width: 100%;
	transition: 0.3s ease;
}
a.video:hover img {
	opacity: 0.6;
	transition: 0.3s ease;
}
figcaption img {
	margin-top: 20px;
	width: auto;
	box-shadow: none;
}

table {
	width: 100%;
	border: 1px solid #ccc;
	background: #fff;
}
th,
td {
	padding: 16px 20px;
	border: 1px solid #ccc;
	vertical-align: middle;
}
th {
	background: #f6f6f6;
	font-weight: bold;
}
table .anotate {
	display: block;
	font-size: .75em;
}
.a_center table td{
	text-align: center;
}
/* 事業別 */
.biz_020 table tr > th:nth-child(1) {
	width: 209px;
}
.biz_030 th.w209 {
	width: 209px;
}
.biz_030 th.w208 {
	width: 208px;
}
.biz_030 td.item_name {
	font-weight: bold;
	color: #fdb211;
	background: rgba(253,178,17,.05)
}

.table_wrap p {
	margin-top: 16px;
	font-size: .75em;
}

span.anotate {
	display: block;
}

/* ----------------------------------------------
	others
---------------------------------------------- */
figure.flow {
	background: rgba(150,183,9,.05);
}
figure.flow li {
	padding: 10px 14px;
	display: inline-block;
	color: #fff;
	font-size: 1.142em;
	font-weight: 600;
}
figure.flow li + li {
	margin-top: 0;
	margin-left: 10px;
}
figure.flow li::before {
	display: none;
}
figure.flow li.green {
	background: #a3cb80;
}
figure.flow li.mosgreen {
	background: #018443;
}
.box {
	padding: 30px;
	background: rgba(85,85,85,.05);
}
.box h4 {
	margin-bottom: 16px;
	font-weight: bold;
	font-size: 1.25em;
}
.box p {
	margin-top: 12px;
}
.quality {
	display: flex;
	justify-content: space-between;
}
.quality > .txt {
	width: 646px;
}
.quality > figure {
	width: 314px;
}
.quality > .txt h3 {
	margin-top: 0;
}
.pmm figure img {
	width: 314px;
}
.pmm figcaption {
	width: calc(100% - 314px);
	background: rgba(85,85,85,.05);
}
.pmm dl {
	display: flex;
}
.pmm dt {
	width: 80px;
}

.btn.pdf {
	height: 70px;
}
.btn.pdf span {
	padding-left: 40px;
}
.btn.pdf span::before {
	width: 25px;
	height: 24px;
	border: none;
	background: url(../../../common/img/pdf_ico.png) center /contain no-repeat;
}
.mt10 {
	margin-top: 10px;
}
.mt45 {
	margin-top: 45px;
}
.mt70 {
	margin-top: 70px;
}