@charset "UTF-8";
/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 200;
	padding: 10px 5px 10px 10px;
	transition: all ease .5s;
	animation:head 1s forwards 1s;
	opacity: 0;
  }
  .header_inner {
	position: relative;
	display: flex;
	justify-content: space-between;
  }
  header.bg_w{
	  background: #fff;
	  box-shadow: 0 10px 40px rgba(69,87,109,0.15);
  }

  @keyframes head{
		0%{
			opacity: 0;
			transform: translateY(-15px);
		}
		100%{
			opacity: 1;
			transform: translateY(0px);
		}
	}

header #logo{
	width:30%;
}
header #logo a{
	display: flex;
	align-items: flex-end;
	font-size: 110%;
	letter-spacing: 0.1em;
	color: #212121;
	transition: all ease .5s;
	font-weight: bold;
}
header#clear #logo a{
	color: #fff;
}
header#clear.bg_w a,
header.bg_w #logo a{
	color: #212121 !important;
}
header #logo a:hover{
	opacity: 0.7;
	transform: translateY(5px);
}
header #logo .icon-logo-mark::before{
	font-size: 34px;
	margin-right: 10px;
	
	transition: all ease .5s;
}
header#clear #logo .icon-logo-mark::before{
	color: #fff;
}
header.bg_w #logo .icon-logo-mark::before{
	color: #1762ce !important;
}

/*-----------------------------------------------
__Global Navi
-----------------------------------------------*/
header nav{
	width: 60%;
}
#gl_nv{
	display: flex;
	justify-content: flex-end;
}
#gl_nv li{
	font-weight:bold;
	text-align:center;
	padding: 0 16px;
}
#gl_nv a{
	display: block;
	color: #212121;
	padding:10px 0;
	transition: .5s;
}
#gl_nv a:hover{
	transform:translateY(5px)
}

header#clear #gl_nv a{
    color: #fff;
}
header#clear.bg_w #gl_nv a{
	color: #212121;
}

header #link_sns{
	display: flex;
	align-items: center;
}
header #link_sns a{
	padding: 0;
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	overflow: hidden;
}
header #link_sns a img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}


#gl_nv li.li_contact{
	min-width: 200px;
}
#gl_nv li.li_contact a{
	color: #fff !important;
	background: rgb(23,98,206);
	background: linear-gradient(90deg, rgba(23,98,206,1) 0%, rgba(91,144,220,1) 100%);
	transition: all ease .5s;
	position: relative;
}
#gl_nv li.li_contact a::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;

	width: 0;
	height: 100%;
	background:#1258ad;
	transition: all ease .5s;
}
#gl_nv li.li_contact a:hover::after{
	width: 100%;
}
#gl_nv li.li_contact a span{
	position: relative;
	z-index: 1;
}
#gl_nv li.li_contact a span::before{
	font-size: 10px;
	margin-right: 10px;
}

/*-----------------------------------------------
__Main
-----------------------------------------------*/
#page_navi h1{
	animation:page_navi_h1 1s forwards 1s;
	opacity: 0;
	border-bottom: 1px solid #d1deed;
	padding-bottom: 30px;
}
#page_navi h1 span{
	font-size: 1.6em;
	letter-spacing: 0.1em;
	color: #1258ad;
}
#page_navi h1 em{
	margin-top: 0.25em;
	display: block;
	font-size: 7em;
	color: #fff;
	-webkit-text-stroke: 1px #d1deed;
	text-stroke: 1px #d1deed;
}
@keyframes page_navi_h1{
    0%{
        opacity: 0;
        transform: translateX(-30px);
    }
	50%{
		opacity: 1;
	}
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

#page_navi ul{
	margin-top: 27px;
	display: flex;
	flex-wrap: wrap;
	animation: page_navi_h1 1s forwards 1s;
	opacity: 0;
}
main #page_navi a{
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	position: relative;
	padding: 10px 40px 10px 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	line-height: 1.2;
	color: #1258ad;
	background: #fff;
	border: 1px solid #1258ad;
	transition: all ease .3s;
}
main #page_navi a::before{
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;

	width: 8px;
	height: 8px;
	border-right: 1px solid #1258ad;
	border-bottom: 1px solid #1258ad;

	transform: rotate(-45deg) translateY(-50%);
	transition: all ease .3s;
}
main #page_navi a:hover::before{
	right: 5px;
	border-color: #fff;
}
main #page_navi a small{
	color: #777;
	font-size: 60%;
	margin-right: 0.5em;
}
main #page_navi a.current,
main #page_navi a:hover{
	background: #1258ad;
	color: #fff;
}
#page_navi li:last-of-type a{
	margin-right: 0;
}
main #page_navi a:hover small{
	color: #d1deed;
}

#page_navi.fixed ul{
	position: fixed;
	z-index: 5;
	
	right:3%;
	top: 7%;
	flex-direction: row;
	max-width: 100%;
	opacity: 0;
	animation : page_navi_left 1s forwards 0.5s;
}
#page_navi.fixed a{
	font-size: 1em;
	line-height: 1.2;
}
#page_navi.fixed li:last-of-type a{
		margin-right: 0;
}
main #page_navi.fixed a::before{
	width: 7px;
	height: 7px;
}
#page_navi.fixed a small{
	font-size: 80%;
}

@keyframes page_navi_left{
    0%{
        opacity: 0;
        transform: translateX(-30px);
    }
	50%{
		opacity: 1;
	}
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
#page_navi.fixed.none ul{
	pointer-events: none;
	animation:top_none 0.5s forwards 0s;
}
@keyframes top_none{
    0%{
		opacity: 1;
		transform: translateX(0);
	}
    100%{
        opacity: 0;
		transform: translateX(-30px);
    }
}

@media screen and (min-width: 1540px) {
	#page_navi.fixed ul{
		width: auto;
		max-width: 30%;
		right: auto;
		left: 2%;
		top: 45%;
		flex-direction: column;
	}
	#page_navi.fixed a{
		margin-right: 0;
		margin-bottom: 5px;
	}
	#page_navi.fixed li:last-of-type a{
			margin-bottom: 0;
	}
}

#page_navi > p{
	font-size: 120%;
	margin: 50px 0;
}


/*下層画像あり*/
#page_img{
	position: relative;
}
#page_img figure{
	position: relative;
	height: 45vh;
	width: 100%;
	overflow: hidden;
}
#page_img figure img{
	position: absolute;
	left: 0;
	top: 0;
}
#page_img h1{
	animation:top_img_h1 1s forwards 1.5s;
	opacity: 0;
	position: absolute;

	width: 90%;
	max-width: 980px;
	bottom: 5%;
	left: 50%;
	z-index: 5;
	transform: translateX(-50%);

	color: #fff;
    filter: drop-shadow(0 0 30px rgba(69,87,109,0.15));
    font-size: 150%;
    line-height: 1.2;
}
#page_img h1 em{
	display: block;
    font-size: 3em;
	margin-bottom: 0.25em;
}
@keyframes top_img_h1{
    0%{
        opacity: 0;
        transform: translateX(calc(-50% - 30px));
    }
	50%{
		opacity: 1;
	}
    100%{
        opacity: 1;
        transform: translateX(-50%);
    }
}


main h2{
	color: #000;
	font-size:2em;
	clear:both;
	margin-top:1.5em;
	margin-bottom:1.5em;
	padding-top: 10px;
	border-top: 1px solid #1762ce;
}
main h2 small{
	display: block;
	position: relative;
	color: #1762ce;
	font-size: 40%;
	letter-spacing: 0.1em;
	font-weight: normal;
	padding-bottom: 10px;
}

main h3{
	font-size:1.7em;
	color: #1762ce;
	margin-top:2em;
	margin-bottom:1em;
}


main h3.f_min{
	font-weight: normal;
	font-size: 140%;
	line-height: 2;
	margin-bottom: 1em;
}

.btn_link a{
	transition: all ease .5s;
	display: table;
	min-width: 300px;
	position: relative;
	padding: 14px 25px 14px 10px;
	text-align: center;

	background: rgb(23,98,206);
	background: linear-gradient(90deg, rgba(23,98,206,1) 0%, rgba(91,144,220,1) 100%);

	color: #fff !important;
	text-decoration: none !important;
}
.btn_link a:hover{
	transform: translateY(5px);
}
.btn_link a span{
	position: relative;
	z-index: 1;
}
.btn_link a::before,
.btn_link a::after{
	content: "";
	position: absolute;
}
.btn_link a::before{
	z-index: 1;
	right: 10px;
	top: 50%;

	width: 7px;
	height: 7px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;

	transform: rotate(-45deg) translateY(-50%);
	transition: all ease .5s .3s;
}
.btn_link a::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;

	width: 0;
	height: 100%;
	background:#1258ad;
	transition: all ease .5s;
}
.btn_link a:hover::after{
	width: 100%;
}

.btn_link a.btn_w{
	background: #fff;
	border: 1px solid #1762ce;

	color: #1762ce !important;
}
.btn_link a.btn_w::before{
	border-color:#1762ce;
}
.btn_link a.btn_w:hover{
	color: #fff !important;
	border-color: #1258ad;
}
.btn_link a.btn_w:hover::before{
	border-color:#fff;
}
.btn_link.ta_center a{
	margin: 0 auto;
}
.btn_link.ta_right a{
	margin: 0 0 0 auto ;
}

/*-----------------------------------------------
__Design
-----------------------------------------------*/
.sec_pd{
	margin-bottom: 40px;
}

.bg_gr{
	margin: 0 auto 40px auto;
	padding: 15px 0;
	position: relative;
}
.bg_gr::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;

	width: 100%;
	height: 100%;
	background: #eff6fc;
	mix-blend-mode: multiply;
	z-index: -1;
}

ul.list > li{
	position: relative;
	padding-left: 20px;
	margin-bottom: 7px;
}
ul.list > li:last-of-type{
	margin-bottom: 0;
}
ul.list > li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;

	width: 6px;
	height: 6px;
	border-radius: 50%;
	border:1px solid #777
}
ul.list > li em{
	font-size: 110%;
	font-weight: bold;
}


table{
	width: 100%;
	margin: 24px auto 48px auto;
}
table td,table th{
	padding: 10px 0;
}
table th{
	width: 150px;
	vertical-align: top;
	padding-right: 15px;
	font-size: 90%;
	color: #777;
}

#message h2{
	border-top: none !important;
	font-size: 2em;
}
#message p{
	line-height: 1.7;
	margin-bottom: 2em;
	font-weight: bold;
}
#message p.ta_right{
	line-height: 1.4;
	margin-top: 1em;
	margin-bottom: 0;
}

#outline table th,#outline table td,
#history table th,#history table td{
	padding: 10px;
}
#outline table th,
#history table th{
	color: #000;
	font-weight: bold;
}
#outline table th{
	background: #eff6fc;
	border-bottom: 1px solid #ccc;
	width: 30%;
}
#outline table td{
	border-bottom: 1px solid #ccc;
}
#outline table tr:first-of-type{
	border-top: 1px solid #ccc;
}

#outline td .fl_box{
	justify-content: space-between;
}
#outline td .fl_box figure{
	max-width: 40%;
	margin-left: 5%;
}
#outline td .fl_box span{
	padding-right: 2em;
}

#history table{
	background: #fff;
}
#history table th{
	vertical-align: middle;
}
#history table tr:nth-of-type(2n){
	background: #e8eff9;
}



.box_map{
	margin: 0 auto 24px auto;
	padding: 5px 5px 0 5px;
	border: 1px solid #d1deed;
	background: #fff;
	position: relative;
}
.box_map iframe{
	width: 100%;
	min-height: 400px;
}
.box_map::before{
	content: "";
	position: absolute;
	left: 5px;
	top: 5px;
	z-index: 1;

	width: calc(100% - 10px);
	height: calc(100% - 10px);
	pointer-events: none;
	background: #1258ad;
	opacity: 0.6;
	mix-blend-mode: screen;
}

#box_facility{
	margin-top: 50px;
}
#box_facility article:first-of-type{
	border-top: 1px solid #d1deed;
}
#box_facility article{
	padding: 24px 0;
	border-bottom: 1px solid #d1deed;
	display: flex;
	flex-direction: column;
}
#box_facility article dl{
	display: flex;
	justify-content: space-between;
}
#box_facility article dt{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	font-weight: bold;
	font-size: 140%;
	width: 25%;
	position: relative;
	padding:10px 0;
}
#box_facility article dt span{
	font-size: 60%;
	color: #1258ad;
	border: 1px solid #1258ad;
	display: table;
	padding: 0 10px;
	margin-top: 5px;
}
#box_facility article dt::after{
	content: "";
	position: absolute;
	top: 5%;
	right: 0;

	width: 1px;
	height: 90%;
	border-right: 1px solid #d1deed;
}
#box_facility article dd{
	width: 70%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#box_facility article figure{
	width: 35% ;
	margin-left: 10%;
	padding-top: 23%;
	position: relative;
}
#box_facility article figure img{
	position: absolute;
	left: 0;
	top: 0;
}
#box_facility article dd > p:only-of-type{
	margin-bottom: 0;
}

#box_business{
	margin-bottom: 40px;
}
#box_business hr{
	border: none;
	margin: 20px auto;
}

#concept.business.wrap{
	max-width: 1080px;
	background: none;
}
#concept.business dd{
	font-size: 1.8em;
	line-height: 1.2;
	padding: 15px 30px;
	text-align: center;
}

#box_business .img_box{
    width: 90% !important;
	max-width: 1080px;
	padding-top: 30px;
    margin: 0 auto 40px auto;

	justify-content: space-between;
	align-items: flex-start;
}
#box_business .bg_bl .img_box{
	margin-bottom: 0;
}

#box_business .img_box#metal_parts{
	flex-wrap: wrap;
}
#box_business .img_box#metal_parts .fl_box{
	width: 100%;
}

#box_business .parts{
	justify-content: center;
	padding: 0 30px 30px 30px;
	margin: 60px auto 30px auto;
	position: relative;
}
#box_business .parts::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% - 15px);
	background: #fafafa;
	mix-blend-mode: multiply;
}
#box_business h3{
	margin-top: 0;
}
#box_business .parts h3{
	text-align: center;
	margin-bottom: 15px;
	margin-top: -15px;
}
#box_business .parts .fl_box{
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
#box_business .parts .fl_box div{
	width: 14%;
	background: #fff;
	padding: 10px 5px 0 5px;
	position: relative;
	z-index: 100;
}
#box_business .parts .fl_box figure{
	text-align: center;
}
#box_business .parts .fl_box div img{
	max-height: 106px;
	width: auto;
}
#box_business .parts .fl_box figcaption{
	margin-top: 10px;
	font-size: 90%;
}

#box_business .img_box > figure{
	width: 50%;
    position: relative;
    padding-top: 30%;
}
#box_business .img_box > figure img{
    position: absolute;
    top: 0;
    left: 0;
}
#box_business .img_box > figure figcaption{
	position: absolute;
	z-index: 2;
	left: 15px;
	bottom: 15px ;
	
	color: #fff;
}
#box_business .img_box > figure::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;

	opacity: 0.5;
	width: 100%;
	height: 50%;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
#box_business #welding .img_box{
	margin-bottom: 40px;
}

#box_business .img_box > section{
	width: 40%;
}
#box_business h2 .f_min{
	font-size: 1.6em;
	font-weight: normal;
	color: #3c4175;
}
#box_business .img_box > section > h2:first-of-type{
	margin-top: 0 !important;
}

#box_business .col_3 figcaption{
	font-weight: bold;
	color: #777;
	font-size: 90%;
	display: block;
	margin-top: 10px;
	text-align: center;
}
#box_business .col_3 > div:nth-of-type(-n + 3){
	margin-bottom: 35px;
}
#box_business .col_3 img{
	mix-blend-mode: multiply;
}
#box_business .bg_bl{
	background: #eff6fc;
	mix-blend-mode: multiply;
	padding: 20px 0 40px 0;
	margin-bottom: 20px;
}
#box_business dl dt{
	font-weight: bold;
	margin-bottom: 1em;
}
#box_business dl dt::before{
	content: "";
	display: inline-block;
	width: 1em;
	height: 1px;
	margin-right: 0.5em;
	border-top: 1px solid #1762ce;
	vertical-align: middle;
}
#box_business dl ul{
	margin-bottom: 1em;
}
#box_business .wrap{
	max-width: 1080px;
}
#box_business .business_img{
	width: 90%;
	max-width: 1360px;
	display: flex;
	justify-content: space-between;
	margin: 1px auto 0 auto ;
}
#box_business .business_img > div{
	width: 24.95%;
}
#box_business .business_img.last::after{
	content: "";
	display: block;
	width: 50%;
}

#concept{
	background: #fafafa;
	mix-blend-mode: multiply;
	padding: 20px 0;
}
#concept .box_concept{
	position: relative;
	margin: 0 auto;
}
#concept dl{
	display: block;
	position: relative;
}
#concept dt{
	position: relative;
	display: inline-block;
	background: #212121;
	color: #fff;
	padding: 0 10px;
	vertical-align: middle;
}
#concept dt small{
	display: inline-block;
}
#concept dt small::after{
	content: "";
	display: inline-block;
	width: 25px;
	height: 1px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 3px;

	border-top: 1px solid #888;
}
#concept dd{
	position: relative;
	background: #1762ce;
	color: #fff;
	letter-spacing: 0.1em;
	padding:0 15px
}
#concept .box_concept dd{
	font-size: 3em;
}
#concept figure{
	width: 100%;
	height: 600px;
	position: relative;
}

#concept dt::before,
#concept dd::before,
#concept figure::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#concept dt::before{
	background: #000;
	transition: all ease .5s 0.35s;
}
#concept dd::before{
	background: #054c93;
	transition: all ease .5s 0.7s;
}
#concept figure::before{
	background: #1762ce;
	transition: all ease .7s 1s;
}
#concept dl.fade-in dt::before,
#concept dl.fade-in dd::before,
#concept figure.fade-in::before{
	width: 0;
}

#concept .business_policy{
	margin: 35px auto;
}
#concept .business_policy dd{
	padding: 30px;
}
#concept .business_policy .fade ul{
	flex-wrap: wrap;
	justify-content: center;
	transition: all ease .5s 1s;
	opacity: 0;
	transform: translateY(10px);
}
#concept ul li{
	position: relative;
	font-size: 140%;
}
#concept ul li:not(:last-of-type){
	margin-bottom: 15px;
}
#concept .business_policy .fade-in ul{
	opacity: 1;
	transform: translateY(0);
}

#strength .intro{
	background: rgb(23,98,206);
	background: linear-gradient(90deg, rgba(23,98,206,1) 0%, rgba(91,144,220,1) 100%);
	padding: 40px 0 30px 0;
	position: relative;
}
#strength .intro::after{
	content: "";
	position: absolute;

	left: -200px;
    top: 100px;

    width: 400px;
    height: 400px;
    z-index: 1;
    pointer-events: none;
    background: url(../images/top/bg-products.png) no-repeat;
    background-size: contain;
}
#strength .intro h2,
#strength .intro h2 small,
#strength .intro section{
	color: #fff;
}
#strength .intro h2{
	border-color: #fff;
}
#strength .intro strong{
	color: yellow;
}

#strength .intro div.fl_box{
	justify-content: space-between;
}
#strength .intro div.fl_box > div{
	width: 60%;
}
#strength .intro div.fl_box > figure{
	width: 35%;
}

#strength .intro ul{
	justify-content: space-between;
	margin-top: 50px;
}
#strength .intro ul li{
	width: calc(100% / 3);
	border-right: 1px solid rgba(255,255,255,.3);
}
#strength .intro ul li:first-of-type{
	border-left: 1px solid rgba(255,255,255,.3);
}
#strength .intro ul li a{
	display: block;
	position: relative;
	text-align: center;
	text-decoration: none;
	color: #fff;
	padding: 15px 5px 25px 5px;
	transition: all ease .5s;
}
#strength .intro ul li a:hover{
	background: #054c93;
}
#strength .intro ul li a::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10px;
	
	width: 5px;
	height: 5px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;

	transform: translateX(-50%) translateY(0) rotate(45deg);
	transition: all ease .3s;
}
#strength .intro ul li a:hover::after{
	transform: translateX(-50%) translateY(5px) rotate(45deg);
}
.box_strength{
    margin: 60px auto;
}
.box_strength.bg_bl{
	background:#e8eff9;
	margin: 0 auto;
	padding: 60px 0;
	mix-blend-mode: multiply;
}

.box_strength > section h2:first-of-type{
	margin-top: 0 !important;
}
.box_strength > section h2 .f_min{
	font-size: 2em;
	font-weight: normal;
	color: #3c4175;
}

.box_strength #strength_01{
	width: 90% !important;
	margin: 0 auto;
}
.box_strength #strength_01 .btn_link a{
	width: 100%;
	min-width: auto !important;
}
.box_strength #strength_01 > div.fl_box{
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 40px auto 0 auto;
}
.box_strength #strength_01 dl{
	width: 23%;
	justify-content: space-between;
}
.box_strength #strength_01 dt{
	margin-bottom: 1em;
}
.box_strength #strength_01 dt img{
	width: 100%;
	aspect-ratio: 3 / 2;
}
.box_strength #strength_01 dd em{
	display: block;
	margin-bottom: 0.5em;
	font-weight: bold;
	font-size: 120%;
	color: #1258ad;
}
.box_strength.fl_box{
	width: 90% !important;
	justify-content: space-between;
}
.box_strength.fl_box > section{
	width: 45%;
	display: flex;
	flex-direction: column;
}
.box_strength.fl_box p{
	margin-bottom: 1.5em;
}
.box_strength.fl_box .fl_box{
	margin-top: auto;
	justify-content: space-between;
}
.box_strength.fl_box .fl_box > figure{
	width: calc(50% - 1px);
}
.box_strength.fl_box .fl_box > figure img{
	width: 100%;
}
.box_strength.fl_box .ta_center.f_min{
	color: #1762ce !important;
	margin: 30px auto;
	font-size: 125%;
}
.box_strength.fl_box strong{
	display: inline-block;
	position: relative;
}
.box_strength.fl_box strong::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: #e8eff9;
	z-index: -1;
}



#sdgs{
	margin-top: 20px;
}
#sdgs section > p{
	font-size: 115%;
}
#sdgs dl.action dt{
	position: relative;
	height: 40px;
}
#sdgs dl.action dt span{
	display: table;
	color: #1258ad;
	background: #fff;
	padding: 5px 30px;
	text-align: center;
	margin: 0 auto;
	font-weight: bold;
	font-size: 120%;
	letter-spacing: 0.1em;
	white-space: nowrap;

	position: absolute;
	left: 50%;
	top: 20px;
	transform: translateX(-50%);
}

#sdgs dl.action dd{
	flex-direction: column;
	padding: 35px 15px 15px 15px;
	margin-bottom: 20px;
	border: 1px solid #d1deed;
	font-size: 115%;
}
#sdgs dl.action div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#sdgs dl.action div:not(:first-of-type){
	margin-top: 20px;
}
#sdgs dl.action figure{
	width: 80px;
	text-align: center;
}
#sdgs dl.action p{
	width: calc(100% - 100px);
}


#sdgs #detail li em{
	display: inline-block;
	margin-bottom: 10px;
}
#sdgs #detail dd{
	padding: 35px 30px 15px 30px;
}
#sdgs #detail li{
	line-height: 1.7;
	font-size: 90%;
}
#sdgs #detail ul.list > li::before{
	top: 0.65em;
}
#sdgs div#action{
	width: 100%;
	justify-content: space-between;
}
#sdgs div#action > div:first-of-type{
	width: 75%;
}
#sdgs div#action > div:last-of-type{
	width: 20%;
}
#sdgs div#action figure{
	width: 100%;
	margin-right: 0;
	margin-left: auto;
}
#sdgs div#action figcaption{
	text-align: left;
	font-size: 80%;
	opacity: 0.7;
	margin-top: 10px;
}
#sdgs .present{
	justify-content: space-between;
}
#sdgs .present figure{
	width: 24% !important;
}

.fl_box.col_3{
	position: relative;
	flex-wrap: wrap;
	justify-content: space-between;
}
.fl_box.col_3 > div{
	width: 31%;
	margin-bottom: 20px;
}
.fl_box.col_3::after{
	content: "";
	display: block;
	clear: both;
	height: 1px;
	width: 31%;
}

/*-----------------------------------------------
__Footer
-----------------------------------------------*/
footer{
	background:#1258ad;
}

footer #contact{
	padding: 40px 0;
	background: rgb(232,239,249);
	background: linear-gradient(90deg, rgba(232,239,249,1) 70%, rgba(204,220,233,1) 100%);
}
footer #contact > .fl_box{
	justify-content: space-between;
	align-items: center;
}
footer #contact > .fl_box > div,
footer #contact dl{
	width: 48%;
}
footer #contact dt small{
	font-size: 100%;
}
footer #contact dt em{
	display: block;
	font-size: 300%;
	font-weight: bold;
	color: #1762ce;
}
footer #contact dd{
	margin-top: 20px;
}
footer #contact .btn_link a{
	margin:20px auto 0 auto;
}
footer #contact .btn_link a span::before{
	font-size: 12px;
	margin-right: 10px;
}
footer #contact a.tel{
	color: #212121;
	font-size: 180%;
	font-weight: bold;
}
footer #contact a.tel small{
	display: inline-block;
	margin-right: 5px;
	vertical-align: text-top;
	font-size: 60%;
	font-weight: normal;
}


footer #foot_nav{
	width: 90%;
	margin: 0 auto;
	padding:40px 0;
	font-size: 90%;
	justify-content: space-between;
}
footer #foot_nav a{
	color: #fff ;
}
footer address{
	color: #fff;
	width: 30%;
}
footer address .icon-logo-mark{
	font-weight: bold;
	font-size: 120%;
}
footer address .icon-logo-mark::before{
	color: #fff;
	font-size: 34px;
	margin-right: 5px;
}
footer address li{
	margin-bottom: 30px;
}
footer address li:last-of-type{
	margin-bottom: 0;
}

footer #foot_nav > ul{
	width: 50%;
	justify-content: space-between;
}
footer #foot_nav > ul > li{
	width: 31%;
}
footer #foot_nav > ul > li a{
	display: block;
	padding-top: 5px;
	border-top: 1px solid rgba(255,255,255,.2);
	transition: all ease .5s;
}
footer #foot_nav > ul > li a:not(:last-of-type){
	margin-bottom: 10px;
}
footer #foot_nav > ul > li a:hover{
	opacity: .5;
}
footer #foot_nav > ul > li ul{
	margin-top: 10px;
}
footer #foot_nav > ul > li li a{
	border-top: none;
	opacity: .7;
	padding-top: 5px;
}
footer #foot_nav > ul > li li a::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	width: 10px;
	height: 1px;
	border-bottom: 1px solid #fff;
}
footer #foot_nav > ul > li li a:hover{
	opacity: .3;
}

footer aside{
	box-sizing: border-box;
	display: block;
	justify-content: space-between;
	background: #054c93;
	color: #fff;
	padding: 30px 5%;
	font-size: 90%;
}
footer aside a{
	color: #fff;
	text-decoration: underline;
	font-size: 90%;
}
footer aside a:hover{
	text-decoration: none;
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
	width:100%;
}

.pc_no{
	display:none;
}
a.tel{
	pointer-events:none;
}


.ta_center{
	text-align:center;
}
.ta_right{
	text-align: right;
}

.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}


@media print{
	header,#page_navi h1,#page_navi ul,#page_navi.fixed ul,#page_img h1,#concept p,#concept .business_policy.fade ul.fl_box{ animation: none !important; opacity: 1; }
	
	#concept dt::before,
	#concept dd::before,
	#concept figure::before,
	#concept .business_policy h3::before{
		display: none !important;
	}
}