@charset "utf-8";

/**************************************************************************************
会社情報
--------------------------------------------------------------------------------------

***************************************************************************************/

/* 会社概要のリンク
========================================== */

.cmp-link {}
.cmp-link > a {
	max-width: 1160px;
	width: 100%;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#company .cmp-link > a {
	background: url(../img/company/bg_outline_link.jpg) no-repeat;
}
#outline .cmp-link > a {
	background: linear-gradient(180deg, rgba(63,152,175,1) 0%, rgba(44,115,146,1) 100%);
}
.cmp-link > a > div {
	color: #fff;
	text-align: center;
	background: url(../img/common/ic_arr_cir_r_wh.svg) no-repeat center bottom;
	padding-bottom: 50px;
	background-size: 26px;
	line-height: 1;
}
.cmp-link > a > div > em {
	font-weight: bold;
	font-size: 38px;
	margin-top: 23px;
	display: block;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	#company .cmp-link > a {
		background: url(../img/company/bg_outline_link_sp.jpg) no-repeat center;
		background-size: contain;
		height: 240px;
	}
	.cmp-link > a > div {
		font-size: 14px;
	}
	.cmp-link > a > div > em {
		font-size: 20px;
	}
}

/*******************************************

-------------------------------------------
会社情報
********************************************/

#company {}

/* 代表あいさつ
========================================== */

#company .msg {}
#company .msg .msg-bg {
	background: url(../img/company/bg_msg.jpg) no-repeat center;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: flex-end;
	padding-left: 27px;
}
#company .msg .msg-bg .msg-tit {
	background: #fff;
	font-size: 30px;
	color: #1C294F;
	font-weight: bold;
	position: relative;
	height: 80px;
	padding:0 27px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
#company .msg .msg-bg .msg-tit::after {
	content: "";
	width: 100px;
	height: 82px;
	clip-path: polygon(0 0, 20% 0, 100% 100%, 0% 100%);
	background: #fff;
	display: block;
	position: absolute;
	right: -99px;
	top: 0;
}
@media only screen and (max-width: 767px) {
	#company .msg .msg-bg {
		background-position: top center;
		height: 260px;
		background-size: cover;
		padding-left: 0;
	}
	#company .msg .msg-bg .msg-tit {
		font-size: 20px;
	}
}
#company .msg .msg-flex {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 70px;
}
#company .msg .msg-name {}
#company .msg .msg-name > h3 {
	font-size: 29px;
	font-weight: bold;
	line-height: 2;
}
#company .msg .msg-name > h3 + p {
	margin-top: 27px;
}
#company .msg .msg-txt {
	max-width: 740px;
	width: 100%;
	line-height: 3;
}
@media only screen and (max-width: 767px) {
	#company .msg .msg-flex {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#company .msg .msg-txt {
		line-height: 2.6;
		font-size: 14px;
	}
	#company .msg .msg-name {
		margin-top: 1em;
	}
	#company .msg .msg-name > h3 {
		font-size: 22px;
	}
}

/* 企業理念
========================================== */

#company .philos {}
#company .philos .philos-tit {
}
#company .philos .philos-tit > p {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	font-size: 30px;
	font-weight: bold;
}
#company .philos .philos-tit > p::after ,
#company .philos .philos-tit > p::before {
	content: "";
	width: 360px;
	height: 2px;
	background: #a8a8a8;
	display: block;
}
@media only screen and (max-width: 767px) {
	#company .philos .philos-tit > p {
		display: none;
	}	
}

#company .philos ul.philos-list {
	width: fit-content;
	margin: 0 auto;
}
#company .philos ul.philos-list li {
	font-size: 26px;
	line-height: 1;
	margin-top: 80px;
}
#company .philos ul.philos-list li + li {
	margin-top: 45px;
}
@media only screen and (max-width: 767px) {
	#company .philos ul.philos-list li {
		font-size: 18px;
		line-height: 1.5;
		margin-top: 0;
	}
}

/*******************************************

-------------------------------------------
会社概要・アクセス
********************************************/

#outline {}
#outline .client {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#outline .client ul {
	width: 50%;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	#outline .client ul {
		width: 100%;
	}
	#outline .client ul li {
		width: 100%;
		border-bottom: 1px solid #D2D2D2;
		padding: .5em 0;
	}
}

#outline .access {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
#outline .access .access-data dl {
	padding: 1em;
	display: flex;
	align-items: center;
}
#outline .access .access-data dl + dl {
	border-top: #D2D2D2 1px solid;
}
#outline .access .access-data dl dt {
	width: 175px;
	box-sizing: border-box;
}
#outline .access .access-data dl dt em {
	padding-left: 2em;
	position: relative;
}
#outline .access .access-data dl dt em::after {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	background: #1C294F;
	top: 50%;
	margin-top: -6px;
	position: absolute;
}
#outline .access .access-data dl dd {
	border-left: 1px solid #C8C8C8;
	padding-left: 40px;
}
@media only screen and (max-width: 767px) {
	#outline .access .access-data dl {
		display: block;
		padding: 0;
	}
	#outline .access .access-data dl dd {
		padding-left: 0;
		padding-top: 1em;
		border: none;
		font-size: 14px;
	}
	#outline .access .access-data dl + dl {
		margin-top: 1em;
		padding-top: 1em;
	}
}

#outline .access .gmap {
	margin-top: 40px;
	padding-bottom: 40px;
}
#outline .access .gmap iframe {
	width: 100%;
	min-height: 450px;
}