@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */

/* 会社概要 */
/* -------------------------------------------------- */
#outline #pagetitle::after {
	content: "COMPANY OUTLINE";
}

#companyOutline {
	padding-bottom: 70px;
}

#outlineImg {
	width: 100%;
}

#companyOutline img {
	width: 100%;
	height: auto;
}

#outLineTable {
	width: 100%;
}

#outLineTable th {
	width: 20%;
	font-weight: bold;
	padding: 30px;
	border-bottom: 1px solid #dcdcdc;
	text-align: left;
}

#outLineTable td {
	width: 80%;
	border-bottom: 1px solid #dcdcdc;
	padding: 20px 0;
}

#qualification {
	width: 100%;
}

#qualification th {
	width: 50%;
	font-weight: normal;
	padding: 0;
	border-bottom: none;
	text-align: left;
}

#qualification td {
	width: 50%;
	border-bottom: none;
	padding: 0;
}

.map {
	padding: 0 10px;
	margin-left: 10px;
	display: inline-block;
	background: #009843;
	border-radius: 30px;
	transition: all 0.3s ease-in-out 0s;
}

.map:hover {
	padding: 0 10px;
	margin-left: 10px;
	display: inline-block;
	background: #009843;
	border-radius: 30px;
	opacity: 0.7;
}

.map span {
	/*	padding-top: 5px;*/
	display: inline-block;
	vertical-align: middle;
	color: #FFF;
	line-height: 1;
}

.map::after {
	content: "";
	width: 9px;
	height: 12px;
	margin-left: 5px;
	background: url(../../../img/common/icon_map.svg) 0 0 no-repeat;
	display: inline-block;
	vertical-align: middle;
}

/* 組織図 */
/* -------------------------------------------------- */
#organizationChart {
	padding-bottom: 70px;
}

#chartImg img {
	width: 100%;
	height: auto;
}

/* 部署紹介 */
/* -------------------------------------------------- */

#departmentIn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.department1 {
	width: 100%;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #dcdcdc;
	display: flex;
	flex-direction: column;
}

.department2 {
	width: 31.5%;
	padding: 20px;
	margin-bottom: 20px;
	border: 2px solid #dcdcdc;
	display: flex;
	flex-direction: column;
}

.departmentImg {
	order: 1;
	padding-bottom: 10px;
}

.departmentImg img {
	width: 100%;
	height: auto;
}

.department1 h3,
.department2 h3 {
	order: 2;
	font-size: 1.6rem;
	font-weight: bold;
}

.department1 p,
.department2 p {
	order: 3;
}

/* フッターリンク */
/* ------------------------------------ */
#footerLink {
	padding-top: 40px;
	padding-bottom: 20px;
}

#footerLinkHead {
	margin-bottom: 5px;
	font-size: 2rem;
	font-weight: 700;
}

#footerLinkWrap {
	padding: 20px 0;
	background-color: #ffffff;
}

#footerLinkList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: -12px;
}

.footerLinkItem {
	width: calc(20% - 12px * 4 / 5);
	margin-right: 12px;
	margin-bottom: 12px;
	border: 1px solid #bfbfbf;
}

.footerLinkItem:nth-child(5n) {
	margin-right: 0;
}

.footerLinkItem a {
	height: 50px;
	display: block;
	background: #ffffff url(../../img/common/icon_link_green.png) no-repeat center right 5px/8px auto;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.footerLinkLogo {
	width: 100%;
	height: 100%;
	padding: 0 20px;
	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;
}

.footerLinkLogo img {
	width: 100%;
}

/* ------------------------------------ */
/* ホバーエフェクト */
/* ------------------------------------ */
@media screen and (min-width: 1025px) {
	.footerLinkItem a:hover {
		opacity: 0.7;
	}
}


/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	#companyOutline {
		padding-bottom: 40px;
	}

	#organizationChart {
		padding-bottom: 40px;
	}
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#outLineTable th {
		width: 100%;
		padding: 10px 0 0 0;
		border-bottom: none;
		text-align: left;
		display: block;
	}

	#outLineTable td {
		width: 100%;
		padding: 0 0 10px;
		border-bottom: 1px solid #dcdcdc;
		display: block;
	}

	#qualification th {
		width: 85%;
		font-weight: normal;
		padding: 0;
		border-bottom: none;
		text-align: left;
		display: table-cell;
	}

	#qualification td {
		width: 15%;
		border-bottom: none;
		padding: 0;
		display: table-cell;
	}

	#departmentIn {
		display: block;
	}

	.department1 {
		padding: 10px;
	}

	.department2 {
		padding: 10px;
		width: 100%;
	}

	/* フッターリンク */
	/* ------------------------------------ */
	#footerLinkWrap {
		padding: 15px;
	}

	#footerLinkList {
		margin-bottom: 0;
	}

	.footerLinkItem {
		width: calc(50% + 1px);
		margin: -1px 0 0 -1px;
	}

	.footerLinkItem a {
		background-position: center right 10px;
	}

	.footerLinkLogo {
		padding: 4px 25px 4px 15px;
	}

	.footerLinkLogo img {
		width: auto;
		max-width: 100%;
		max-height: 100%;
	}

	.footerLinkLogo img.w80 {
		max-width: 80%;
	}
}