﻿@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);
}

.fadein{ /* 画像フェードイン */
	opacity : 0;
	transform : translate(0, 100px);
	transition : 1s;
}
 
.fadein.active{
	opacity : 1;
	transform : translate(0, 0);
}

/*===============================================================
 ヘッダー 
=================================================================*/
header{
	width: 100%;
	position: fixed; /* 上部に固定 */
	top: 0;
	z-index: 100;
}

.header-a{ 
	width: 100%;
	background: #FFFFFF;
	z-index: 100;
	height: 50px;
}

.header-a-container{
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	margin: auto;
}

.header-a h1{
	max-width: 50%;
	display: flex;
	align-items: center;
}

.header-a h1 img{
	width: 100%;
	height: auto;
	max-height: 50px;
	padding: 5px;
	margin-bottom: 5px;
}

.header-a-box{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

/* ナビゲーション */
.noscroll{
  	overflow: hidden; /* メニュー表示中にページのスクロールを無効に */
}

.menu-container{
  	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: scroll; /* メニュー内でスクロール可に */
	top: 0;
	left: 0;
	transform: translateX(100%);
	transition: transform .3s;
	z-index: 2;
	margin-top: 50px;
}

.menu-nav{
	opacity: 0.95; /* 透明度 */
	width: 100%;
	background: #333333;
	color: #FFFFFF;
	z-index: 2;
	position: absolute;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-bottom: 150px;
}

.menu-nav a{
	transition: .3s;
}

.menu-plus{
	position: relative;
}

.menu-plus::before{
	position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
}

.menu-plus::after{
	position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    transition: .3s;
}

.menu-plus.active::after{
	opacity: 0;
}

.menu-list-title{
	height: 60px;
	font-size: 1.3em;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #333333; 
	cursor: pointer; /* カーソルが指マークに */
	border-bottom: solid 1px #FFFFFF;
}

.menu-list-title a{
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
    
}

.sub-title{
	font-size: 1em;
	background: #555555;
}

.menu-list ul{
	display: none;
}

.series-list{
	height: 50px;
	font-size: 1.5em;
	border-bottom: 1px solid #FFFFFF;
	background: linear-gradient(45deg, #CCCCCC, #333333);
	display: flex;
	justify-content: center;
	text-shadow: 0 0 0.3em #333333;
}

.question-list{
	height: 50px;
	font-size: 1.5em;
	border-bottom: 1px solid #FFFFFF;
	background: #555555;
	padding: auto;
}

.menu-list a{
	display: flex;
	width: 100vw;
	height: 100%;
	align-items: center;
    font-size: 0.8em;
    overflow: hidden;
}

.series-a{
	justify-content: space-between;
}

.question-a{
	justify-content: center;
}

.menu-series-title{
	display: flex;
	justify-content: center;
	font-size: 0.8em;
}

.menu-bg{
	width: 20px;
	height: 100%;
}

/* 各シリーズの背景色指定 */
.sa-b-bg{
	background: #617287;
}

.se-bg{
	background: #ec7b48;
}

.sa-bg{
	background: #81c04f;
}

.sa-b-bg{
	background: #617287;
}
	
.sb-bg{
	background: #3d45d2;
}

.zm-bg{
	background: #329234;
}

.sgrgp-bg{
	background: #872abd;
}

.sl-bg{
	background: #FF6666;
}

.ak-bg{
	background: #EB312F;
}

.rw-bg{
	background: #556AFB;
}

.rwt-bg{
	background: #27CED4;
}

.rs-bg{
	background: #535B28;
}

.option-bg{
	background: #342E59;
}

.text-LineThrough{
	text-decoration: line-through;
	color: red;
}

.price-SalesCampaign{
	font-size: 0.8em;
}

.font-red{
	color: #FF5050;
}

.font-blue{
	color: #3366FF;
}

.font-orange{
	color: #FF7D00;
}

.font-yellow{
	color: #FFE100;
}

.font-black{
	color: #333333;
}

.side-bg{ /* 各シリーズ背景色ボックス用 */
	width: 5%;
	height: 100%;
}

.side-bg-header-b{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 8%;
	height: 100%;
}

.sa-bg-sub{ /* leg-senyou-nav用サブカラー　各シリーズごとに変更 */
	background: #E9F7E6;
}

.series-list img{
	width: 30vw;
	height: auto;
}

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

.white-circle::before{
	content: "\025E6";
}

.kakko{
	font-size: 0.8em;
	padding-left: 3px;
}

.kakko-b{
	font-size: 0.9em;
	padding-left: 3px;
}

.item-title{
	font-size: 1.6em;
	font-weight: bold;
	color: yellow;
	padding: 5px 0;
	width: 100%;
	text-align: center;
	line-height: 1.3;
}

.item-title span{
	display: inline-block;
	font-size: 0.6em;
}

.item-new{
	color: #FF5050;
	font-weight: bold;
	padding-right: 10px;
}

.menu-container.active {
	transform: translateX(0);
}

.menu-button{ /* メニューボタン */
	width: 50px;
	height: 50px;
	background: #FFFFFF;
	z-index: 10;
	position: relative;
}

.menu-button-line{ /* メニューの線(中段) */
	display: block;
	position: absolute;	
	width: 35px;	
	height: 4px;
	background: #333333;
	border-radius: 3px;
	top: 18px;
	right: 8px;
	transition: .2s;
}

.menu-button-line::before, .menu-button-line::after{ /* メニューの線(上下段) */
	content: "";
	position: absolute;	
	width: 35px;	
	height: 4px;
	background: #333333;
	border-radius: 3px;
	right: 0px;
	transition: .3s;
}

.menu-button-line::before{ /* 上段線の位置 */
	transform: translateY(-10px);
}

.menu-button-line::after{ /* 下段線の位置 */
	transform: translateY(10px);
}

.menu-button-text{ /* "menu"文字 */
	font-size: 0.7em; /* 横線 */
	position: absolute;
	bottom: 3px;
	left: 0;
	right: 0;
	margin: auto;
	transition: .3s;
	font-weight: bold;
	text-align: center;
}

.menu-button-line.active, .menu-button-text.active{ /* クリックしたとき */
	background: transparent;
	color: transparent;
}

.menu-button-line.active::before{
	transform: translateY(6px) rotate(45deg); /* 上段線を6px下げ、45度回転 */
}

.menu-button-line.active::after{
	transform: translateY(6px) rotate(-45deg); /* 下段線を6px下げ、45度回転 */
}

.header-a-pc, .header-b{
	display: none;
}

.menu-nav a:hover{
	background: #415A80;
}

.menu-plus:hover{
	background: #415A80;
}

.series-a:hover{
	background: #666666!important;
}

.question-a:hover{
	background: #333333!important;
}

/*===================
横幅768px以上でのレイアウト　ヘッダー
===================*/
@media screen and (min-width: 768px){
	.header-a{
		height: 65px;
	}
	
	.header-a h1 img{
		max-height: 65px;
		padding: 10px;
	}
	
	.menu-container{
		margin-top: 65px;
	}
	
	.menu-button{ /* メニューボタン */
		width: 65px;
		height: 65px;
	}
	
	.menu-button-line{ /* メニューの線(中段) */	
		width: 45px;	
		height: 5.2px;
		border-radius: 3px;
		top: 23.4px;
		right: 10.4px;
	}
	
	.menu-button-line::before, .menu-button-line::after{ /* メニューの線(上下段) */
		width: 45px;	
		height: 5.2px;
		border-radius: 3px;
		right: 0px;
	}

	.menu-button-line::before{ /* 上段線の位置 */
		transform: translateY(-13px);
	}

	.menu-button-line::after{ /* 下段線の位置 */
		transform: translateY(13px);
	}

	.menu-button-text{ /* "menu"文字 */ 
		font-size: 94.3%; /* 横線 */
		bottom: 3px;
		left: 0;
		right: 0;
		margin: auto;
		transition: .3s;
	}

	.menu-button-line.active::before{
		transform: translateY(9.6px) rotate(45deg); /* 上段線を6px下げ、45度回転 */
	}

	.menu-button-line.active::after{
		transform: translateY(9.6px) rotate(-45deg); /* 下段線を6px下げ、45度回転 */
	}
	
	.menu-list-title{
		height: 50px;
	  	font-size: 1.1em;
	}
	
	.series-list{
		height: 50px;
		font-size: 1.3em;
	}
	
	.series-list img{
		width: 20vw;
	}

	.question-list{
		height: 50px;
		font-size: 1.3em;
	}
	
	.menu-series-title{
		font-size: 1em;
	}
}

/*===================
横幅1025px以上でのレイアウト　ヘッダー
===================*/
@media screen and (min-width: 1025px){
	.noscroll{
	  	overflow: visible; /* メニュー表示中にページのスクロールを無効に */
	}

	.menu-button{ /* メニューボタン */
		display: none;
	}
	
	.menu-container{ /* メニュー */
		display: none;
	}
	
	.header-a-box{
		width: 70%;
	}
		
	.header-a-pc{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		margin-right: 20px;
	}
	
	/*
	 .header-a-pc form{
		padding-right: 40px;
	}
		
	.form-text{
		width: 200px;
		border: 1px solid #666666;
	}
	 */
	 
	.header-a-contact{
		width: 200px;
		height: 32px;
		background: #3D63CC;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FFFFFF;
		padding: 0 30px;
		border: 1px solid #3D63CC;
		transition: .3s;
	}
		
	.header-a-contact:hover{
		background: #EEEEEE;
		color: #3D63CC;
	}
	
	/* pc header-b =========================*/
	.header-b{
		display: flex;
		width: 100%;
		height: 40px;
		background: #555555;
		border-bottom: 1px solid #EEEEEE;
		justify-content: center;
		position: relative;
	}
	
	.header-b-container{
		width: 100%;
		max-width: 1300px;
		height: 100%;
		color: #FFFFFF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
		
	.header-b-title{
		font-size: 0.8em;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		border-left: 1px solid #EEEEEE;
		transition: .3s;
		cursor: pointer; /* カーソルが指マークに */
	}

	.header-b-title:last-of-type{
		border-right: 1px solid #EEEEEE;
	}
	
	.header-b-link{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.header-b-arrow{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		transform: translateX(-5px); /* arrow分左に */
	}
	
	.header-b-arrow::before, .header-b-arrow::after{ /* 下向き矢印 */
		content: "";
		position: absolute;
		right: 25px;
		top: -5px;
		bottom: 0;
		margin: auto;
		width: 6px;
		height: 6px;
		border-radius: 2px;
		border-left: 2px solid #FFFFFF;
		border-bottom: 2px solid #FFFFFF;
		transform: rotate(-45deg);
		box-sizing: content-box;
	}
	
	.header-b-title:hover{
		background: #3D63CC;
	}
	
	.header-b-slide{
		position: absolute;
		background: rgba(34, 45, 69, 0.9); /* #F7F7F7 背景のみ透過 */
		font-size: 1em;
		top: 25px;
		left: 0;
		z-index: -1;
		transition: .3s;
		padding: 25px 2vw 15px 2vw;
		width: 100%;
		transform: translateY(-600px);
		display: flex;
		justify-content: center;
	}
	
	.header-b-slide ul{
		width: 1300px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.header-b-slide li{
		margin: 8px 0;
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: 140px;
	}
	
	.header-b-slide a{
		color: #333333;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.2em;
		color: #3D63CC;
		background: #F7F7F7;
		transition: .3s;
		position: relative;
		overflow: hidden;
		border-radius: 15px;
	}
	
	.header-b-series-a{
		color: #FFFFFF!important;
		background: linear-gradient(45deg, #FFFFFF, #CCCCCC)!important;
	}
	
	.header-b-series-name{
		font-size: 1.2em;
		font-weight: bold;
		text-shadow: 0 0 0.4em #000000;
		display: flex;
		flex-direction: column;
	}
	
	.header-b-series-name-type{
		font-size: 0.8em;
		padding-top: 10px;
	}
	
	.header-b-series-name-box{
		z-index: 2;
		width: 100%;
		padding-left: 11%;
		position: absolute;
	}
	
	.header-b-slide svg{
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
		fill: #3D63CC;
	}
	
	.yamanari-svg svg{
		width: 80px!important;
		height: 50px;
		margin-bottom: 10px;
		fill: #3D63CC;
	}
	
	.header-b-slide img{
		position: absolute;
		top: 0;
		right: 0;
		width: 60%;
		height: 100%;
		object-fit: cover;
		object-position: center bottom;
		transition: .3s;
	}
	
	.header-b-hajimeni li{
		width: 23%;
	}
	
	.header-b-item-type{
		color: #FFFFFF;
		padding-bottom: 7px;
		font-size: 0.9em;
	}
	
	.header-b-item-container{
		height: 140px;
	}
	
	.header-b-series li{
		width: 19.2%;
		height: 100px!important;
	}

	.header-b-support li{
		width: 23%;
	}
	
	.header-b-slide a:hover{
		background: #E2E5EE;
	}
	
	.header-b-slide.open{
		transform: translateY(0);
	}
	
	.header-b-series ul::before{
		content: "";
		display: block;
		width: 19%;
		order: 1;
	}
	
	.header-b-series ul::after{
		content: "";
		display: block;
		width: 19%;
	}
}

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

.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;
	background: #010101;
}

.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: "";
}

.black-nav-container{
	width: 100%;
	background: #111111;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.black-nav-maxwidth{
	max-width: 1200px;
	width: 100%;
}

.black-nav-title-box{
	width: 100%;
	display: flex;
	justify-content: center;
	background: #333333;
	color: #FFFFFF;
	font-weight: bold;
	padding: 20px 15px;
}

.black-nav-title{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	line-height: 1.4;
}

.black-nav-title h2{
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	
}

.black-nav-title-a{
	font-size: min(10vw, 60px);
	padding-right: 16px;
}

.black-nav-title-a span{
	font-size: 0.6em;
}

.black-nav-title-b{	
	font-size: min(6vw, 36px);
}

.black-nav-title-c{
	font-size: min(8vw, 46px);
}

.black-nav{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background: #333333;
}

.black-nav a{
	width: 100%;
	background: #FFFFFF;
}

.black-nav-img{
	width: 100%;
	border-top: 2px solid #FFFFFF;
	box-sizing: border-box;
	transition: .3s;
}

.black-nav-img:hover{
	opacity: 0.8;
}

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

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

.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 min(4vw, 50px);
	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;
	font-weight: bold;
	margin-top: 30px;
	background: #FFFFFF;
	padding: 5px 0 5px 5px;
}

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

.first-info a{
	position: relative;
	background: #666666;
	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;
}

.feature-container{
	width: 100%;
	background: #202535;
}

.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%);
	height: 100%;
	display: flex;
	justify-content: center;
}

.tokutyou{
	width: 100%;
	margin-bottom: 20px;
	padding-left: 10px;
}

.tokutyou p{
	background: #EEEEEE;
	color: #333333;
	font-weight: bold;
	padding: 3px 10px;
	width: 60px;
	text-align: center;
}

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

.tokutyou-takasa-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.tokutyou-takasa-bg{
	width: 95%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background: linear-gradient(0deg, #263766 90%, #233047);
}

.tokutyou-takasa-container img{
	width: 95%;
	height: auto;
}

.tokutyou-takasa-text{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
	color: #FFFFFF;
	font-size: 0.8em;
}

.tokutyou-takasa-text-box{
	width: 95%;
}

.tokutyou-takasa-text-box-sp-margin{
	margin-top: 30px;
}

.tokutyou-takasa-text-box-hinbann{
	font-weight: bold;
	font-size: 1.4em;
}

.tokutyou-takasa-text-box-hinbann span{
	padding: 0 0.3em;
}

.tokutyou-takasa-text-box-hinbann span::before{
	content:"\025b6";
}

.tokutyou-takasa-text-manufacture{
	font-weight: bold;
	margin-top: 10px;
	font-size: 1.2em;
}

.yokutyou-takasa-text-shashu{
	padding: 2px 0 0 1em;
	color: #CCCCCC;
}

.tokutyou-box{
	padding: 40px 0 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;
}

.tokutyou-text-b{
	width: 100%;
	font-size: 1em;
}

.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::before{
	content: "※";
}

.tokutyou-box-sa-b-takasa{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.tokutyou-box-sa-b-takasa picture{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.tokutyou-box-sa-b-takasa-p p{
	font-size: 0.8em;
	text-align: right;
	color: #FFFFFF;
}

.takasa-p-first{
	margin-bottom: 30px;
}

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

.tokutyou-text-sa-b{
	font-size: 1em;
	font-weight: bold;
	line-height: 1.6;
	text-align: left;
	width: 90%;
	color:#FFFFFF;
}

.tokutyou-text-sa-b-box{
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.tokutyou-text-sa-b-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	width: 100%;
	position: relative;
}

.tokutyou-text-sa-b-img picture{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.tokutyou-text-sa-b-img img{
	width: 90%;
	max-width: 400px;
	height: auto;
}


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

.tokutyou-gif-box{
	display: flex;
	width: 100%;
	background: #FFFFB3;
	align-items: flex-end;
}
	
.tokutyou-main-img{
	width: 100%;
}

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

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

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




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

.leg-num-container{
	padding-top: 40px;
}

.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-nav-option{
	margin-top: 20px!important;
}

.leg-number-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}


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

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

.leg-type{
	position: relative;
	color: #FFFFFF;
	width: 50%;
	padding: 10px 10px 10px 0;
	font-size: 0.7em;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #555555;
	z-index: 2;
}

.leg-number-b{
	width: 70%;
}

.leg-type-b{
	width: 30%;
}

.leg-type::before{
    transform: skewX(-15deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 40px;
    background: #555555;
    overflow: hidden;
    z-index: -1;
}

.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;
}

/* === スライド === */
.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: #666666;
	width: 100%;
	text-align: center;
	transition: .3s;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

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

.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: 100vw;
	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;
	height: auto;
	max-width: 900px;
	z-index: 102;
}

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

.close-button{
	position: absolute;
	top: -4%;
	right: -4%;
	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;
}

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

.senyou-nav-bbb{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.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-car-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 5px;
}

.leg-car-container a{
	width: 48%;
	display: flex;
	flex-direction: column;
	margin-bottom: 5px;
	border-radius: 10px;
}

.senyou-button .senyou-bg{ /* 専用タイプ　ボタンradius */
	border-radius: 10px 10px 0 0;
}
.senyou-button .senyou-bg-sub{
	padding: 10px 0;
	border-radius: 0 0 10px 10px;
}

.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-car-container li{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px 0;
	font-size: 0.8em;
}

.leg-car-type{
	height: 70px;
}

/* 
.leg-car-type span::before{
	content: "\A";
    white-space: pre;
} */

.leg-car-manufac{
	color: #FFFFFF;
	font-size: 1em!important;
	font-weight: bold;
}

.leg-senyou-name{ 
	width: 100%;
	text-align: center;
	color: #FFFFFF;
	padding: 5px 0;
	font-weight: bold;
}

.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__track--nav .splide__list .splide__slide.is-active{
	border: 3px solid #3D63CC;
}

.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;
	fill: #FFFFFF;
}

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

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

.size-img{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	position: relative;
}

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

.size-img-text-subimg{
	padding: 20px 0!important;
	width: 80%!important;
}

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

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

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

.size-img-double-80 img{
	width: 80%;
}

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

.size-img-container-small{
	width: 80%;
}

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

.size-img-text{
	font-size: min(4vw, 0.8em);
	color: #FFFFFF;
	margin-top: 5px;
	}

.size-img-text-triangle::before{
	content: "\025b2";
}

.size-img-gp-container .size-img{
	justify-content: center;
}

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

.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;
	color: #FFFFFF;
}

.series-ano{
	padding: 5px;
}

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

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

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

.leg-nav-car-type{
	margin-top: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-wrap: wrap;
	color: #FFFFFF;
	font-size: 0.8em;
	font-weight: bold;
	padding: 10px;
}

.leg-nav-car-type-sa-b{
	background: linear-gradient(45deg, #617287, #4D5663);
}

.leg-nav-car-type-sa{
	background: linear-gradient(45deg, #81C04F, #579C4C);
}

.leg-nav-car-type-rs{
	background: linear-gradient(45deg, #535B28, #394726);
}

.leg-nav-car-type-sgrgp{
	background: linear-gradient(45deg, #872ABD, #52338F);
}

.leg-nav-car-type-ak{
	background: linear-gradient(45deg, #EB312F, #BA384B);
}

.leg-number-senyou-container{
	display: flex;
	align-items: center;
}

.leg-number-senyou{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	font-size: 1.2em;
}

.leg-number-senyou span{
	font-size: 0.8em;
}

.leg-number-senyou-padding{
	padding-right: 1em;
}

.leg-number-material-container{
	display: flex;
}

.leg-number-material{ 
	font-size: 0.9em;
	margin-top: 5px;
	padding: 3px 6px;
	background: #EFEFEF;
	color: #333333;
	border: 2px solid #333333;
	border-radius: 5px;
}

.series-black-img-container{
	width: 100%;
}

.leg-nav-car-type ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.leg-nav-car-type li{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	width: 100%;
}

.car-type-manufac{
	color: #1F1F1F;
	background: #798EA8;
	padding: 12px 0;
	font-weight: bold;
	font-size: 1.2em;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.car-type-models{
	/* background: #EAF7DF; */
	color: #FFFFFF;
	font-weight: bold;
	border: 1px solid #798EA8;
	padding: 5px;
	line-height: 1.6;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: left;
}

/*---------------- オプションパーツ ----------------*/
.option-container{
	display: flex;
	flex-direction: column;
	width: 100%;
}

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

.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, #333333, #111111);
	color: yellow;
	font-weight: bold;
}

.option-title p{
	/* border: 1px solid #617287; */
	padding: 6px 15px;
	color: #1F1F1F;
	background: #FFFFFF;
	font-weight: bold;
}

.option-title span{
	font-size: 0.8em;
}

.option-container-a{
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
}

.option-container-b{
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	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-text-gp{
	width: 100%;
	line-height: 1.6;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #FFFFFF;
	border: 1px solid #333333;
	border-radius: 5px;
	padding: 10px;
	font-size: 0.8em;
}

.option-text-gp-a{
	margin-bottom: 10px;
}

.option-text-gp-a p{
	background: #222222;
	color: #FFFFFF;
	padding: 2px 10px;
}

.option-text-gp-b{
	width: 100%;
}


.option-rol-text{
	margin-bottom: 10px;
}

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

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

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

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

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

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

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

.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;
	background: #FFFFFF;
}

.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サイズに */
}

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

.option-gp-title{
	width: 100%;
	background: #3D63CC;
	color: #FFFFFF;
	padding: 10px 0;
	text-align: center;
	font-size: 1.2em;
	margin-top: 30px;
}

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

.option-tyuui-container-a{
	text-decoration: underline;
	color: #1558D6;	
}

/*================ table ================*/
.table-container{
	position: relative;
	margin-top: 30px;
}

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

.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-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-gray-e{
	background: #444444;
}

.bg-gray-f{
	background: #333333;
}

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

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

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

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

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

.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%;
}

.joint-size-container{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center; 
	padding-top: 20px;
}

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

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

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

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

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

.leg-support-nav-blue:hover{
	background: #6086CC!important;
}

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

.gp-table-title{
	font-weight: bold;
	margin-bottom: 10px;
	color: #FFFFFF;
}

.gp-table-title::before{
	content: "\025a0";
}

.icon-ak-container{
	margin-top: 10px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.icon-ak-container-margin{
	margin-bottom: 20px;
}

.icon_ak{
	max-width: 90px;
	max-height: 90px;
	width: 20vw;
	height: 20vw;
	margin: 0 5px;
}

.icon_ak img{
	width: 100%;
}

/*===================
横幅768px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 768px){
	.container{
		margin-top: 65px; /* header分下に */
	}
	
	.tokutyou-text-top{
		width: 80%;
	}

	.type-link a:hover{ /* ★ */
		background: #EEEEEE;
		color: #617287;	
	}
	
	.black-nav{
		justify-content: space-between;
	}
		
	.black-nav a{
		width: 49%;
		margin-bottom: 20px;
	}
	
	.black-nav-img{
		border: 2px solid #FFFFFF;
		
	}
	
	.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%;
	}
		
	.size-img-container-small{
		width: 35%!important;
	}
	
	.size-img-gp{
		padding-bottom: 5px;
	}
	
	.size-img img{
		width: 60%;
	}
	
	.size-img-100 img{
		width: 100%;
	}	
	
	.size-img-text-subimg img{
		width: 100%!important;
	}

	.size-img-sa-b img{
		/* max-width: 800px; */
		width: 100%!important;
	}

	
	.size-img-text-box{
		width: 48%;
		padding-top: 0;
	}
	
	.size-img-double{
		width: 48%!important;
	}
		
	.size-img-double-padding{
		padding-left: 20px;
	}
		
	/*.size-img-small{
		width: 40%!important;
		padding-right: 40px;
	}
*/	
	.size-img-double img{
		width: 100%!important;
	}
		
	/* ----------------------------- */
	.size-img-sa-b-mobile{
		display: none!important;
	}
		
	.size-img-sa-b-pc{
		display: block!important;
	}
	/* ----------------------------- */

	
	.type-nav ul{
		font-size: 1em;
	}
	
	.type-nav-b.active{
		top: 65px;
	}
	
	.first-info a{
		width: 46%;
	}
		
	.tokutyou-text{
		display: flex;
		flex-direction: column;
		width: 60%;
	}
		
	.tokutyou-takasa-container img{
		width: 100%;
	}
			
	.tokutyou-text-sa-b-img{
		width: 50%;
	}
	
	.tokutyou{
		padding-left: 0;
	}
	
	.tokutyou-box{
		padding-left: 10px;
	}
	
	.tokutyou-takasa-bg{
		width: 80%;
	}
	
	.tokutyou-takasa-text{
		width: 80%;
		font-size: 0.8em;
		justify-content: space-between;
	}
	
	.tokutyou-takasa-text-box{
		width: 47%;
	}
	
	.tokutyou-takasa-text-box-sp-margin{
		margin-top: 0;
	}
	
	.tokutyou-takasa-text-box-hinbann{
		font-size: 1.6em;
	}
		
	.tokutyou-box-sa-b-takasa{
		width: 48%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
		
	.leg-number{
		width: 60%;
		font-size: 1.2em;
		padding-left: 30px;
	}
	
	.leg-number span::before{ /* 改行なし */
		content: "\A";
		white-space: nowrap;
	}
	
	.leg-type{
		width: 40%;
		font-size: 1.2em;
		padding-right: 30px;
	}
	
	.leg-quad-menu-container{
		width: 24%!important;
	}
	
	.leg-nav-car-type{
		font-size: 1.2em;
		flex-direction: row;
	}
	
	.leg-number-senyou{
		padding-left: 20px;
	}
	
	.leg-number-material{
		margin-top: 0;
		margin-right: 20px;
		padding: 6px 9px;
		border-radius: 5px;
	}
	
	.table-sup-img{
		width: 48%;
	}
	
	.joint-size-container{
		width: 48%;
	}
	
	.leg-car-container a{
		width: 32%;
	}
	
	.leg-car-container::after{
		content:"";
		width: 32%;
		display: block;
	}
	
	.leg-car-container::before{
		content:"";
		width: 32%;
		display: block;
		order: 1;
	}
	
	.leg-car-single{
		width: 100%!important;
	}
	
	.leg-car-double{
		width: 48%!important;
	}
	
	.leg-car-triple{
		width: 32%!important;
	}
	
	.leg-car-quad{
		width: 24%!important;
	}
	
	.leg-car-mobile, .leg-car-mobile-double{
		margin-bottom: 0;
	}
	
	.movie-box{
		width: 48%;
	}
			
	.sp01-mobile-img{
		display: none;
	}
	
	.sp01-pc-img{
		display: block;
	}
	
	.close-button{
		top: -4%;
		right: -4%;
		font-size: 40px;
		width: 55px;
		height: 55px;
		border-radius: 7px;
	}
	
	.option-container-a{	
		justify-content: space-between;
	}
	
	.option-title{
		width: 100%;
	}
		
	.option-top-text-a{
		font-size: 1.2em;
	}
	
	.option-img-box{
		width: 48%;
	}
	
	.option-img-box-60{
		width: 60%!important;
	}
	
	.option-text-flex{
		width: 36%;
	}
	
	.option-text-sp{
		font-size: 1em;
	}
	
	.option-img-box-b20{
		width: 31%!important;
	}
	
	.option-text-gp{
		width: 60%;
		font-size: 1em;
	}
	
	.tokutyou-text-sa-b-box{
		margin-bottom: 30px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
		width: 100%;
	}
	
	.tokutyou-text-sa-b{
		width: 50%;
	}
	
	.tokutyou-text-sa-b-takasa{
		width: 100%!important;
	}
	
	.tokutyou-text-sa-b-takasa span{
		font-size: 1.4em;
	}
	
	.tokutyou-text-sa-b-img{
		width: 50%;
	}
	
	.tokutyou-text-img-absolute img{
		position: absolute;
	}
	
	.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;
	}
	
	.takasa-p-first{
		margin-bottom: 0;
	}
}
/*===================
横幅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;
	}
	
	.type-nav-b.active{
		top: 105px;
	}
	
	.size-img-text, .option-img-text{
		font-size: 1em;
	}
	
	.option-img-text-gp{
		font-size: 0.8em;
	}
		
	.table-sup a{
		text-decoration: none;
	}
	
	.table-sup a:hover{
		text-decoration:underline;
	}
	
	.table-hinbann{
		padding: 10px 0 10px 20px!important;
	}
	
	.table-kakaku{
		padding: 10px 20px 10px 10px!important;
	}
	
	.table-miri{
		padding: 10px 3% 10px 0!important;
	}
	
	.option-tyuui-container-a{
		text-decoration: none;	
	}
	
	.option-tyuui-container-a:hover{
		text-decoration: underline;
	}
	
	.tokutyou-takasa-bg{
		width: 70%;
	}
	
	.tokutyou-takasa-text{
		font-size: 1em;
		width: 70%;
	}
	
	.tokutyou-text-sa-b-img{
		width: 40%;
	}

}
/*===================
横幅1400px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 1400px){
	.table-hinbann{
		padding: 10px 0 10px 30px!important;
	}
	
	.table-kakaku{
		padding: 10px 30px 10px 0!important;
	}
	
	.table-miri{
		padding: 10px 3.5% 10px 0!important;
	}

}

/*===============================================================
 フッター
=================================================================*/

footer{
	margin-top: 50px;
	padding-top:30px;
	background: #555555;
	color: #FFFFFF;
}

.footer-container{
	padding: 4vw 4vw 10vw 4vw;
	display: flex;
	justify-content: center;
	position: relative;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 100px;
}

.footer-aboutus{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-mail{
	color: #3D63CC;
	background: #FFFFFF;
	border: 1px solid #3D63CC;
	font-weight: bold;
	padding: 8px;
	width: 250px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}

.footer-mail svg{
	width: 20px;
	margin: 0 0 3px 2px;
	fill: #3D63CC;
}

.footer-text{
	margin-top: 80px;
	display: flex;
	flex-direction: column;
}

.footer-name{
	padding-top: 0;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 16px;
}

.footer-address{
	padding-top: 16px;
	font-size: 0.8em;
}

.footer-sitemap{
	display: none;
}

.footer-sitemap ul{
	display: flex;
}

.footer-sitemap li{
	display: flex;
	flex-direction: column;
}

.footer-arrow{
	position: absolute;
	bottom: 20px;
	right: 5vw;
	transition: .6s;
	font-size: 0.8em;
	border: 1px solid #FFFFFF; /* ★ */
	z-index: 3;
}

.footer-arrow a{
	position: relative;
 	display: block;
	width: 60px;
	height: 70px;
}

.footer-arrow a::before{
    content: "";
	position: absolute;
	right: 0;
	left: 0;
	top: -20px;
	bottom: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border-top: 6px solid #FFFFFF; /* ★ */
	border-right: 6px solid #FFFFFF; /* ★ */
	transform: rotate(-45deg);
	box-sizing: content-box;
}

.footer-arrow a::after{
	white-space: pre; /* 改行用 */
	content: 'PAGE\ATOP';
	font-size: 13px;
	color: #FFFFFF; /* ★ */
	position: absolute;
	bottom: 5px;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

.footer-arrow.active{
	position: fixed;
	bottom: 160px;
}

.footer-copy{
	padding: 5px;
	background: #888888;
	font-size: 0.7em;
	display: flex;
	justify-content: center;
}

.footer-copy::before{
	content: "\0a9";
}

.footer-sitemap a:hover{
 	text-decoration: underline;
}
	
.footer-mail:hover{
	background: #CCCCCC;
	color: #3D63CC;
}
	
.footer-arrow:hover{
	transform: translateY(-10px);
}

/*===================
横幅768px以上でのレイアウト　フッター
===================*/
@media screen and (min-width: 768px){
	footer{
		font-size: 1.2em;
	}
		
	.footer-mail{
		font-size: 1.2em;
		width: 320px;
		border-radius: 60px;
	}
		
	.footer-mail svg{
		width: 40px;
		margin: 0 0 6px 4px;
	}
	
	.footer-arrow img{
		width: 70px;
	}
	
}

/*===================
横幅1025px以上でのレイアウト　フッター
===================*/
@media screen and (min-width: 1025px){
	.footer-container{
		justify-content: space-between;
	}
	
	.footer-sitemap{
		display: block; 
		width: 60%;
		font-size: 0.8em;
	}
	
	.footer-sitemap ul{
		display: flex;
		justify-content: space-around;
	}
	
	.footer-sitemap li{
		line-height: 1.7;
	}
		
	.footer-sitemap h3{
		font-weight: bold;
		margin-bottom: 10px;
	}
	
	.footer-sitemap span{
  		margin-top: 10px;
	}

	.footer-sitemap span:first-of-type{
		margin-top: 0;
	}
	
	.footer-sitemap a{
		color: #DDDDDD;
		position: relative;
  		padding-left: 20px;
	}
	
	.footer-sitemap a::before{
		content: "";
		position: absolute;
		left: 10px;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 6px;
		height: 6px;
		border-radius: 2px;
		border-left: 1px solid #AAAAAA;
		border-bottom: 1px solid #AAAAAA;
		transform: rotate(-135deg);
		box-sizing: content-box;
		transition: 0.6s cubic-bezier;
	}
	
	.footer-aboutus{
		width: 30%;
		overflow: hidden;
	}
	
	.footer-logo img{
		width: 240px;	
	}
	
	.footer-mail{
		font-size: 0.8em;
		width: 200px;
		border-radius: 30px;
	}
	
	.footer-mail svg{
		width: 20px;
		margin: 0 0 3px 2px;
	}
	
	.footer-text{
		font-size: 0.8em;
	}
	
	.footer-name{
		font-size: 1.5em;
	}
	
	.footer-sitemap a:hover{
		color: #FFFFFF;
 		text-decoration: underline;
	}
}

/*===================
横幅1400px以上でのレイアウト　フッター
===================*/
@media screen and (min-width: 1400px){
	.footer-arrow{
		right: 60px;
	}
	
	.footer-container{
		padding: 50px 50px 100px 50px;
	}
}
