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

/*===============================================================
 ヘッダー 
=================================================================*/
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;
}
	
.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;
}

.font-red{
	color: #FF5050;
}

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

.font-lightblue{
	color: #ABE1FA;
}

.font-orange{
	color: #FF7D00;
}

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

.new-release{
	font-size: 1em;
	font-weight: bold;
	color: yellow;
	background: #333333;
	padding: 5px 10px;
	width: 100%;
	text-align: center;
	line-height: 1.6;
}

.new-release-span{
	font-size: 0.8em;
}

.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;
	}
	
	.new-release{
		font-size: 1.2em;
	}
}

/*===================
横幅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;
}

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

/* 特徴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%;
	height: auto;
}

.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: 6px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.joint-box-03-text{
	padding: 0 15px;
	font-size: 0.8em;
}

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


/*===============================================================
 製品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%;
	diaplay: 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 5px 5px 0;
}

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

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

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

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

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

.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-text-box{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	font-weight: bold;
	padding-top: 40px;
	padding-right: 10px;
	margin-top: 10px;
}

.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: -4px;
	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: 0.7em;
	line-height: 1.1;
	padding: 5px 10px;
}

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

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

/*---------------- オプションパーツ ----------------*/
.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;
	padding-right: 15px;
}

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

.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;
	position: relative;
	padding-top: 56.25%; /* 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: 6px 0;
	font-size: 0.8em;
}

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

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

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

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

.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;
	}
	
	.size-img img{
		width: 60%;
	}
	
	.size-img-80-40 img{
		width: 40%;
	}
	
	.size-img-double{
		width: 48%!important;
	}
	
	.size-img-double img{
		width: 100%!important;
	}
	
	.size-img-double-80 img{
		width: 80%!important;
	}
		
	.size-img-text-box{
		width: 48%;
		padding-top: 0;
		margin-top: 40px;
	}
	
	.size-img-text{
		/*font-size: 1.2em;*/
		font-size: 1em;
		padding: 5px 15px;
	}
	
	.size-img-kosupa{
		width: 48%!important;
	}
	
	.size-img-kosupa-b{
		width: 44%!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;
	}
	
	.movie-box{
		width: 48%;
		padding-top: 27%; /* 16:9サイズに */
	}
			
	.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;
	}

}

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

footer{
	margin-top: 50px;
	padding-top:30px;
	background: #111111;
	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: #111111;
	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 #81C048; /* ★ */
	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 #81C048; /* ★ */
	border-right: 6px solid #81C048; /* ★ */
	transform: rotate(-45deg);
	box-sizing: content-box;
}

.footer-arrow a::after{
	white-space: pre; /* 改行用 */
	content: 'PAGE\ATOP';
	font-size: 13px;
	color: #81C048; /* ★ */
	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: #FFFFFF;
	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: #CCCCCC;
		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;
	}
}