@charset "utf-8";

/*------------------------------*/
/* ページ固有設定*/
/*------------------------------*/

/* 上部固定背景 */
.services_top_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/image/wireframe_building_no.png');
	background-image: url('/image/wireframe_building.webp');
	background-position: right bottom;
	background-size: 80%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 0;
}

/* x-index */
.z_index_1 {
	z-index: 1;
}

/* 土木工事 */
.bg_doboku {
	background-image: url('/image/doboku_kouji.svg');
	background-repeat: no-repeat;
	background-size: auto 120px;
	background-position: right center;
	background-attachment: scroll;
}

/* 足場工事 */
.bg_ashiba {
	background-image: url('/image/ashiba_kouji.svg');
	background-repeat: no-repeat;
	background-size: auto 120px;
	background-position: right center;
	background-attachment: scroll;
}

/*------------------------------*/
/* 左右枠 */
.flex_row {
	display: flex;
}
.label_box {
	width: 50px;
	font-weight: bold;
}
.content_box {
	flex: 1;
}

/*------------------------------*/
/* 問合せボタン */
.inquiry_button {
	transform: scale(2);
	transition: 0.5s;
}
.inquiry_button:hover {
	transform: scale(2.2);
}

/*------------------------------*/
/* お電話でのお問い合わせはコチラ */
.tel_icon_frame {
	color: #5bb431;
	font-size:25px;
	font-weight: bold;
	border:2px solid #5bb431;
	border-radius:10px;
	padding:10px;
	background-color:#ffffff;
	transition: 0.3s;
}
.tel_icon_frame:hover {
	background-color:#dff3de;
}
.tel_icon {
	width:40px;
}
.inline_block {
	display: inline-block;
	vertical-align: middle;
}
