@charset "utf-8";

/***********************************************************************

------------------------------------------------------------------------
共通パーツ
***********************************************************************/

/* 背景色
========================================== */

.bgGray {background-color: #dbdcdc;}

/* 見出し
========================================== */

/* ---------------------------
セクション見出し
----------------------------- */

[class^="titSec"] {
	margin-top: 100px;
}
[class^="titSec"] > span {
	display: inline-block;
	position: relative;
	padding: 0 60px 12px 0;
}
[class^="titSec"] > span::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}
[class^="titSec"] > span::after {
	content: "";
	width: 7px;
	height: 7px;
	background-color: #000;
	position: absolute;
	bottom: -3px;
	right: 0;
}
[class^="titSec"] > span img {
}
[class^="titSec"] em {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin-top: 3px;
}

/* サイズ調整 */
.titSec-S > span {min-width: 360px;}
.titSec-L > span {min-width: 550px;}

@media only screen and (max-width: 767px) {
	[class^="titSec"] {
		margin-top: 50px;
	}
	[class^="titSec"] > span {
		width: 100%;
		padding-right: 30px;
		min-width: 0!important;
	}
	[class^="titSec"] > span img {
		height: 26px;
	}
	[class^="titSec"] em {
		font-size: 17px;
	}
}

/* ---------------------------
グレー見出し
----------------------------- */

.titGray {
	margin-top: 75px;
}
.titGray em {
	display: inline-block;
	background-color: #a5a5a6;
	color: #fff;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	padding: 10px 20px 13px;
	min-width: 170px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.titGray {
		margin-top: 40px;
	}
	.titGray em {
		font-size: 18px;
		padding: 10px 15px;
		width: 100%;
	}
}

/* ボタン
========================================== */

.btnBlue {
	text-align: center;
	display: inline-block;
	background-color: #004287;
	font-size: 28px;
	color: #fff!important;
	font-weight: 700;
	padding: 3px 15px;
	min-width: 480px;
}
.btnBlue img {
	display: inline-block;
	margin-left: 15px;
	position: relative;
	top: 16px;
	width: 28px;
}
@media only screen and (max-width: 767px) {
	.btnBlue {
		padding: 10px 13px;
		font-size: 20px;
		min-width: 0;
		width: 100%;
		max-width: 600px;
		border-radius: 5px;
	}
	.btnBlue img {
		width: 18px;
		margin-left: 5px;
		top: 12px;
	}
}

/***********************************************************************

------------------------------------------------------------------------
テーブル
***********************************************************************/

table.tblBasic {
	width: 100%;
}

/* 保有重機
========================================== */

.mc_list {
	width: 100%;
	max-width: 960px;
	margin: 75px auto 0;
}
.mc_list table {
	width: 100%;
	min-width: 600px;
}
.mc_list table th,
.mc_list table td {
	padding: 10px 15px;
	text-align: center;
}
.mc_list table thead tr th:last-of-type,
.mc_list table tbody tr td:last-of-type {
	border-right: none!important;
}
.mc_list table th {
	background-color: #004387;
	color: #fff;
	border-right: 2px solid #fff;
	font-weight: 700;
	font-size: 19px;
}
.mc_list table td {
	border-right: 2px solid #dbdcdc;
	font-weight: 400;
	font-size: 17px;
}
.mc_list table tbody tr:nth-of-type(even) td {
	background-color: #dbdcdc;
	border-right-color: rgba(255,255,255,.85);
}
.mc_list table tbody tr td:first-of-type {
	font-size: 18px;
}
@media only screen and (max-width: 767px) {
	.mc_list {
		margin-top: 40px;
	}
	.mc_list table th,
	.mc_list table td {
		padding: 5px;
		text-align: left;
		font-size: 16px!important;
	}
}

/*******************************************

-------------------------------------------
スマホ時スクロール
********************************************/

@media only screen and (max-width: 767px) {
	.spScroll {
		overflow-x: auto;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
    }
    .spScroll::-webkit-scrollbar{height:5px;}
    .spScroll::-webkit-scrollbar-track{background:#F1F1F1;}
	.spScroll::-webkit-scrollbar-thumb {background:#BCBCBC;}
}