@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

/*================================================
 *  一般・共通設定
 ================================================*/

body {
	font-size:16px;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,sans-serif;
	color: #333;
	text-align: justify;
	text-justify: inter-ideograph;
}

a,.linearAnime {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
    	transition: all 0.1s linear;
}
a.underline {
	text-decoration: underline;
}
a:hover {
	opacity: 0.7;
}
a.underline:hover {
	opacity: 1;
	text-decoration: none;
}

img,svg {
	vertical-align: bottom;
}

/*色*/
.color_main {
	color: #005bab;
}
.color_red {
	color: #ca1a21;
}
.color_green {
	color: #009844;
}
.color_white {
	color: #fff;
}
.color_yellow {
	color: #ffeb00;
}
.color_link {
	color: #0071bc;
}


/*背景*/
.bg_main {
	background-color: #005bab;
}
.bg_main_ptn {
	background: #005bab url(../images/bg_ptn_blue.png);
}
.bg_ptn_gray {
	background: url(../images/bg_ptn_gray.png);
}
.bg_red {
	background-color: #ca1a21;
}
.bg_green {
	background-color: #009844;
}
.bg_ptn_green {
	background: #009844 url(../images/bg_ptn_green.png);
}
.bg_yellow {
	background-color: #ffeb00;
}
.bg_white {
	background-color: #fff;
}
/* position */
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
/* sp/pcの切替 */
.sp,.sp_inline {
    display: none;
}
/*文字揃え*/
.ta-l {
	text-align: justify;
	text-justify: inter-ideograph;
}
.ta-r {
	text-align: right;
}
.ta-c {
	text-align: center!important;
}
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: center;
}
/*文字種類*/
.ff_english,
.ff_roboto {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
/*文字太さ*/
.fontThin {
	font-weight: 100;
}
.fontExLight {
	font-weight: 200;
}
.fontLight {
	font-weight: 300;
}
.fontRegular {
	font-weight: 400;
}
.fontMedium {
	font-weight: 500;
}
.fontSemiBold {
	font-weight: 600;
}
.fontBold {
	font-weight: 700;
}
.fontExBold {
	font-weight: 800;
}
.fontBlack {
	font-weight: 900;
}

/*幅*/
.wrap {
	max-width: 940px;
	margin: 0 auto;
	width: 100%;
}


/*object-fit*/
.object-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;';
}

/*Animate.css用*/
.animated {
	opacity: 0;
}
.animated.move {
	opacity: 1;
}

/*******flexbox*******/
[class*="flex_start"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_end"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_between"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_center"] {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class*="flex_inline"] {
	display: -webkit-inline-box;
	display: inline-flex;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.align_items_start {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.align_items_center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.align_items_end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.direction_column {
	 -webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.row_reverse {
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}



/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: #fff;
	z-index: 1000;
}
body:not(#index) header::after {
	position: absolute;
	content: '';
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e6e6e6;
}
header .header_inner {
	width: 1400px;
	max-width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 auto;
}
header .header_inner .logo {
	padding-left: 60px;
}

/*ナビゲーション*/
header .header_inner nav {
	margin-left: auto;
	height: 100%;
}
header .header_inner nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
	font-size: 15px;
	height: 100%;
}
header .header_inner nav ul li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	height: 100%;
	padding: 0 23px;
	position: relative;
	white-space: nowrap;
}
header .header_inner nav ul li a span{
	color: #999;
	font-size: 12px;
	display: block;
	margin-top: 0.8em;
}

header .header_inner nav ul li a.active,
header .header_inner nav ul li a:hover {
	opacity: 1;
}
header .header_inner nav ul li a::before,
header .header_inner nav ul li a::after {
	position: absolute;
	content: '';
	-webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
header .header_inner nav ul li a.active::before,
header .header_inner nav ul li a:hover::before {
	width: 100%;
	height: 3px;
	background-color: #005bab;
	bottom: -1px;
	left: 0;
	z-index: 1;
}
header .header_inner nav ul li a.active::after,
header .header_inner nav ul li a:hover::after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 6px 5px;
	border-color: transparent transparent #005bab transparent;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}


/*TEL+お問い合わせ*/
header .header_inner .tel_contact {
	width: 250px;
	height: 50px;
	border: 1px solid #005bab;
	display: table;
	margin-left: 30px;
}
header .header_inner .tel_contact > div {
	display: table-cell;
	vertical-align: middle;
}
header .header_inner .tel_contact > div:first-child {
	font-size: 22px;
	font-weight: 500;
	padding-left: 0.6em;
}
header .header_inner .tel_contact > div:first-child span {
	font-size: 17px;
	margin-right: 0.1em;
}
header .header_inner .tel_contact > div:last-child {
	width: 60px;
}
header .header_inner .tel_contact > div:last-child a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 24px;
}

/*SPメニュー*/
#sp_menu_btn {
	display: none;
}
#sp_nav {
	display: none;
}


/*================================================
 *  パンくずリスト
 ================================================*/
ol.breadcrumb {
	padding-top: 20px;
	margin-top: 100px;
}
ol.breadcrumb li {
	font-size: 12px;
	display: inline;
}
ol.breadcrumb li:before {
	content: " > ";
}
ol.breadcrumb li:first-child:before {
	content:"";
}
ol.breadcrumb li a {
	color: #005bab;
	text-decoration: underline;
}
ol.breadcrumb li a:hover {
	opacity: 1;
	text-decoration: none;
}



/*================================================
 *  ページタイトル
 ================================================*/
#pageTitle {
	height: 130px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
#pageTitle h2 {
	color: #666;
	font-size: 14px;
	text-align: center;
}
#pageTitle h2 span {
	display: block;
	font-size: 30px;
	margin-bottom: 0.25em;
}
#news #pageTitle h2 span {
	margin-bottom: 0;
	font-size: 28px;
}

/*================================================
 *  コンテンツ
 ================================================*/
main {
	overflow: hidden;
}
.contents {
	padding-bottom: 150px;
}

/*******見出し*******/
/*横斜め線有*/
.border_title {
	font-size: 26px;
	font-weight: bold;
	position: relative;
	margin-bottom: 1em;
	padding-left: 1.3em;
	line-height: 1.3;
}
.border_title::before {
	position: absolute;
	content: '';
	width: 6px;
	height: 1.2em;
	top: -0;
	left: 0;
	background-color: #005bab;
	transform: skewX(-30deg);
	-webkit-transform: skewX(-30deg);
	transform-origin: left bottom;
}

/*英語＋日本語*/
.head_title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 50px;
	position: relative;
}
.head_title span {
	font-size: 40px;
	display: block;
	margin-bottom: 0.2em;
}

/*******表*******/
.table_common {
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}
.table_common th,
.table_common td {
	line-height: 1.75;
	padding: 0.8em 1.25em;
	background-clip: padding-box;
}
.table_common tbody tr:not(:last-child) th,
.table_common tbody tr:not(:last-child) td {
	border-bottom: 1px solid #ccc;
}
.table_common th {
	background-color: #f2f2f2;
	text-align: justify;
	text-justify: inter-ideograph;
	width: 220px;
	padding-right: 0;
}


/*******商品リスト*******/
#parts_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	z-index: 10;
}
#parts_list li {
	width: 300px;
	background-color: #fff;
	box-shadow: 0px 0px 0.3em 0px rgba(0, 0, 0, 0.5);
}
#parts_list li:not(:nth-child(3n)) {
	margin-right: 20px;
}
#parts_list li:nth-child(n+4) {
	margin-top: 20px;
}
#parts_list li a {
	display: block;
	height: 100%;
}
#parts_list li figure {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: stretch;
	align-items : stretch;
	height: 100%;
}
#parts_list li figure > img {
	max-width: 100%;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}
#parts_list li figure figcaption {
	position: relative;
	padding: 20px;
	line-height: 1.5;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-grow: 1;
    flex-grow: 1;
}
#parts_list li figure figcaption .name {
	font-weight: bold;
	margin-bottom: 0.5em;
}
#parts_list li figure figcaption .name span {
	font-size: 22px;
	display: block;
}
#parts_list li figure figcaption .name + p {
	margin-top: auto;
}

#parts_list li figure figcaption .btn {
	margin-top: 1em;
	position: relative;
	text-align: center;
}
#parts_list li figure figcaption .btn > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	width: 100%;
}
#parts_list li figure figcaption .btn svg path {
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
	fill: transparent;
}
#parts_list li:hover figure figcaption .btn {
	color: #fff;
}
#parts_list li:hover figure figcaption .btn svg path {
	fill: #005bab;
}


/*******箇条書きリスト*******/
.kome_list li,
.disc_list li,
.circle_list li,
.indent_list li {
	list-style-position:inside;
	padding-left: 1em;
	text-indent: -1em;
}
/*※箇条書き*/
.kome_list li:before{
	display: inline;
	content: "\203b";
}
/*・箇条書き*/
.disc_list li:before{
	display: inline;
	content: "\30fb";
}
/*●箇条書き*/
.circle_list li:before{
	display: inline;
	content: "\25CF";
}
/*()数字*/
.number_list li{
	padding-left: 2.16em;
	text-indent: -2.66em;
	list-style-type:none;
	list-style-position:inside;
	counter-increment: cnt;
}
.number_list li:before{
	display: inline;
	content: "（" counter(cnt) "）";
}

/*******ボタン*******/
.button {
	text-align:center;
}
.button a,
.button div a,
.button input {
	display: inline-block;
    padding: 1em 0;
    width: 300px;
    font-size: 18px;
    font-weight: bold;
    color: #fff!important;
    text-align: center;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none!important;
	background: #999;
}
.button .gray { /*修正ボタン*/
    margin: 0 20px 0 0;
}
.button div a,
.button input[type=submit] { /*トップに戻る+同意*/
    margin: 0;
	background:#fb9a40;
}
.button input:hover,
.button a:hover{
	opacity: 0.7!important;
}

/*******SVGホバー用*******/
.svg_hover {
	display: inline-block;
	position: relative;
	text-align: center;
}
.svg_hover > span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	width: 100%;
}
.svg_hover:hover {
	opacity: 1;
	color: #005bab;
}
.svg_hover svg path {
	-webkit-transition: all 0.1s linear;
	transition: all 0.1s linear;
	fill: transparent;
}
.svg_hover:hover svg path {
	fill: #fff;
}



/*================================================
 *  ページトップ
 ================================================*/
.pagetop {
	cursor: pointer;
	display: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
	z-index: 1000;
	width: 1em;
	height: 1em;
	background-color: rgba(255,255,255,0.5);
	border: 1px solid #005bab;
	border-radius: 50%;
	font-size: 50px;
	-webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.pagetop::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	margin-top: -0.1em;
	width: 0.24em;
	height: 0.24em;
	border-top: 2px solid #005bab;
	border-left: 2px solid #005bab;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: left top;
}
.pagetop:hover {
	background-color: rgba(255,255,255,1);
}

/*廃車王用*/
#purchase .pagetop,
#purchase .pagetop::after {
	border-color: #ca1a21;
}

/*採用情報用*/
#recruit .pagetop,
#recruit .pagetop::after {
	border-color: #009844;
}


/*================================================
 *  フッター
 ================================================*/
/*******お問い合わせ*******/
footer [class^="contact_box"] {
	width: 1050px;
	position: relative;
	margin: -35px auto 0;
	bottom: -35px;
	padding: 0 80px 50px 100px;
}
.sp_fixed_none footer [class^="contact_box"],
body:not(#purchase) footer .contact_box_purchase,
body:not(#recruit) footer .contact_box_recruit,
#purchase footer .contact_box,
#recruit footer .contact_box {
	display: none;
}



footer [class^="contact_box"] .fuki {
	position: relative;
	top: -30px;
	text-align: center;
	width: 100%;
	z-index: 10;
}
footer [class^="contact_box"] .fuki span {
	display: block;
	position: absolute;
	top: 19px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	font-size: 24px;
	font-weight: bold;
	width: 100%;
}
footer [class^="contact_box"] .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items : stretch;
	width: 100%;
	position: relative;
	z-index: 1;
}

footer [class^="contact_box"] .inner .tel > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	pointer-events: none;
}
footer [class^="contact_box"] .inner .tel > a span:first-child {
	font-size: 47px;
	margin-right: 0.25em;
}
footer [class^="contact_box"] .inner .tel > a span:last-child  {
	font-size: 54px;
}
footer [class^="contact_box"] .inner .tel > div {
	line-height: 1.5;
	margin-top: 0.5em;
	text-align: left;
}


footer [class^="contact_box"] .inner .contact a {
	border: 1px solid #fff;
	font-size: 26px;
	font-weight: bold;
	width: 410px;
	height: 80px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
#purchase footer .contact_box_purchase .inner .contact a { /*廃車王用*/
	border: none;
}
footer [class^="contact_box"] .inner .contact a:hover {
	opacity: 1;
	background-color: #fff;
}
footer .contact_box .inner .contact a:hover {
	color: #005bab;
}

/*廃車王用*/
#purchase footer .contact_box_purchase .img_purchase {
	position: absolute;
	right: -23px;
	bottom: 0;
}

/*採用情報用*/
#recruit footer .contact_box_recruit .inner .contact a:hover {
	color: #009844;
}

/*******メイン*******/
footer .footer_main {
	background-color: #f2f2f2;
	padding: 70px 0 30px;
}
.sp_fixed_none footer .footer_main {
	padding-top: 40px;
}
footer .footer_main .inner {
	width: 1050px;
	margin: 0 auto;
}
footer .footer_main .inner .logo_add {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	line-height: 1.75;
	border-bottom: 1px solid #b3b3b3;
	width: 100%;
	padding-bottom: 25px;
}
footer .footer_main .inner .logo_add > div:first-child {
	width: 285px;
}
footer .footer_main .inner .logo_add .bnr_list {
	margin-left: auto;
	width: 410px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
footer .footer_main .inner .logo_add .bnr_list li a {
	display: block;
	position: relative;
}
footer .footer_main .inner .logo_add .bnr_list li a::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 1px solid #004ea2;
}
footer .footer_main .inner .logo_add .bnr_list li a.border_red::after {
	border-color: #ca1a21;
}

footer .footer_main .inner .link_copy {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	font-size: 14px;
	padding-top: 1.3em;
}
footer .footer_main .inner .link_copy > div:last-child {
	font-size: 12px;
}

/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {

body {
	font-size: 4vw;
}	
img {
	max-width: 100%;
}



/*文字揃え*/
.pcspText { /*PC：中央揃え・SP左揃え用*/
	text-align: justify;
	text-justify: inter-ideograph;
}
/* sp/pcの切替 */
.sp {
	display: block;
}
.sp_inline {
	display: inline;
}
.pc,.sp_none {
	display: none;
}

/*幅*/
.wrap {
	max-width: inherit!important;
	width: 90%;
}
.wrap_sp_small {
	max-width: inherit!important;
	width: 80vw!important;
	margin-left: auto;
	margin-right: auto;
}
.sp_wid100 {
	width: 100%;
}



/*******flexbox*******/
.flex_start_spblock,
.flex_end_spblock,
.flex_between_spblock,
.flex_center_spblock,
.flex_inline_spblock {
	display: block;
}


/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: relative;
	top: auto;
	left: auto;
	height: 14vw;
}
#index header {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
}
header .header_inner {
	width: 100%;
}
header .header_inner .logo {
	padding-left: 5vw;
}
#index header .header_inner .logo .img_logo,
body:not(#index) header .header_inner .logo .img_logo_white {
	display: none;
}
header .header_inner .logo img {
	height: 9vw;
}

/*ナビゲーション*/
header .header_inner nav {
	display: none;
}


/*TEL+お問い合わせ*/
header .header_inner .tel_contact {
	display: none;
}

/*SPメニュー*/
#sp_menu_btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	width: 14vw;
	height: 14vw;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 6000;
	background-color: #fff;
}
#sp_menu_btn span:first-child {
	font-size: 3vw;
	font-weight: 500;
}
#sp_menu_btn.active {
	background-color: transparent;
}
#sp_menu_btn.active span:first-child {
	display: none;
}

/*ハンバーガーアイコン*/
.hamburger-icon {
	position: relative;
	display: block;
	margin: 3vw auto;
}
.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
	width: 8vw;
	height: 3px;
	-webkit-transition: all .3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: all .3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	background-color: #005bab;
}
.hamburger-icon:before,
.hamburger-icon:after {
	position: absolute;
	top: -2vw;
	left: 0;
	content: ' ';
}
.hamburger-icon:after {
	top: 2vw;
}
.active .hamburger-icon {
	background-color: transparent;
}
.active .hamburger-icon:before,
.active .hamburger-icon:after {
	background-color: #fff;
	top: 0;
}
.active .hamburger-icon:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.active .hamburger-icon:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*================================================
 *  ナビゲーション
 ================================================*/
#sp_nav {
	background: rgba(0,91,171,0.9);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: scroll;
	width: 100%;
	padding: 5vw 14vw 14vw;
	z-index: 5000;
	color: #fff;
}
#sp_nav ul li {
	text-align: center;
	font-size: 5vw;
	font-weight: bold;
}
#sp_nav ul li a {
	display: block;
	padding: 1em 0;
}
/*================================================
 *  ページタイトル
 ================================================*/
#pageTitle {
	height: 20vw;
}
#pageTitle h2 {
	font-size: 3vw;
}
#pageTitle h2 span {
	font-size: 6vw;
	margin-bottom: 0.2em;
}
#news #pageTitle h2 span {
	font-size: 5.5vw;
}

/*================================================
 *  コンテンツ
 ================================================*/
.contents {
	padding-bottom: 20vw;
}

/*******見出し*******/
/*横斜め線有*/
.border_title {
	font-size: 5.2vw!important;
}

/*英語＋日本語*/
.head_title {
	font-size: 3.6vw;
	padding-bottom: 2em;
}
.head_title span {
	font-size: 7vw;
}

/*******表*******/
.table_common th,
.table_common td {
	display: block;
	padding: 0.8em 0 1.8em;
}
.table_common,
.table_common tbody tr:not(:last-child) th,
.table_common tbody tr:not(:last-child) td {
	border: none;
}
.table_common th {
	width: 100%;
	text-align: center;
	padding: 0.5em 0;
}
.table_common tr:last-of-type td {
	padding-bottom: 0;
}


/*******商品リスト*******/
#parts_list {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#parts_list li {
	width: 43.5vw;
}
#parts_list li:not(:nth-child(3n)) {
	margin-right: 0;
}
#parts_list li:nth-child(n+3) {
	margin-top: 3vw;
}
#parts_list li figure figcaption {
	padding: 3vw;
}
#parts_list li figure figcaption .name {
	font-size: 3.6vw;
}
#parts_list li figure figcaption .name span {
	font-size: 4.2vw;
}
#parts_list li figure figcaption .name + p {
	font-size: 3.6vw;
}

#parts_list li figure figcaption .btn img,
#parts_list li figure figcaption .btn svg {
	width: 35vw;
	height: auto;
	margin: 0 auto;
}

/*******ボタン*******/
.button a,
.button div a,
.button input {
    display: block;
    width: 80%;
    font-size: 5vw;
    padding: 0.8em 0;
	margin: 0 auto;
}
.button .gray { /*修正ボタン*/
    margin: 0 auto 5vw;
}
.button div a,
.button input[type=submit] {
    margin: 0 auto;
}

/*******SVGホバー用*******/
.svg_hover img,
.svg_hover svg {
	height: auto;
	stroke-width:2;
}


/*================================================
 *  ページトップ
 ================================================*/
.pagetop {
    bottom: 32vw;
	right: 3vw;
	font-size: 12vw;
}
.sp_fixed_none .pagetop {
	bottom: 3vw;
}



/*================================================
 *  フッター
 ================================================*/
/*******お問い合わせ*******/
footer [class^="contact_box"] {
	width: 90vw;
	margin: -5vw auto 0;
	bottom: -5vw;
	padding: 0 5vw 8vw;
}
footer [class^="contact_box"] .fuki {
	top: -5vw;
	width: 80vw;
}
footer [class^="contact_box"] .fuki img,
footer [class^="contact_box"] .fuki svg {
	width: 100%;
	height: auto;
	stroke-width:2;
}
footer [class^="contact_box"] .fuki span {
	top: 0.7em;
	font-size: 4.2vw;
}
footer [class^="contact_box"] .inner {
	display: block;
}
footer [class^="contact_box"] .inner .tel {
	margin-bottom: 5vw;
}
footer [class^="contact_box"] .inner .tel > a {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	pointer-events: auto;
}
footer [class^="contact_box"] .inner .tel > a span:first-child {
	font-size: 8vw;
}
footer [class^="contact_box"] .inner .tel > a span:last-child {
	font-size: 10vw;
	margin-top: -0.1em;
}
footer [class^="contact_box"] .inner .tel > div p {
	text-indent: -4em;
	padding-left: 4em;
	margin-right: -1em;
}

footer [class^="contact_box"] .inner .contact a {
	font-size: 5vw;
	width: 100%;
	height: auto;
	display: block;
	padding: 1em 0;
	text-align: center;
}

/*******メイン*******/
footer .footer_main {
	padding: 12vw 0 17vw;
}
.sp_fixed_none footer .footer_main {
	padding: 8vw 0 0;
}
footer .footer_main .inner {
	width: 85vw;
}
footer .footer_main .inner .logo_add {
	display: block;
	padding-bottom: 5vw;
	text-align: center;
}
footer .footer_main .inner .logo_add > div:first-child {
	width: 100%;
	margin-bottom: 3vw;
}
footer .footer_main .inner .logo_add > div:first-child img{
	width: 45vw;
}

footer .footer_main .inner .logo_add .bnr_list {
	width: 100%;
	margin: 5vw auto 0;
}
footer .footer_main .inner .logo_add .bnr_list li {
	width: 41vw;
}

footer .footer_main .inner .link_copy {
	display: block;
	font-size: 3.6vw;
	padding: 5vw 0;
	text-align: center;
}
footer .footer_main .inner .link_copy > div:last-child {
	font-size: 3vw;
	margin-top: 5vw;
}

/*================================================
 *  SP下タブ
 ================================================*/
/*.sp_fixed_bottom {
	color: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
	height: 17vw;
}
.sp_fixed_none .sp_fixed_bottom {
	display: none;
}
.sp_fixed_bottom li {
	width: 33.3333%;
}
.sp_fixed_bottom li:nth-child(n+2) {
	border-left: 1px solid #fff;
}
.sp_fixed_bottom li a {
	font-size: 3.6vw;
	font-weight: bold;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
}
.sp_fixed_bottom li a span {
	font-size: 150%;
	display: block;
	margin: 0 auto 2vw;
}*/


/*******廃車王用*******/
footer .footer_main {
	padding-bottom: 32vw;
}

.sp_fixed_none .sp_fixed_bottom_purchase {
	display: none;
}

.sp_fixed_bottom_purchase {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 22vw;
	padding: 5vw 3vw 3vw;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
}
.sp_fixed_bottom_purchase .fuki {
	position: absolute;
	top: -9vw;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	text-align: center;
	width: 80vw;
}
.sp_fixed_bottom_purchase .fuki img,
.sp_fixed_bottom_purchase .fuki svg {
	width: 100%;
    height: auto;
    stroke-width: 2;
}
.sp_fixed_bottom_purchase .fuki span {
	display: block;
	position: absolute;
	top: 0.7em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	font-size: 4.2vw;
	font-weight: bold;
	width: 100%;
}
.sp_fixed_bottom_purchase .inner {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.sp_fixed_bottom_purchase .inner .logo img {
	width: 30vw;
}
.sp_fixed_bottom_purchase .inner .btn_list {
	width: 60vw;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.sp_fixed_bottom_purchase .inner .btn_list li {
	width: 49%;
}
.sp_fixed_bottom_purchase .inner .btn_list li a {
	background-color: #ca1a21;
	border-radius: 0.25em;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 3.6vw;
	font-weight: bold;
}
.sp_fixed_bottom_purchase .inner .btn_list li a span {
	display: block;
	margin-bottom: 0.4em;
	font-size: 120%;
}


/*******採用情報用*******/
#recruit .pagetop {
    bottom: 20vw;
}

#recruit footer .footer_main {
	padding-bottom: 17vw;
}

body:not(#recruit) .sp_fixed_bottom_recruit,
#recruit .sp_fixed_bottom_purchase {
	display: none;
}
#recruit .sp_fixed_bottom_recruit {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items : stretch;
	height: 17vw;
}
#recruit .sp_fixed_bottom_recruit li {
	width: 100%;
}
#recruit .sp_fixed_bottom_recruit a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	font-size: 5vw;
	font-weight: bold;
}
#recruit .sp_fixed_bottom_recruit a span {
	font-size: 110%;
	vertical-align: middle;
	margin-right: 0.7em;
}
#recruit .sp_fixed_bottom_recruit a img {
	position: absolute;
	right: 1vw;
	bottom: 0;
	height: 22vw;
}

}