﻿@charset "UTF-8";

*{
	min-width: 0;
	min-height: 0;
}

#wrapper{ /* 全体を囲う */
	margin: auto;
	width: 100%;
	font-size: 1em; /* 基本文字サイズ */
	color: #333333; /* 基本文字色 */
	position: relative;
	display: none;
}

body{
	overflow-x: hidden;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ","Meiryo", sans-serif;
	background: #FFFFFF;
	
}

.icon-pdf::after{ /* 文字の後ろにpdfアイコンを表示 */
	margin-left: 10px;
	content: "";
	width: 1.5em;
	height: 1.5em;
 	display: inline-block;
	background-image: url(../../../images/all-menu/icon-pdf.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	transform: translateY(-3px);
}

@media screen and (min-width: 768px){
	.br-sp{ /* スマホ時改行用 */
		display: none; 
	}
}

/*===============================================================
 メイン
=================================================================*/

.container{ /* メインからフッター前まで囲う */
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.bottom-menu{ /* 下メニュー(スマホ用) */
	position:fixed;
	bottom: 0;
	z-index: 4;
	width: 100%;
	transition: .3s;
	box-shadow: 0px -1px 6px #BAC2D0;
	background-color: rgba(255,255,255,0.8);
	height: 125px;
}

.bottom-menu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.bottom-menu li{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 33%;
}

.bottom-menu a{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 0.6em;
	padding: 5px 0;
	position: relative;
	color: #3D63CC;
	font-weight: bold;
}

.bottom-menu svg{
	width: 36px;
	height: 48px;
	fill: #3D63CC;
}

.bottom-menu.hide{
	transform: translateY(100%);
}

.bottom-menu-text{
	position: absolute;
	bottom: 0;
}

.main-contents{
	display:flex;
	flex-direction: column;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.type-nav{
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.type-nav ul{
	font-size: 0.8em;
	display: flex;
	justify-content: center;
	width: 100%;
	z-index: 4;
	max-width: 1200px;
}

.type-nav-b{
	width: 100%;
	position: fixed;
	top: -100px;
	transition: .3s;
}

.type-nav-b.active{ /* 一定以上スクロール時 */
	top: 50px;
}

.type-link{ 
	width: 100%;
}

.type-link a{
	color: #FFFFFF;
	display:flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	transition: .3s;
	padding: 10px 0;
	border-left: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	box-sizing: border-box;
	height: 35px;
}

.type-link .first-a{
	border-left: none!important;
}

.type-link a::after{
	content: "\025bc";
}

/* パンくずリスト */
.breadcrumbs{
	background: #f7f7f7;
	padding-left: 10px;
}

.breadcrumbs ul{
	margin: 20px auto 10px auto;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.8em;
	width: 100%;
	max-width: 1200px;
}

.breadcrumbs a{
	padding: 5px;
}

.breadcrumbs a:hover{
	text-decoration: underline;
}

.breadcrumbs li:last-child{
	font-weight: bold;
	pointer-events: none; /* 最後(現在地)のリンク無効に */
}

.breadcrumbs li::after{
	content: "\03e";
	margin: 0 10px;
	color: #888888;
}

.breadcrumbs li:last-child::after{ /* 最後の記号をなしに */
	content: "";
}

.main{
	width: 100%;
	background: #111111;
}

.series-main-img{
	margin: auto!important;
}

.series-main-img img{
	width: 100%;
	height: auto;
}

.series-container{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 4vw;
	position: relative;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.first-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 30px;
}

.first-info{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.hajimeni{
	position: relative;
	width: 100%;
	color: red;
	margin-top: 30px; 
}

.hajimeni::before{
	content: "※";
}

.first-info a{
	position: relative;
	background: #333333;
	color: #FFFFFF;
	width: 100%;
	padding: 10px 0 10px 30px;
	margin-top: 10px;
	transition: .3s;
}

.first-info a::before{
	content: "";
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
    width: 20px;
    height: 20px;
    border: 2px solid red;
    border-radius: 50%;
}

.first-info a::after{
	content: "";
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	border-top: 3px solid red;
	border-right: 3px solid red;
	transform: rotate(45deg);
	box-sizing: content-box;
}

.first-note{
	margin-top: 10px;
}

.first-select-container{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.first-select{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-weight: bold;
}

.first-select-button{
	background: #81C04F;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 2px 2px 2px #777777;
	transition: .3s;
	margin-top: 10px;
	border: 2px solid #417346;
}

.first-select-button p{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.first-select-button:hover{
	box-shadow: none;
}

.first-select-text-series{
	color: #FFFFFF;
	margin-right: 20px;
}

.first-select-text-type{
	display: inline-block;
	font-size: min(6vw, 1.2em);
	color: #333333;
	background: #F2EFC7;
	padding: 3px 15px;
	border-radius: 8px;
}

.feature-container{
	width: 100%;
}

.series-feature{
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
}

.feature-bg{
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 30px calc(50vw - 50%);
	background: #F5F5F5;
	height: 100%;
	display: flex;
	justify-content: center;
}

.tokutyou{
	background: #333333;
	color: #FFFFFF;
	padding: 3px 10px;
	width: 60px;
	text-align: center;
}

.tokutyou-container{
	display: flex;
	flex-direction: column;
}

.tokutyou-box{
	padding: 20px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1000px;
}

.tokutyou-box img{
	width: 80%;
	height: auto;
	margin-top: 0; 
}

.tokutyou-text{
	display: flex;
	flex-direction: column;
	width: 100%;
	line-height: 1.6;
}

.tokutyou-text-top{
	width: 60%;
	text-align: center;
}

.tokutyou-text-a{
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1.3;
}

.tokutyou-text-a span{
	font-weight: normal;
	font-size: 0.7em;
	display: inline-block;
}

.tokutyou-text-b{
	width: 100%;
	font-size: 1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 5px;
}

.tokutyou-text-b img{
	width: 100%!important;
	margin-bottom: 10px;
}

.tokutyou-box-title{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tokutyou-text-mente{
	margin-top: 20px;
	width: 100%;
}

.tokutyou-text-c{
	background: #888888;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	padding: 10px 5px;
}

.tokutyou-text-d{
	background: #dddddd;
	color: #333333;
	padding: 10px 5px;
}

.tokutyou-text-d span{
	font-size: 0.8em;
}

.tokutyou-note{
	font-weight: bold;
	padding-top: 5px;
}

.tokutyou-note span{
	display: inline-block;
}

/* 特徴sa用 */
.tokutyou-box-sa{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1000px;
	background: #FFFFFF;
	border: 2px solid #5FB238;
	margin-top: 20px;
	border-radius: 8px;
}

.tokutyou-gif-box{
	display: flex;
	width: 100%;
	background: #FFFFB3;
	align-items: flex-end;
	margin-top: 10px;
}

/* ------------------------------●●●●●----------------------------------- */
.joint-box-01{
	padding: 20px 15px 0 15px;
	background: linear-gradient(90deg, #5FB238, #E4E681);
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-radius: 4px 4px 0 0;
}

.joint-text-01-p-box{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.joint-text-01-p{
	font-size: 8vw;
	color: #FFFFFF;
	font-weight: bold;
}

.joint-text-01-p span{
	font-size: 4vw;
}
	
.tokutyou-joint-img-01{
	width: 100%;
}

.tokutyou-joint-img img{
	width: 100%;
}

.joint-box-02-top-p{
	width: 100%;
	margin-top: 25px;
	padding: 0 15px;	
}

.joint-box-02-03-container{
	display:flex;
	flex-wrap: wrap;
	
}

.joint-box-02{
	width: 100%;
	margin-top: 6px;
	padding: 0 15px;
}

.joint-box-02-text-a{
	font-weight: bold;
}

.joint-box-02-gray{
	background: #EEEEEE;
	border-radius: 10px;
}

.joint-box-02-text-b{
	margin-top: 10px;
	background: #888888;
	border-radius: 10px 10px 0 0;
	padding: 8px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}

.tokutyou-joint-img-02 ,.tokutyou-joint-img-03{
	width: 100%;
	padding: 10px;
}

.joint-box-text-c{
	text-align: center;
	padding: 0 5px 5px 5px;
}

.joint-box-text-c-bold{
	font-weight: bold;
}

.joint-box-text-c-tyuui{
	font-size: 0.8em;
}

.joint-box-03{
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.joint-box-04{
	padding: 20px;
}

.joint-box-04-border{
	border: 1px solid #5FB238;
	padding: 10px;
}

.table-joint-type-a{
	font-size: 0.7em;
	color: #FFFFFF;
	background: #777777;
}

.table-joint-type-b{
	font-size: 0.6em;
	color: #FFFFFF;
	background: #555555;
}
/* ------------------------------●●●●●----------------------------------- */

.tokutyou-gif-img{
	width: 33.33%;
}

.tokutyou-gif-img img{
	width: 100%;
}

.kakko{
	font-size: 0.8em;
}

/*===============================================================
 製品container
=================================================================*/
.leg-container{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
}

.leg-num-container{
	padding: 40px 0 20px 0;
	border-bottom: 1px dotted #888888;
}

.leg-num-container:last-of-type{
	border-bottom: none;
}

.leg-note{
	margin-top: 20px;
	border: 1px solid #FF5050;
	padding: 5px 10px;
}

.leg-nav{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
}

.leg-number{
	background: linear-gradient(45deg, #888888, #cccccc);
	color: #FFFFFF;
	width: 50%;
	padding: 10px 0 10px 10px; 
	z-index: -2;
	font-size: 0.8em;
	font-weight: bold;
}

.leg-number span::before{ /* スマホの時改行 */
	content: "\A";
    white-space: pre;
}

.leg-type{
	position: relative;
	color: #FFFFFF;
	width: 50%;
	padding: 10px 0;
	font-size: 0.8em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.leg-type::before{
    transform: skewX(-15deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    right: -7px;
    z-index: -1;
    background-color:#666666;
}

.leg-support{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.leg-support-container{
	display: flex;
	width: 32%;
	margin-top: 5px;
}

.leg-support-nav{
	width: 100%;
	background: #666666;
	text-align: center;
	color: #FFFFFF;
	padding: 10px 0;
	font-size: 0.8em;
	transition: .3s;
}

.leg-support-nav-red{
	background: #FF3939!important;
}

.leg-support-nav-blue{
	background: #3D63CC!important;
}

/* === 3種類の高さ構成 === */
.takasakousei-container{
	margin-top: 40px;
}

.takasakousei-text h4{
	font-weight: bold;
	font-size: 1.2em;
}

.takasakousei-text p, takasakousei-step{
	line-height: 1.6;
	font-size: 0.8em;
}

.takasakousei-ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.takasakousei-ul li{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-bottom: 1px solid #CCCCCC;
	padding: 10px 0;
}

.takasakousei-ul li:last-of-type{
	border-bottom: none!important;
}

.takasakousei-number{
	font-weight: bold;
	font-size: 1.4em;
}

.takasakousei-step{
	margin-top: 10px;
}

.takasakousei-step-b{
	font-size: 0.8em;
}

.takasakousei-img{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.takasakousei-img img{
	width: 70%;
	height: auto;
}

/* === スライド === */
.leg-triple-menu-container{
	position: relative;
	cursor: pointer; /* カーソルが指マークに */
}

.leg-double-menu-container{
	width: 48%!important;
	position: relative;
	cursor: pointer;
}

.leg-number-slide{
	position: absolute;
	display: none;
	top: 35px; /* スライド表示開始位置 */
	left: 0;
	width: 100%;
	color: #FFFFFF;
	z-index: 2;
}

.leg-number-slide ul{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.leg-number-slide li{
	border-top: 1px solid #FFFFFF;
	background: #888888;
	width: 100%;
	text-align: center;
	transition: .3s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.leg-number-slide a{
	width: 100%;
	padding:10px 0;
}

.leg-number-slide li:hover{
	background: #AAAAAA;
}

.leg-support-yajirushi::after{ /* 下向き矢印 */
	position: relative;
	top: -3px;
	right: -6px;
	content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
    display: inline-block;
    transform: rotate(135deg);
    transition: .3s;
}

.leg-support-yajirushi.active::after{ /* 矢印を上向きに */
	transform: rotate(-45deg);
	top: 1px;
}

/* ----- 装着イメージ ----- */
.soutyaku-container{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: none;
}

.soutyaku-img-bg{
	background:rgba(18,18,18,0.8);/* 黒背景,透過 */
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 101;
}

.soutyaku-button{
	width: 100%;
	background: #666666;
	text-align: center;
	color: #FFFFFF;
	padding: 10px 0;
	font-size: 0.8em;
	transition: .3s;
}

.soutyaku-img{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.soutyaku-img img{
	width: 80vw;
	max-width: 600px;
	z-index: 102;
}

.soutyaku-img-box{
	position: relative;
	z-index: 102;
}

.close-button{
	position: absolute;
	top: -7%;
	right: -7%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 5px;
	font-weight: bold;
	background: #EEEEEE;
	color: #666666;
	font-size: 18px;
	z-index: 103;
	cursor: pointer;
}

.soutyaku-button:hover{
	background: #AAAAAA;
}

/*---------------- 専用タイプ ----------------*/

/* tttttttttttttttttttttttt車種ナビゲーションttttttttttttttttttttttttttttttttt */
.senyou-nav{
	width: 100%;
	max-width: 1000px;
}

.senyou-nav-contents{
	width: 100%;
}

.senyou-nav-yajirushi{
	position: relative;
}

.senyou-nav-yajirushi::after{ /* 下向き矢印 */
	position: absolute;
	content: "";
	top: 35%;
    transform: translate(0, -35%) rotate(135deg);
	right: 15px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #FFFFFF;
    border-top: 2px solid #FFFFFF;
    display: inline-block;
    transition: .3s;
}

.senyou-nav-yajirushi.active::after{ /* 矢印を上向きに */
	top: 40%;
	transform: rotate(-45deg);
	border-color: #666666;
	background: #FFFFFF;
}

.senyou-nav-title{
	width: 100%;
	font-size: 1.1em;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer; /* カーソルが指マークに */
	color: #FFFFFF;
	background: #666666;
	padding: 10px 0;
	margin-top: 1px;
	box-sizing: border-box;
	border: 1px solid #666666;
	transition: .3s;
}

.senyou-nav-title:hover{
	background: #888888;
}

.senyou-nav-js.active{
	background: #FFFFFF!important;
	color: #666666;
}

.senyou-nav-title-last{
	border-bottom: 1px solid #CCCCCC;
}

.senyou-nav-space{
	display: flex;
	justify-content: center;
}

.senyou-nav-slide, .senyou-nav-open{
	font-size: 0.8em;
}

.senyou-nav-slide{
	display: none;
}

.senyou-nav-slide-last{
	border-bottom: 1px solid #CCCCCC;
}

.slide-container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	padding: 10px 0;
	width: 96%;
}

.slide-container a{
	width: 100%;
	margin-bottom: 10px;
}

.slide-container ul{
	display: flex;
	width: 100%;
	border: 1px solid #333333;
	border-radius: 10px;
	box-shadow: 2px 2px;
	transition: .3s;
}

.slide-container ul:hover{
	box-shadow: 0 0;
}

.nav-hinbann{
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 5px;
	color: #FFFFFF;
	font-weight: bold;
	border-right: 1px solid #333333;
	border-radius: 10px 0 0 10px;
}

.nav-shashu{
	width: 100%;
}

.nav-shashu-p{
	padding: 8px 0 8px 3%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-weight: bold;
}

.nav-shashu-p-b{
	color: #777777!important;
	font-size: 0.8em;
}

.nav-shashu-p-margin{
	margin-top: 3px;
}


.nav-shashu-line{
	width: 100%;
	display: block;
	content: "";
	background: #666666;
	height: 1px;
}
/* tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt */

.senyou-nav-box{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.senyou-nav-button{
	color: #FFFFFF;
	background: #444444;
	padding: 5px;
	transition: .3s;
	width: 100%;
	text-align: center;
}

.senyou-slide{
	position: absolute;
	display: none;
	top: 35px; /* スライド表示開始位置 */
	left: 0;
	width: 100%;
	color: #FFFFFF;
	z-index: 2;
}

.senyou-slide ul{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.senyou-slide li{
	border-top: 1px solid #FFFFFF;
	background: #888888;
	width: 100%;
	text-align: center;
	transition: .3s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.senyou-slide a{
	width: 100%;
	padding:10px 0;
}

.senyou-slide li:hover{
	background: #AAAAAA;
}


/* メーカーごとの色分け */
.toyota:hover{
	background: #EB9F80;
}
.daihatsu:hover{
	background: #EBAB43;
}
.nissann:hover{
	background: #3FC3EB;
}
.isuzu:hover{
	background: #C46C29;
}
.suzuki:hover{
	background: #F5E07A;
}
.matsuda:hover{
	background: #A6D973;
}
.mitsubishi:hover{
	background: #56C781;
}
.honda:hover{
	background: #E887E2;
}
.subaru:hover{
	background: #7275D1;
}
/* ----------------------------------------- */

.senyou-bg{
	background: #888888;
	transition: .3s;
}

.senyou-bg-sub{
	background: #EEEEEE;
}

.senyou-text{
	margin: 20px 0 10px 0;
	text-align: center;
}

.senyou-text::before{
	content:"\025c6";
}

.leg-number-senyou{
	background: linear-gradient(45deg, #81C048, #FFFFFF);
	color: #FFFFFF;
	width: 100%;
	position: relative;
	padding: 10px 0 10px 10px;
	font-size: 1.2em;
	font-weight: bold;
}

.leg-senyou-nav-container{
	width: 100%;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.leg-car-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 5px;
}

.leg-car-container-single{
	justify-content: center!important;
}

.leg-car-mobile{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.leg-car-mobile-double{
	width: 48%;
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.leg-car-mobile-last{
	margin-bottom: 0!important; /* 必要ない */
}

.leg-senyou-ul-box{
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}

.leg-car-container ul{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.leg-car-container li{
	display: flex;
	height: 100%;
	padding: 5px 0;
	flex-direction: column;
	justify-content: center;
}

.leg-car-manufac{
	color: #FFFFFF;
	font-size: 1em;
	font-weight: bold;
	width: 30%;
	align-items: center;
}

.leg-car-type{
	width: 70%;
	padding-left: 1%!important;
	font-size: 0.8em;
}

.leg-car-type-p{
	padding-left: 3px;
	color: #777777;
}

.leg-car-type-p-margin{
	margin-top: 5px;
}

.senyou-car-name{
	font-size: 1.1em;
	font-weight: bold;
	color: #333333!important;
}

.leg-senyou-name-container{
	width: 100%;
	display: flex;
	padding: 5px;
}

.leg-senyou-name-container:hover .leg-senyou-name-button{
	background: #888888;
}

.route-container{
	width: 100%;
	display: flex;
	margin-bottom: 5px;
}

.route-name{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	background: #333333;
	padding: 12px 0;
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
}

.route-name::before{
	content: "\025a0";
	position: absolute;
	left: 5px;
}

.route-name::after{
	content: "\025a0";
	position: absolute;
	right: 5px;
}

.leg-senyou-name{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	font-weight: bold;
	position: relative;
}

.leg-senyou-name-sub{
	font-size: 0.8em;
}

.splide-container{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
}

.splide-container p{
	font-size: 0.8em;
}

.splide-container-width{
	width: 100%;
}

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

.splide-gallery-b .splide__track{
	width: 85%;
}

.splide-gallery-b .splide__slide{
	opacity: 0.6;
}

.splide__slide.is-active{
	opacity: 1;
}

.splide-gallery-b{
	margin-top: 3px;
	display: flex;
	justify-content: center;
}

.splide-class-arrow{
	background: none;
	width: min(6vw, 1.2em);
	height: min(8vw, 2em);
	border-radius: 0;
}

.splide-class-arrow svg{
	width: 2em;
	height: 2em;
}

.splide-class-prev{
	left: 0;
}

.splide-class-next{
	right: 0;
}

.splide-large-img-box{
	visibility: hidden;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	transition: .3s;
}

.splide-large-img-box.active{
	visibility: visible;
	opacity: 1;
}

.splide-large-img-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.splide-large-img{
	max-width: 95%;
 	max-height: 95%;
	overflow: auto;
	border: 6px solid #FFFFFF;
 	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: .3s;
}

.splide-large-img-box.active .splide-large-img{
	transform: scale(1);
}

.splide-large-img img{
	width: 100%;
 	height: auto;
}

.splide-large-img picture{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.splide-large-img-close{
	position: absolute;
 	top: 5px;
	right: 10px;
	color: #333333;
 	font-size: 40px;
	text-decoration: none;
	z-index: 102;
	cursor: pointer;
}

.splide-large-img-close:hover{
	color: #777777;
}

.size-img{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
}

.size-img-splide-double{
	padding: 0;
	justify-content: flex-start;
	margin-top: 30px;
}

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

.size-img-kosupa:first-child{
	padding-bottom: 0;
}

.size-img-option, .size-img-kosupa{
	padding: 20px 0 10px 0!important;
}

.size-img-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.size-img-splide-container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.size-img-text-box{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-weight: bold;
	padding-right: 10px;
	margin-top: 30px;
}

.size-img-text{
	position: relative;
	text-align: left;
	font-size: 1em;
	line-height: 1.6;
	font-size: 0.8em;
	padding: 10px 0;
}

.size-img-text-sa38-box{
	position: absolute;
	top: -4px;
	right: -20px;
	background: linear-gradient(90deg, #F5AD1E 10%, #F5EB8C 50%, #F5AD1E 90%);
	border-radius: 25px;
	box-shadow: 1px 1px 2px;
	padding: 2px;
}

.size-img-text-sa38{
	background: linear-gradient(0deg, #F5BE31 10%, #F5EB8C 50%, #F5D44E 85%,#F5EB8C 95%);
	border-radius: 25px;
	font-size: min(3vw, 0.9em);
	line-height: 1.1;
	padding: 5px 10px;
}

.size-img-text-sa38 span{
	font-size: 0.8em;
}

.size-img-text-hinsitsu{
	font-size: min(4vw, 1.2em);
}

.size-img-text-2way{
	font-size: min(4vw, 1.4em);
}

.size-unit{
	width: 100%;
	text-align: right;
}

.table-in-kome{ /* table内注釈　複数あればそれぞれtop調整 */
	position: absolute;
	left: 0;
	top: 136px;
	z-index: 2;
	font-size: 0.8em;
}

.table-newline{
	content: "\A";
    white-space: pre;
}

.ano-container{
	padding-top: 10px;
}

.series-ano{
	padding: 5px;
}

.new-sale{
	font-weight: bold;
	background: #FF5050;
	color: #FFFFFF;
	padding-left: 15px;
	padding: 6px 10px;
	margin-bottom: 5px;
}

.new-sale-new{
	font-size: 1em;
}

.new-sale-day{
	padding-left: 15px;
	font-size: 0.8em;
}

.long{
	font-weight: bold;
	background: #f2ff00;
	padding-left: 15px;
	padding: 6px 10px;
	margin-left: 0;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.nointerfere{
	font-size: 1em;
}

@media screen and (min-width: 768px){
	.new-sale{
		margin-right: 10px;
	}
}


/*---------------- オプションパーツ ----------------*/
.option-title{
	width: 100%;
	padding: 6px 0 6px 10px;
	background: #666666;
	color: yellow;
	margin-bottom: 5px;
}

.option-type{
	width: 100%;
	padding: 10px 0 10px 10px;
	background: linear-gradient(45deg, #111111, #FFFFFF);
	color: yellow;
	font-weight: bold;
}

.option-container-a{	
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.option-container-b{
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.option-container-c{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
	width:100%;
}

.option-kaisetsu{
	width:100%;
}

.option-box{
	width: 100%;
}

.option-text p{
	width: 100%;
}

.option-img{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.option-top-text-a{
	color: #81c04f;
	font-size: 1em;
	font-weight: bold;
	margin-top: 10px;
}

.option-top-text-b{
	margin-top: 5px;
}

.option-top-text-c{
	font-size: 0.8em;
}

.option-img-text{
	font-size: 0.8em;
}

.option-img-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.option-text-flex{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.option-text-sp{
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	border: 1px solid #333333;
	border-radius: 5px;
	padding: 10px;
	font-size: 0.8em;
	margin-top: 20px;
}

.option-text-sp-naiyou{
	display: flex;
}

.option-text-sp-naiyou p{
	background: #666666;
	color: #FFFFFF;
	padding: 2px 4px;
}

.movie-box{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
	background: #333333;
}

.movie-box iframe{
	width: 100%;
	height: auto;
	aspect-ratio: 16/9; /* 16:9サイズに */
}

/*.movie-box{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
	position: relative;
	aspect-ratio: 16/9;
}

.movie-box iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}*/

.option-img-box .size-img img{
	width: 100%;
}

.option-img-box-sp01{
	width: 100%;
}

.sp01-img{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.sp01-img img{
	width: 100%;
}

.sp01-mobile-img{
	display: block;
	width: 100%;
}

.sp01-pc-img{
	display: none;
	width: 100%;
}

.option-tyuui-container{
	width: 100%;
	margin-top: 20px;
	background: #EEEEEE;
	padding: 20px;
	font-size: 0.8em;
	line-height: 1.6;
}

/*================ table ================*/
.table-container{
	position: relative;
}

.series-table{
	display: block;
	overflow-x: scroll;
	table-layout: auto;
	white-space: nowrap;
	border-collapse: separate;
	border-spacing: 0;
}

.series-table-joint{
	font-size: 0.8em;
}

.series-table th, .series-table td{
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
	width: 1000px;
}

.series-table tr:first-child{
    border-top: 1px solid #FFFFFF;
}
.series-table th:first-child{
    border-left: 1px solid #FFFFFF;
}

.series-table th{
	padding: 10px;
}

.series-table .fixed{
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	left: 0;
}

.table-hinbann{
	text-align: left!important;
}

.table-hinbann-joint{
	font-size: 0.7em;
}

.table-kakaku{
	text-align: right!important;
}

.table-miri{
	text-align: right!important;
	padding: 10px 2.5% 10px 0!important;
}

.table-miri-b{
	text-align: right!important;
	padding: 10px 6% 10px 0!important;
}

.bg-gray-a{
	background: #F7F7F7;
}

.bg-gray-b{
	background: #dddddd;
}

.bg-gray-c{
	background: #eeeeee;
}

.bg-gray-d{
	background: #FFFFFF;
}

.bg-silver{
	background: #E1E3E8;
	
}

.bg-black{
	background: #111111;
	color: #FFFFFF;
}

.price-en::before{ /* 円マーク */
	content: "\0a5";
}

.table-sup{
	padding: 4px 0;
	font-size: 0.8em;
}

.table-sup a{
	color: #FF5050;
	text-decoration: underline;
}

.table-sup::before{
	content: "※";
}

.table-sup-container{
	width: 100%;
	padding: 20px;
	margin: 20px 0;
	border: 3px double #81C048;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.table-sup-title{
	width: 100%;
	font-weight: bold;
	font-size: 1.2em;
}

.table-sup-title::before{
	content: "\025cf";
	color: #81C048;
}

.table-sup-img{
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: 20px;
}

.table-sup-img img{
	width: 100%;
}

.table-car-type{ /* 専用タイプ、テーブル内車種用 */
	text-align: left!important;
}

.table-space{
	margin-bottom: 1em;
}

.tab-space{
	margin-left: 15px; 
}

.first-info a:hover{
	background: #666666;
}

.leg-torisetsu-slide li:hover{
	background: #EEEEEE;
	color: #333333;
}
	
.leg-support-nav:hover{
	background: #AAAAAA;
}
	
.leg-support-nav-red:hover{
	background: #FF7978!important;
}

.table-sup a{
	color: #FF5050;
	text-decoration: underline;
}

/*===================
横幅768px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 768px){
	.container{
		margin-top: 65px; /*header分下に */
	}
	
	.breadcrumbs{
		padding-left: 30px;
	}
	
	.first-select{
		flex-direction: row;
	}
	
	.first-select-text{
		margin-right: 10px;
	}
	
	.first-select-button{
		margin-top: 0;
	}
	
	.tokutyou-text-top{
		width: 80%;
	}

	.type-link a:hover{ /* ★ */
		background: #EEEEEE;
		color: #81C048;	
	}
	
	.series-main-img{
		width: 100%;
		max-width: 1200px;
	}
	
	.series-main-img img{
		height: 400px;
		object-fit: cover; /* 範囲外を隠す */
		object-position: 0 0;
	}
	
	.splide-container-double{
		width: 48%!important;
	}
		
	.splide-container p{
		font-size: 1em;
	}

	.splide-container-width{
		width: 60%;
	}
	
	.splide-container-double .splide-container-width{
		width: 100%!important;
	}
			
	.splide-gallery-a .splide__list{
		width: 100%;
	}
	
	.splide-gallery-b .splide__track{
		width: 90%;
	}
	
	.route-name{
		font-size: 1.4em;
	}
		
	.size-img img{
		width: 60%;
	}
	
	.size-img-double{
		width: 48%!important;
	}
	
	.size-img-double img{
		width: 100%!important;
	}
	
	.size-img-text-box{
		margin-top: 50px;
	}
	
	.size-img-text{
		font-size: 1em;
		padding: 5px 15px;
	}
	
	.size-img-text-sa38-box{
		right: -40px;
	}
	
	.size-img-text-sa38{
		padding: 8px 10px;
	}
	
	.size-img-kosupa{
		width: 100%!important;
	}
	
	.size-img-kosupa-b{
		width: 100%!important;
	}
		
	.size-img-kosupa:first-child{
		padding-bottom: 40px;
	}
	
	.size-img-kosupa img, .size-img-kosupa-b img{
		width: 90%!important;
	}
	
	.type-nav ul{
		font-size: 1em;
	}
	
	.type-nav-b.active{
		top: 65px;
	}
	
	.first-info a{
		width: 46%;
	}
	
	.tokutyou-box{
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: flex-start;
		width: 100%;
	}
		
	.tokutyou-box img{
		width: 30%;
		height: auto;
		margin-top: 0; 
	}
	
	.tokutyou-text-b img{
		width: 90%!important;
		height: auto;
	}
	
	.tokutyou-text{
		display: flex;
		flex-direction: column;
		width: 60%;
	}
	
	.takasakousei-ul li{
		width: 30%;
		border-bottom: none;
	}
		
	.takasakousei-number{
		font-size: 1.6em;
	}
	
	.takasakousei-step-a{
		font-size: 1.2em;
	}
	
	.takasakousei-step-b{
		font-size: 0.7em;
	}
	
	.takasakousei-add{
		margin-top: 2.4em;
	}

	.takasakousei-img img{
		width: 90%;
	}
	
	.series-table-joint{
		font-size: 1em;
	}
	
	.leg-number{
		width: 60%;
		font-size: 1.2em;
	}
	
	.leg-number span::before{ /* 改行なし */
		content: "\A";
		white-space: nowrap;
	}
	
	.leg-type{
		width: 40%;
		font-size: 1.2em;
	}
	
	.leg-quad-menu-container{
		width: 24%!important;
	}	
	
	.table-sup-img{
		width: 48%;
	}
	
	.table-hinbann-joint{
		padding: 10px 0 10px 40px!important;
	}
	
	.leg-car-container a{
		width: 32%;
	}
	
	.leg-car-container-white-box::after{
		content:"";
		width: 32%;
		display: block;
	}
	
	.leg-car-container-white-box::before{
		content:"";
		width: 32%;
		display: block;
		order: 1;
	}
	
	.leg-car-single{
		width: 60%!important;
	}
	
	.leg-car-double{
		width: 48%!important;
	}
	
	.leg-car-triple{
		width: 32%!important;
	}
	
	.leg-car-quad{
		width: 24%!important;
	}
	
	.leg-car-mobie, .leg-car-mobile-double{
		margin-bottom: 0;
	}
	
	.option-img-box{
		width: 48%;
	}
	
	.option-img-box-60{
		width: 60%!important;
	}
	
	.option-text-flex{
		width: 36%;
	}
	
	.option-text-sp{
		font-size: 1em;
		margin-top: 0;
	}
	
	.movie-box{
		width: 48%;
	}
			
	.sp01-mobile-img{
		display: none;
	}
	
	.sp01-pc-img{
		display: block;
	}
	
	.close-button{
		top: -7%;
		right: -7%;
		font-size: 40px;
		width: 55px;
		height: 55px;
		border-radius: 7px;
	}
	
	.new-sale-new{
		font-size: 1.4em;
	}
	
	/* メーカーごとの色分け */
	.leg-car-container a:hover .car-toyota .senyou-bg{
		background: #EB9F80;
	}
	.leg-car-container a:hover .car-daihatsu .senyou-bg{
		background: #EBAB43;
	}
	.leg-car-container a:hover .car-nissann .senyou-bg{
		background: #3FC3EB;
	}
	.leg-car-container a:hover .car-isuzu .senyou-bg{
		background: #C46C29;
	}
	.leg-car-container a:hover .car-suzuki .senyou-bg{
		background: #F5E07A;
	}
	.leg-car-container a:hover .car-matsuda .senyou-bg{
		background: #A6D973;
	}
	.leg-car-container a:hover .car-mitsubishi .senyou-bg{
		background: #56C781;
	}
	.leg-car-container a:hover .car-honda .senyou-bg{
		background: #E887E2;
	}
	.leg-car-container a:hover .car-subaru .senyou-bg{
		background: #7275D1;
	}
	/* tttttttttttttttttttttttttttttttttttttttt */
	.slide-container ul{
		min-height: 100px;
		font-size: 1em;
	}
	
	.slide-container a{
		width: 48%;
	}
	
	.slide-container::after{
		display: block;
		content:"";
		width: 48%;
	}
	
	.nav-shashu{
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	
	.nav-hinbann{
		font-size: 1.2em;
	}
	
	.leg-car-type{
		padding-left: 1%!important;
	}
		
	.leg-car-container::after{
		display: block;
		content:"";
		width: 48%;
	}
	
	.leg-car-container-single::after{
		display: none!important;
	}
	
	.leg-car-manufac{
		font-size: 1.2em;
	}
	
	.leg-car-type{
		font-size: 1em;
	}

	
	.leg-car-type-p-margin{
		margin-top: 8px;
	}
	
	.leg-senyou-name{ 
		padding: 2px 0;
		font-size: 1.2em;
	}
	
	.joint-text-01-p-box{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50%;
	}
	
	.joint-text-01-p{
		font-size: 2em;
		color: #FFFFFF;
		font-weight: bold;
		padding-bottom: 10px;
	}
	
	.joint-text-01-p span{
		font-size: 0.5em;
	}
		
	.tokutyou-joint-img-01{
		width: 50%;
		position: relative;
	}
	
	.tokutyou-joint-img-01 img{
		position: absolute;
		bottom: 0;
	}
	
	.joint-box-02{
		width: 50%;
	}
	
	.joint-box-03{
		width: 50%;
	}
	
	.table-joint-type-a, .table-joint-type-b, .table-hinbann-joint{
		font-size: 0.8em;
	}
	/* tttttttttttttttttttttttttttttttttttttttt */
		
}
/*===================
横幅1025px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 1025px){
	.container{
		flex-direction: row;
		margin-top: 105px; /*header分下に */
		position: relative;
	}
	
	.bottom-menu{
		display: none;
	}
	
	.series-main-img img{
		height: 500px;
	}
	
	.takasakousei-text p, takasakousei-step{
		font-size: 1em;
	}
	
	.takasakousei-step-a{
		font-size: 1.4em;
	}
	
	.takasakousei-step-b{
		font-size: 0.8em;
	}

	.type-nav-b.active{
		top: 105px;
	}
	
	.table-sup a{
		text-decoration: none;
	}
	
	.table-sup a:hover{
		text-decoration:underline;
	}
	
	.table-hinbann{
		padding: 10px 0 10px 20px!important;
	}
	
	.table-hinbann-h{
		padding: 10px 0 10px 13px!important;
	}
	
	.table-hinbann-joint{
		padding: 10px 0 10px 100px!important;
	}
	
	.table-kakaku{
		padding: 10px 20px 10px 10px!important;
	}
	
	.table-miri{
		padding: 10px 3% 10px 0!important;
	}
	
	/* ttttttttttttttttttttttttttttttt */
	.slide-container ul{
		font-size: 1.2em;
	}
	
	.leg-car-type{
		padding-left: 10%!important;
	}
	
	.joint-text-01-p-box{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 55%;
	}
	
	.joint-text-01-p{
		font-size: 3em;
		color: #FFFFFF;
		font-weight: bold;
	}
	
	.joint-text-01-p span{
		font-size: 0.5em;
	}
		
	.tokutyou-joint-img-01{
		width: 45%;
		position: relative;
	}
	
	.tokutyou-joint-img-01 img{
		position: absolute;
		bottom: 0;
	}
	/* ttttttttttttttttttttttttttttttt */
}
/*===================
横幅1400px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 1400px){
	.series-container{
		padding: 0 50px;
	}

	.table-hinbann{
		padding: 10px 0 10px 30px!important;
	}
	
	.table-hinbann-h{
		padding: 10px 0 10px 13px!important;
	}
	
	.table-hinbann-joint{
		padding: 10px 0 10px 100px!important;
	}
	
	.table-kakaku{
		padding: 10px 30px 10px 0!important;
	}
	
	.table-miri{
		padding: 10px 3.5% 10px 0!important;
	}

}