@charset "UTF-8";

/*==========================================
 PC［1001px~］
===========================================*/
/*------------
movie
------------*/
.movie {
	width: 100%;
	text-align: center;
}

.movie video {
	max-width: 1800px;
	width: 100%;
	height: auto;
}

/*------------
SDGs
------------*/
:is(#SDGs, #SDGs2) {
	margin: 45px auto;
	width: 90%;
	background-image: url("../images/sdgs-bkimg.jpg");
	background-repeat: no-repeat;
	border-radius: 15px;
	background-size: cover;
}

#SDGs2 {
	background-image: url("../images/sdgs-bkimg2.jpg");
	background-position: center;
}

:is(#SDGs, #SDGs2) .flex>div {
	padding: 50px;
	width: 50%;
}

#SDGs2 .text_small {
	margin-top: 1em;
	font-size: 2rem;
	line-height: 1.5;
	display: block;
}

.SDGs-text {
	border-radius: 15px 0 0 15px;
	background: -moz-linear-gradient(-45deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	background-size: 200% 200%;
	/*サイズを大きくひきのばす*/
	animation: bggradient 10s ease infinite;
}

@keyframes bggradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.SDGs-img {
	display: flex;
	justify-content: center;
}

.SDGs-img img {
	margin: 0 auto;
	width: 80%;
	height: auto;
	object-fit: contain;
	display: block;
	background-color: #fff;
	box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, .2);
}

/*------------
 info　
------------*/
.info_wrap {
	background-image: linear-gradient(90deg, #fff 50%, #FCFCFC 50%);
	position: relative;
}

.info_wrap:after {
	content: '';
	width: 50%;
	height: 5px;
	background: -moz-linear-gradient(-45deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: absolute;
	top: 0;
	right: 0;
}

#info>div {
	padding: 0 15px;
	width: 48%;
}

/*お知らせのリスト*/
.info-list dt {
	padding: 15px 0 5px;
	font-weight: bold;
	color: #aaa;
	font-size: 1.5rem;
}

.info-list dd a {
	padding-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	border-bottom: solid 1px #ddd;
}

.new {
	margin-left: 10px;
	padding: 2px 0;
	width: 60px;
	height: 20px;
	display: inline-block;
	text-align: center;
	background-color: #014099;
	color: #fff;
	font-size: 1.1rem;
	font-weight: normal;
	border-radius: 20px;
}

/*------------
company
------------*/
#company .flex>a {
	width: 23%;
}

#company .flex>a:hover img {
	opacity: .7;
}

#company img {
	width: 100%;
	height: 145px;
	object-fit: cover;
	border-radius: 10px;
	border: solid 1px #ddd;
	transition-duration: .3s;
}

#company .flex>a:hover .btm_arrow::after {
	animation: arrow .5s;
}

/*------------
 service
------------*/
#service {
	background: #F8F8F8;
	background-image: url("../images/machine_asahi.png");
	background-position: top right;
	background-repeat: no-repeat;
}

#service .flex {
	justify-content: flex-start;
	position: relative;
}

#service a {
	margin-right: 65px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#service img {
	height: 95px;
	width: 95px;
	transition-duration: .3s;
}

#service .flex>a:hover .btm_arrow::after {
	animation: arrow .5s;
}

#service .flex>a:hover img {
	transform: translateY(-5px);
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

#service .machine_asahi {
	width: 400px;
	height: auto;
}

/*------------
 links
------------*/
#links .flexBtn {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px 50px;
}
#links .btm {
	margin: 10px 0;
	width: 30%;
	padding-right: 55px;
	display: flex;
	align-items: center;
}

#links .btm:after {
	top: 35%;
	width: 15px;
	height: 15px;
	background-image: url("../images/icon-blank.svg");
	border: none;
	transform: rotate(0);
}

#links .btm:hover:after {
	animation: none;
	background-image: url("../images/icon-blank-wh.svg");
}

/*==========================================
 ［1024px-1200pxx］
===========================================*/
@media screen and (max-width: 1200px) {
	#service .flex {
		width: calc(100% - 250px);
	}

	/*------------
	 links
	------------*/
	#links .btm {
		width: 48%;

	}

}

/*==========================================
 tb［540px-1024px以下］
===========================================*/
@media screen and (max-width: 1024px) {

	/*------------
	 movie
	------------*/
	.movie {
		margin: 0;
		display: block;
	}

	.movie video {
		display: block;
	}

	/*------------
	SDGs
	------------*/
	:is(#SDGs, #SDGs2) {
		background-size: cover;
	}

	:is(#SDGs, #SDGs2) .flex {
		border-radius: 15px;
		background: linear-gradient(135deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
	}

	:is(#SDGs, #SDGs2) .flex>div {
		width: 100%;
	}

	:is(#SDGs, #SDGs2) .flex>div:first-child {
		margin-bottom: 1em;
	}

	:is(#SDGs, #SDGs2) .content-ttl-h2 {
		letter-spacing: 0;
	}

	:is(#SDGs, #SDGs2) .flex .SDGs-text {
		padding: 10% 10% 0;
		border-radius: 15px 15px 0 0;
		background: none;
	}

	:is(#SDGs, #SDGs2) .flex .SDGs-img {
		padding: 0 10% 10%;
	}

	.SDGs-img img {
		width: 100%;
	}

	/*------------
	 service
	------------*/
	#service {
		background-size: contain;
		background-position: top right -150px;
	}

	#service .flex {
		width: 50%;
		justify-content: space-between;
	}

	#service a {
		margin-right: 0;
		width: 50%;
	}

	/*------------
	 links
	------------*/
	#links .btm {
		margin: 10px 0;
	}
}

/*==========================================
 sp［540px以下］
===========================================*/
@media screen and (max-width: 540px) {



	/*------------
	info
	------------*/
	.info_wrap {
		background: none;
	}

	.info_wrap::after {
		content: none;
	}

	#info.flex {
		padding: 0;
	}

	#info>div {
		padding: 0;
		width: 100%;
	}

	#info>div:last-child {
		padding: 10% 5% 0;
		background: #FCFCFC;
		position: relative;
	}

	#info>div:last-child:after {
		content: '';
		width: 100%;
		height: 5px;
		background: -moz-linear-gradient(-45deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, 1) 100%);
		/* FF3.6-15 */
		background: -webkit-linear-gradient(-45deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
		/* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(135deg, rgba(0, 112, 181, .9) 0%, rgba(110, 215, 175, .7) 99%, rgba(111, 216, 175, .7) 100%);
		/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		position: absolute;
		top: 0;
		right: 0;

	}

	/*------------
	 company
	------------*/
	#company .flex>a {
		width: 48%;
	}

	#company a.btm {
		margin: 10px 0;
	}

	/*------------
	 service
	------------*/
	#service {
		margin: 30px 0;
		padding: 0 0 350px;
		background-position: bottom -80px center;
		background-size: 300px auto;
	}

	#service .flex {
		width: 100%;
	}

	/*------------
	 links
	------------*/
	#links .btm {
		width: 100%;
	}
}