@charset "utf-8";

/* ========================================================
	company.css => 会社概要用CSS
======================================================== */

/* タイトル
============================================================================================================ */
/* page_bg_title */
.page_bg_title h1:before {
	background-image: url(../images/page_title_bg.jpg);
}

/* main
============================================================================================================ */
#company .main {
	position: relative;
	margin-bottom: 100px;
	text-align: center;
	border-bottom: 1px solid #015dac;
}
#company .main dl {
	margin-top: 35px;
}
#company .main dl dt {
	position: relative;
	display: inline-block;
	padding-bottom: 20px;
	font-size: 28px;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
}
#company .main dl dt:before,
#company .main dl dt:after {
	content: "";
	position: absolute;
	bottom: 10px;
	width: 30px;
	border-top: 1px solid #015dac;
}
#company .main dl dt:before {
	left: -70px;
	-webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
	-webkit-transform: rotate(65deg);
	-ms-transform: rotate(65deg);
	-o-transform: rotate(65deg);
	transform: rotate(65deg);
}
#company .main dl dt:after {
	right: -80px;
	-webkit-transform-origin: 0;
	-moz-transform-origin: 0;
	-ms-transform-origin: 0;
	-o-transform-origin: 0;
	transform-origin: 0;
	-webkit-transform: rotate(-55deg);
	-ms-transform: rotate(-55deg);
	-o-transform: rotate(-55deg);
	transform: rotate(-55deg);
}

#company .main .logo {
	position: absolute;
	left: 50%;
	bottom: -130px;
	width: 260px;
	height: 260px;
	padding-top: 60px;
	margin-left: -130px;
	background-color: rgba(255,255,255,.8);
	border-radius: 100%;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#company .main {
		margin-bottom: 60px;
	}
	#company .main .txt {
		text-align: left;
		margin: 0 10px;
	}
	#company .main dl {
		margin-top: 25px;
	}
	#company .main dl dt {
		font-size: 2rem;
	}
	#company .main dl dt:before {
		left: -40px;
	}
	#company .main dl dt:after {
		right: -40px;
	}
	#company .main .logo {
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		-o-transform: scale(0.5);
		transform: scale(0.5);
	}

}



/* お客様へのお約束
============================================================================================================ */
#company .commitment {
	position: relative;
	margin-bottom: 20px;
	z-index: 2;
}
#company .commitment ol {
	margin-top: 50px;
}
#company .commitment li {
	position: relative;
	padding: 40px 0;
	border-top: 1px solid #b5b5b5;
	text-align: center;
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: bold;
}
#company .commitment li .num {
	position: absolute;
	width: 50px;
	height: 50px;
	top: -25px;
	left: 50%;
	margin-left: -25px;
	padding-top: 10px;
	background-color: #ffde00;
	border-radius: 100%;
	text-align: center;
}
#company .commitment li .num:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background-color: #ffde00;
	-webkit-transform: scaleX(0.6) rotate(45deg);
	-ms-transform: scaleX(0.6) rotate(45deg);
	-o-transform: scaleX(0.6) rotate(45deg);
	transform: scaleX(0.6) rotate(45deg);
	z-index: -1;
}
@media screen and (max-width: 768px) {
	#company .commitment {
		margin-bottom: 0;
	}
	#company .commitment ol {
		margin-top: 30px;
	}
	#company .commitment li {
		padding: 30px 10px;
		font-size: 1.6rem;
		text-align: left;
	}
	#company .commitment li .num {
		top: -13px;
		width: 26px;
		height: 26px;
		margin-left: -13px;
		padding-top: 5px;
		font-size: 1.2rem;
	}
	#company .commitment li .num:after {
		bottom: -2px;
	}
}



/* 会社概要
============================================================================================================ */
#company .profile table {
	width: 700px;
	margin: auto;
	border-bottom: 1px solid #b5b5b5;
	font-size: 16px;
	font-size: 1.6rem;
}
#company .profile table th,
#company .profile table td {
	border-top: 1px solid #b5b5b5;
	vertical-align: top;
}
#company .profile table th {
	width: 180px;
	padding: 1em 0 1em 1em;
	font-weight: bold;
	background-color: #fff8cc;
}
#company .profile table td {
	padding: 1em 0 1em 40px;
}
#company .profile table td .map {
	margin-top: 15px;
}
#company .profile > p {
	text-align: center;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	#company .profile table {
		width: 100%;
		font-size: 100%;
		line-height: 1.6;
	}
	#company .profile table th {
		width: 130px;
	}
	#company .profile table td {
		padding: 12px;
	}
	#company .profile table td .map {
		margin: 12px -12px -12px -142px;
		border-top: 1px solid #b5b5b5;
	}
	#company .profile table td .map iframe {
		height: 160px;
	}
	#company .profile > p {
		margin: 15px 20px;
	}

}



