@charset "utf-8";
/* CSS Document */

body {/*
-moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
font-feature-settings: "palt";
}

:focus {
    outline: none;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex dd {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.flexEnd {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.row_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
   flex-direction: row-reverse;
}
.w50p {
	width: 50%;
}
.w30p {
	width: 30%;
}
.mb10 {
	margin-bottom: 10px;
}
.mb60 {
	margin-bottom: 60px;
}
.f24 {
	font-size: 24px;
}
.spBox {
	display: none;
}
.grid {
	-ms-display: grid;
	display: grid;
}
.col125 {
  	gap: 10px 10px;
	grid-columns: repeat(auto-fit, minmax(125px, 1fr));
	grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
}
.col200 {
  	gap: 10px 10px;
	grid-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.col250 {
  	gap: 10px 10px;
	grid-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.col3fr {
  	gap: 10px 10px;
	grid-columns: repeat(3, minmax(auto, 1fr));
	grid-template-columns: repeat(3, minmax(auto, 1fr));
}
.col250_2fr {
  	gap: 10px 10px;
	grid-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.linkA {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.linkA:hover {
	background: rgba(255 255 255 / 10%);
}
a img {
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}
a:hover img {
	opacity: 0.6;
}
.stamp01 span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    color: #fff;
    font-size: 12px;
    background: #d94242;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.reference:before {
	content: "※";
}
.red {
	color: #c00;
}
.alignC {
	text-align: center;
}
.alignL {
	text-align: left;
}
.alignR {
	text-align: right;
}
ul.disc li {
	list-style-type: disc;
}
@media screen and (max-width:480px){
	.col250_2fr {
		gap: 10px 10px;
		grid-columns: repeat(2, minmax(auto, 1fr));
		grid-template-columns: repeat(2, minmax(auto, 1fr));
	}
	
}
/*header
*******************************************************************************************************************************************/
#headerTitle {
	margin-bottom: 10px;
	padding: 1px 10px;
	font-size: 10px;
	background: #eee;
}
#headerTitle div {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
#headerMenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	font-size: 12px;
}
#headerMenu li {
	list-style: none;
	position: relative;
	padding: 1px 10px;
}
.ec-headerNaviRole .tekigo a {
    margin-right: 15px;
    padding: 2px 15px;
    color: #fff;
    font-size: 12px;
    background: #000;
    -webkit-transition: 0.3s all;
    -ms-transition: 0.3s all;
    transition: 0.3s all;
}

@media only screen and (max-width: 768px) {
	.spBox {
		display: inherit;
	}
	#headerTitle {
		margin-bottom: 0;
		color: #fff;
		background: #000;
		overflow-x: scroll;
	}
	
}
/* sp navi
**********************************************************************************/

#spNav,
.sp {
	display: none;
}	
@media only screen and (max-width: 768px) {
#spNav,
.sp {
	display: inherit;
}	
#spNav a {
	display: block;
}	
.accordion_icon, .accordion_icon span {
	display: inline-block;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
}
.accordion_icon {
	position: absolute;
	top: 10px;
	right: -10px;
	width: 25px;
	height: 30px;
}
.accordion_icon span {
	position: absolute;
	left: 5px;
	width: 30%;
	height: 1px;
	background: #aaa;
	border-radius: 4px;
	-webkit-border-radius: 4px;
}
.accordion_icon span:nth-of-type(1) {
	top: 10px;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.accordion_icon span:nth-of-type(2) {
	top: 10px;
	left: 0;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.accordion_icon.active span:nth-of-type(1) {
	top: 10px;
	left: 5px;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.accordion_icon.active span:nth-of-type(2) {
	top: 10px;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/*************************************************************/
.navOpen nav {
	opacity: 1;
	right: 0;
}
	
	nav * {
		box-sizing: border-box;
	}
nav > ul {
	width: 100%;
}
nav:not(.fs-p-headerNavigation) ul,
nav:not(.fs-p-headerNavigation) ul li,
nav:not(.fs-p-headerNavigation) ul li dl dd {
	list-style-type: none;
	margin: 0;
	padding: 0;
	}
nav:not(.fs-p-headerNavigation) ul li a {
	display: block;
	position: relative;
	color: #fff;
	text-decoration: none;
}
nav ul li dl dt a {
	z-index:-1;
}
nav ul#menu li ul li a:before {
	content:none;/*
	content: url(../images/left/arrow_right.png);*/
	position: absolute;
	top: 20px;
	left: 14px;
}
nav:not(.fs-p-headerNavigation) ul li ul, nav ul li ul li {
	position: relative;/*
	background: rgba(0,0,0,0.02);*/
}
nav ul li ul li:last-child {
	border: none;
}
nav ul li ul li i {
	margin:0 10px 0 0;
}
#menu li dl dt {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: space-between;
	-webkit-box-pack: space-between;
	justify-content: space-between;
	color: #333;
}
#menu li dl dd li dl dt {
	background: #e2e2e2;
}
#menu li dl dd li dl dd ul li {
	padding: 0;
	border-bottom: dotted 1px #fff;
}
#menu li dl dd li dl dd ul li:last-child {
	border: none;
}
/* menu-icon */
.acdn-content {
	display: none
}
nav:not(.fs-p-headerNavigation) {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 320px;
	height: 100%;
	-moz-box-shadow: 5px 0px 5px #333;
	-ms-box-shadow: 5px 0px 5px #333;
	-o-box-shadow: 5px 0px 5px #333;
	-webkit-box-shadow: 5px 0px 5px #333;
	box-shadow: 5px 0px 5px #11284c;
	opacity: 0;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	overflow: auto;
	z-index: 9999;
}
nav ul li.cartImg {
	width: 33%;
	font-size:14px;
}
nav ul li i {
	margin:0 8px 0 0;
}
nav ul li ul li ul li {
	padding-left: 20px;
	border-top: 1px solid #ccc;
}
.nav_close {
	position: absolute;
	right: 0;
	top: 7px;
	background: #fff;
	width: 35px;
	height: 30px;
	z-index: 99;
	padding: 10px 10px 0 0;
}
.nav_close span {
	display: block;
	width: 100%;
	height: 4px;
	background: #666;
	border-radius: 5px;
}
.nav_close span:nth-child(1) {
	-ms-transform: rotate(45deg);
	-webkir-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav_close span:nth-child(2) {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -4px;
}
.navBtn {
	display: block;
	position: fixed;
	top: 5px;
	right: 5px;
	width: 38px;
	margin: 17px auto 3px;
	padding: 5px 5px 17px;
	font-size: 10px;
	background: rgba(255,255,255,0.7);
	cursor: pointer;
	z-index: 999;
}
.navBtn:after {
	content: 'MENU';
	position: absolute;
	width: 90%;
    left: 3px;
    right: 0;
    bottom: 0;
}
.navBtn span {
	background: #11284c;
}
.navBtn span {
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 2px;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.navBtn span:nth-of-type(2), .navBtn span:nth-of-type(3) {
	margin-top: 5px;
}
/* nav icon active */
.navOpen .navBtn {
	left: 20px;
    right: auto;
	background: none;
}
.navOpen .navBtn:after {
	content: 'CLOSE';
	position: absolute;
	width: 100%;
	left: 2px;
    right: 0;
    color: #fff;
    bottom: 0;
	z-index: 999;
}
.navOpen .navBtn span:nth-of-type(1) {
	-ms-transform: translateY(5px) translateX(0) rotate(45deg);
	-webkit-transform: translateY(5px) translateX(0) rotate(45deg);
	transform: translateY(5px) translateX(0) rotate(45deg);
}
.navOpen .navBtn span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-ms-transform: translateY(9px);
	-webkit-transform: translateY(9px);
	transform: translateY(9px);
}
.navOpen .navBtn span:nth-of-type(3) {
	-ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
	-webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
	transform: translateY(-9px) translateX(0) rotate(-45deg);
}
.navOpen .navBtn span {
	background: #fff;
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	z-index: 999;
}
#headerNav > ul.tel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	border-top: 1px dotted #534f51;
	line-height: 1;
}
#headerNav > ul.tel li:first-of-type {
	width: -webkit-calc(100% - 33%);
	width: calc(100% - 33%);
	padding: 9px 1px 0 30px;
    background: url(../img/tel2.png) 5px 3px no-repeat;
	line-height: 1.1;
}

#headerNav > ul.tel li:first-of-type a {
	font-size: 14px;
}
#headerNav > ul.tel div {
	position: absolute;
	left: 10px;
	font-size: 10px;
}

#headerNav {
	display: block;
    position: fixed;
    margin-bottom: 20px;
    background: #f2f2f2;
    overflow-x: scroll;
    padding: 0 5px;
    border: 1px solid #ccc;
}

#headerNav h2 {
	margin-bottom: 0;
    background: #e8e8e8;
}

#headerNav img {
	width: 100%;
	vertical-align: bottom;
}
#headerNav h2:before {
	content:"PICK UP ITEM";
	position: absolute;
	top: 3px;
	left: 0;
    width: 100%;
    padding: 0 5px;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    background: #000;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#headerNav h2 img {
	width: 100%;
}

#headerNav > ul > li.cart {
	width: 48px;
	margin-left: auto;
	color: #fff;
	text-align:center;
	background:#11284c url(../images/cart.svg) center 7px no-repeat;
	background-size: 25px;
}

#headerNav ul li.cart a {
	text-align: center;
}


#headerNav > ul {
	position: relative;
	color: #fff;
	background: #2f3333;
}
#headerNav > ul > li ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
    position: inherit;
    top: auto;
	left: auto;
	width: 100%;
	margin: 0 auto 5px;
	padding: 0;
	background: #f5f5f5;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	opacity: 1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
#headerNav > ul > li:hover ul {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	top: auto;
    width: 100%;
    visibility: visible;
    opacity: 1;
	z-index: 999;
}
#headerNav > ul > li ul li {
	width: 50%;
	word-break: break-all;
	border-right: 1px dotted #ccc;
	border-top: 1px dotted #ccc;
}
#headerNav > ul > li ul li a {
	width: 100%;
	height: auto;
	padding: 5px;
	color: #11284c;
	font-size: 11px;
	text-align: center;
	font-weight: normal;
}
#headerNav > ul > li ul li:nth-of-type(2n),
#headerNav > ul > li ul li:last-of-type {
	border: none;
	border-top: 1px dotted #ccc;
}
#headerNav > ul > li ul li:first-of-type,
#headerNav > ul > li ul li:nth-of-type(2) {
	border-top: none;
}
#headerNav > ul > li ul li a:hover {
	color: #f8d200;
}
.searchBox {
	padding: 8px 10px;
	background: #000;	
}
.searchBox input {
	width: -webkit-calc(100% - 45px);
	width: calc(100% - 45px);
	height: 30px;
	padding:5px;
}
.searchBox input.btn {
	width: 40px;
    height: 29px;
    border: none;
    background: #555 url(../img/icon_search.png) center no-repeat;
    background-size: 23px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.navMenu li:first-of-type {
	border-top: 1px dotted #534f51;
}
.navMenu > li {
	padding: 2px 10px;
	border-bottom: 1px dotted #534f51;
}
.navMenu li dl {
	margin: 0;
}
.navMenu li dl dt {
	position: relative;
	padding-right: 20px;
	z-index: 2;
}
.navMenu li dl dt {
	padding: 10px 20px 10px 3px;
	font-weight: normal;
}
#headerNav > ul.spnavMenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 12px;
	background: #555;
}
#headerNav > ul.spnavMenu li {
	width: 50%;
	padding: 5px;
	text-align: center;
	border-bottom: 1px dotted #ccc;
}
#headerNav > ul.spnavMenu li:nth-of-type(2n) {
	border-left: 1px dotted #ccc;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
   -webkit-appearance: none;
   border-radius: 0;
}
	.fixed {
		position: fixed;
	}
}
/* footer
*******************************************************************************************************************************************/
#footer {
	width: 960px;
	margin: 0 auto;
}
.ec-layoutRole__footer h2 {
	padding: 5px;
    color: #fff;
    font-size: 24px;
	text-align: center;
    background: #000;
}
.ec-layoutRole__footer h2 .fa,.ec-layoutRole__footer h2 .fas,.ec-layoutRole__footer h2 .far {
	color: #fff;
}

.ec-layoutRole__footer .fa,.ec-layoutRole__footer .fas, .ec-layoutRole__footer .far {
    margin-right: 10px;
	color: #0073c4;
}

#footer h3 {
	margin: 0 0 15px;
	font-size: 16px;
	font-weight: bold;
}
#footer h4 {
	font-size: 14px;
}
#footerBox {
	display: -ms-grid;
	display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
	-ms-grid-rows: (auto)[4];
	grid-template-rows: repeat(4, auto);
	padding: 0;
}
#footerBox ol {
	margin: 0 0 15px;
	padding-left: 17px;
	list-style-type: decimal;
}
#footerBox ul.listDisc {
	list-style-type: disc;
	margin-bottom: 15px;
	padding-left: 17px;
}
#footerBox > li {
	list-style: none;
	margin: 5px;
	padding: 15px;
	background: #fff;
}

#footerBox li img {
	width: 100%;
	padding: 10px;
}
#footerBox li:first-of-type {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1 / 4;
}
#footerBox li:nth-of-type(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  grid-row: 1 / 2;
}
#footerBox li:nth-of-type(3) {
  -ms-grid-column: 3;
  grid-column: 3 / 4;
  -ms-grid-row: 1;
  grid-row: 1 / 2;
}
#footerBox li:nth-of-type(4) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / 4;
  -ms-grid-row: 2;
  grid-row: 2 / 3;
}
#footerBox li:nth-of-type(5) {
  -ms-grid-column: 2;
  grid-column: 2 / 3;
  -ms-grid-row: 3;
  grid-row: 3 / 4;
}
#footerBox li:nth-of-type(6) {
  -ms-grid-column: 3;
  grid-column: 3 / 4;
  -ms-grid-row: 3;
  grid-row: 3 / 4;
}
#footerBox li:nth-of-type(7) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / 4;
  -ms-grid-row: 4;
  grid-row: 4 / 5;
}
#footer dl dt {
	width: 50%;
}
.copyright {
	padding: 5px;
	color: #fff;
	font-size: 10px;
	text-align: center;
	background: #000;
}

@media only screen and (max-width: 869px) {
#footer {
	width: 100%;
	margin: 0 auto;
}

#footerBox {
	display: block;
}
	
	
	
}

/*********************************************/
/* main
**********************************************/
/*tab
**********************************************/

.tabContent ul {
	margin: 0;
	padding: 0;
}

.tabWrap input:checked+label {
	color: #fff;
 	background: #d94242;
}

#selectBox01 {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 15px;
	overflow: hidden;
}
#selectBox02 {
	width: 960px;
	margin: 0 auto;
	overflow: hidden;
}
#selectBox01 .tabWrap > input+label span,
#selectBox02 .tabWrap > input+label span {
    display: block;
    font-size: 10px;
}
#selectBox01 .tabWrap > input:checked+label span,
#selectBox02 .tabWrap > input:checked+label span {
    display: block;
	color: #fff;
    font-size: 10px;
}
.category01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.category01 li {
	width: calc(100% / 3);
}
.category01, .marker, .marker li dl dd, .featureBox ul, .featureBox ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}


#selectBox {
	overflow: hidden;
}

.tabWrap input:checked+label+.tabContent,
.tabWrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 10px;
}
.tabWrap input[type="radio"] {
	display:none;
}
.tabWrap > label {
	display: block;
	position: relative;
	flex: 1;
	order: -1;
	margin-left: 10px;
	padding: 6px 10px 0;
	font-size: 14px;
	text-align: center;
	background: #f5f5f5;/*
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;*/
	line-height: 1.2;
	z-index: 1;
	cursor: pointer;
}
#recommend .tabWrap > label {
	padding: 7px;
}
@media screen and (max-width:869px) {

#selectBox01 {
	padding: 0 10px;
	box-sizing: border-box;
}	

#selectBox02 {
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
}
	
.tabWrap > label {
	padding: 5px 10px 3px;
    font-size: 12px;
}
}

.tabWrap > label span {
	display: block;
	font-size: 10px;     
}

.tabWrap > label.type01:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 46px;
	background: url(https://hidya.jp/shop/html/user_data/images/title_hid01.png) 0 1px no-repeat;
    background-size: 41px;
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
.tabWrap > label.type01:after {
	content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 55px;
    height: 46px;
    background: url(https://hidya.jp/shop/html/user_data/images/title_led01.png) 19px 2px no-repeat;
    background-size: 41px;
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
.tabWrap > label.manufacturer01:before {
	content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 70px;
    height: 35px;
	background: url(https://hidya.jp/shop/html/user_data/images/title_car01.png) 0 7px no-repeat;
    background-size: 35px;
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
.tabWrap > label.manufacturer01:after {
	content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 70px;
    height: 35px;
    background: url(https://hidya.jp/shop/html/user_data/images/title_bike01.png) 34px 1px no-repeat;
    background-size: 35px;
    -webkit-opacity: 0.5;
    opacity: 0.5;
}
.tabWrap > label.location01:before {
	content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 70px;
    height: 40px;
    background: url(https://hidya.jp/shop/html/user_data/images/title_car01front.png) 3px 7px no-repeat;
    background-size: 35px;
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
.tabWrap > label.location01:after {
	content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 70px;
    height: 40px;
    background: url(https://hidya.jp/shop/html/user_data/images/title_car01back.png) 33px 8px no-repeat;
    background-size: 34px;
	-webkit-opacity: 0.5;
	opacity: 0.5;
}
.tabWrap label:hover {
	opacity: 0.6;
}
.tabWrap label:first-of-type {
	margin-left: 0;
}

.tabContent {
	display: none;
	width: 100%;
	height: 0;
	opacity: 0;
}
.tabContent a {
	display: block;
	text-decoration: none;
	word-break: break-all;
}
.tabWrap > input:checked+label.type01:before,
.tabWrap > input:checked+label.type01:after,
.tabWrap > input:checked+label.manufacturer01:before,
.tabWrap > input:checked+label.manufacturer01:after,
.tabWrap > input:checked+label.location01:before,
.tabWrap > input:checked+label.location01:after,
.tabWrap input:checked+label:hover {
	display: block;
	opacity: 1;
}
.tabWrap input:checked+label+.tabContent {
	height: auto;
	padding: 15px 0;
	opacity: 1;
	-webkit-transition: 1s opacity;
	-ms-transition: 1s opacity;
	transition: 1s opacity;
	z-index: 9;
}

.tabWrap input:checked+label+.tabContent label {
	display: block;
	position: relative;
	flex: 1;
	order: -1;
	max-width: 25%;
	margin-left: 10px;
	padding: 5px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	text-align: center;
	background: #999;
	-webkit-border-radius: 0;
	border-radius: 0;
	z-index: 1;
	cursor: pointer;
}
@media screen and (max-width:768px) {
	#selectBox01 .tabWrap > input:checked+label span,
	#selectBox01 .tabWrap > input+label span,
	#selectBox02 .tabWrap > input:checked+label span,
	#selectBox02 .tabWrap > input+label span {
		display: none;
	}
	.tabWrap > label.type01:before {
		top: 10px;
		left: -5px;
		background-size: 30px;
	}
	.tabWrap > label.type01:after {
		top: 10px;
		right: -8px;
		background-size: 30px;
	}
	.tabWrap > label.manufacturer01:before {
		top: 7px;
		background-size: 27px;
	}
	.tabWrap > label.manufacturer01:after {
		top: 13px;
		right: -9px;
		background-size: 27px;
	}
	.tabWrap > label.location01:before {
		top: 6px;
		left: -2px;
		background-size: 28px;
	}
	.tabWrap input:checked+label+.tabContent label {
		max-width: max-content;
		min-width: 17%;
		padding: 3px 10px;
		flex: none;
	}
	.tabWrap > label.location01:after {
		top: 5px;
		right: -8px;
		background-size: 28px;
	}
	.tabWrap input:checked+label+.tabContent, .tabWrap {
		padding: 0;
	}
	
	
}

.tabWrap input:checked+label+.tabContent label:first-of-type {
	margin-left: 0;
}
.tabWrap input:checked+label+.tabContent input:checked+label {
	color: #ff0;
	background: #000;
}

.category01 {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	height: 300px;
	padding: 0;
	overflow-y: scroll;
}
.category01::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}
.category01::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 4px #aaa inset;
}
.category01::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #999;
}

.category01 li {
	list-style: none;
	width: -webkit-calc(100% / 2);
	width: calc(100% / 2);
	margin-bottom: 20px;
}
.category01 li dl dd h3 {
	padding-left: 20px;
	font-size:12px;
	font-weight: normal;
    line-height: 1.5em;
}
.category01 li dl dt a {
	display: block;
	position: relative;
	margin-bottom: 5px;
	font-weight: bold;
	text-decoration: none;
}
.category01 li dl dt a:before {
    content: "▶";
    color: #ffc800;
    margin-right: 5px;
}
.category01 li dl dd {
	position: relative;
	margin: 0 0 20px;
}
.category01 li dl dd h3 a:before {
	content: "├";
	position: absolute;
	left: 0;
    margin-right: 2px;
    padding-left: 5px;
    vertical-align: top;
}
.category01 li dl dd h3:last-of-type a:before {
	content: "└";
} 


/*メーカー適合表
**************************************************************/

.marker li {
	height: 300px;
	overflow-y: scroll;
}
.marker li::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}
.marker li::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 4px #aaa inset;
}
.marker li::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #999;
}
#side_review dl {
    border: 1px solid #c09669;
    -webkit-border-radius: 6px 6px 0 0;
    border-radius: 6px;
}

.marker li dl {
	padding: 0 10px;
}
.marker li dl dt {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	padding: 3px 30px;
	background: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid #555;
	z-index: 10;
}
.tabContent .tabContent:first-of-type .marker li dl dt:before {
	content:"";
	position: absolute;
	top: 4px;
    left: 0;
	width: 50px;
	height: 30px;
	background: url(../img/icon/japan.svg) no-repeat;
	background-size: 20px;
}


.tabContent .tabContent:nth-of-type(2) .marker li dl dt:before {
	content:"";
	position: absolute;
	top: 5px;
	left: 2px;
	width: 50px;
	height: 30px;
	background: url(../img/icon/world.svg) no-repeat;
	background-size: 15px;
}
.tabContent .tabContent:nth-of-type(3) .marker li dl dt:before {
	content:"";
	position: absolute;
	top: 1px;
	left: 0;
	width: 50px;
	height: 30px;
	background: url(../img/icon/bike.svg) no-repeat;
	background-size: 23px;
}
.marker li dl dd {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
}
.marker li dl dd h3 {
	width: -webkit-calc(100% / 3 - 10px);
	width: calc(100% / 3 - 10px);
	margin: 0 5px 20px 3px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	background-size: 40px;
	border: 1px solid #efefef;
	line-height:1em;
}
@media screen and (max-width:768px) {
.marker li dl {
    padding: 0;
}
	.marker li dl dd h3 {
		width: -webkit-calc(100% / 2 - 10px);
		width: calc(100% / 2 - 10px);
	}
}
.marker li dl dd h3 a {
	display: block;
    height: 50px;
    padding: 15px 5px 0 50px;
	font-size: 12px;
	font-weight: normal;
	border-bottom: 3px solid #eee;
}
.marker li dl dd h3 a:hover {
	border-bottom: 3px solid #f00;
}
.marker li dl dd h3 span {
	display: block;
	font-size: 0.5em;
	font-weight: normal;
}
.marker li dl dd h4 {
    width: 100%;
    margin: 0 8px 15px;
    padding: 3px 0;
    font-size: 14px;
    font-weight: normal;
    border-bottom: 1px solid;
}
/*メーカー
*********************/

.toyota {
	background: url(../img/maker/toyota_icon.png) 10px no-repeat;
}
.honda01 {
	background: url(../img/maker/honda_icon.png) 10px no-repeat;
}
.mitsubishi {
	background: url(../img/maker/mitsubishi_icon.png) 10px no-repeat;
}
.suzuki01 {
	background: url(../img/maker/suzuki_icon.png) 10px no-repeat;
}
.isuzu {
	background: url(../img/maker/isuzu_icon.png) 10px no-repeat;
}
.nissan {
	background: url(../img/maker/nissan_icon.png) 10px no-repeat;
}
.mazda {
	background: url(../img/maker/mazda_icon.png) 10px no-repeat;
}
.subaru {
	background: url(../img/maker/subaru_icon.png) 10px no-repeat;
}
.daihatsu {
	background: url(../img/maker/daihatsu_icon.png) 10px no-repeat;
}

.lexus {
	background: url(../img/maker/lexus_icon.png) 10px no-repeat;
}

.benz {
	background: url(../img/maker/benz_icon.png) 10px no-repeat;
}
.bmw {
	background: url(../img/maker/bmw_icon.png) 10px no-repeat;
}

.vw {
	background: url(../img/maker/vw_icon.png) 10px no-repeat;
}
.audi {
	background: url(../img/maker/audi_icon.png) 10px no-repeat;
}
.renault {
	background: url(../img/maker/renault_icon.png) 10px no-repeat;
}
.rover {
	background: url(../img/maker/rover_icon.png) 10px no-repeat;
}
.volvo {
	background: url(../img/maker/volvo_icon.png) 10px no-repeat;
}
.opel {
	background: url(../img/maker/opel_icon.png) 10px no-repeat;
}
.alfaromeo {
	background: url(../img/maker/alfaromeo_icon.png) 10px no-repeat;
}
.maserati {
	background: url(../img/maker/maserati_icon.png) 10px no-repeat;
}
.porsche {
	background: url(../img/maker/porsche_icon.png) 10px no-repeat;
}
.peugeot {
	background: url(../img/maker/peugeot_icon.png) 10px no-repeat;
}
.chrysler {
	background: url(../img/maker/chrysler_icon.png) 10px no-repeat;
}
.ford {
	background: url(../img/maker/ford_icon.png) 10px no-repeat;
}
.citroen {
	background: url(../img/maker/citroen_icon.png) 10px no-repeat;
}
.fiat {
	background: url(../img/maker/fiat_icon.png) 10px no-repeat;
}
.gm {
	background: url(../img/maker/gm_icon.png) 10px no-repeat;
}
.saab {
	background: url(../img/maker/saab_icon.png) 10px no-repeat;
}
.jaguar {
	background: url(../img/maker/jaguar_icon.png) 10px no-repeat;
}
.hyundai {
	background: url(../img/maker/hyundai_icon.png) 10px no-repeat;
}


.aprilia {
	background: url(../img/maker/aprilia_icon.png) 10px no-repeat;
}
.buell {
	background: url(../img/maker/buell_icon.png) 10px no-repeat;
}

.ducati {
	background: url(../img/maker/ducati_icon.png) 10px no-repeat;
}

.gilera {
	background: url(../img/maker/gilera_icon.png) 10px no-repeat;
}

.harley_davidson {
	background: url(../img/maker/harley_davidson_icon.png) 10px no-repeat;
}

.mv_agusta {
	background: url(../img/maker/mv_agusta_icon.png) 10px no-repeat;
}

.pgo {
	background: url(../img/maker/pgo_icon.png) 10px no-repeat;
}

.piaggio {
	background: url(../img/maker/piaggio_icon.png) 10px no-repeat;
}

.sym {
	background: url(../img/maker/sym_icon.png) 10px no-repeat;
}





h3.vw a,
h3.alfaromeo a,
h3.maserati a,
h3.chrysler a,
h3.gm a {
	font-size: 11px;
	letter-spacing: -0.2em;
}
.vw span,
.alfaromeo span,
.maserati span,
.chrysler span,
.gm span {
	letter-spacing: 1;
}
h3.harley_davidson a {
	font-size: 10px;
	letter-spacing: -0.3em;
}
h3.harley_davidson a span {
	letter-spacing: -0.28em;
}
	
.honda02 {
	background: url(../img/maker/honda02_icon.png) 10px no-repeat;
}
.yamaha {
	background: url(../img/maker/yamaha_icon.png) 10px no-repeat;
}

.kawasaki {
	background: url(../img/maker/kawasaki_icon.png) 10px no-repeat;
}




/*取付箇所から探す
**************************************************************/


#selectBox02 .location {
	width: 100%;
	max-width: 960px;
	min-width: 960px;
	height: 358px;
	margin: 0 auto;
	padding: 18px 0 30px 10px;
}
#selectBox02 .location, .location dl, .location ul.etc {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#selectBox02 .location dl {
	width: 50%;
}
#selectBox02 .location dl dt img {
	width: 280px;
	;
}
#selectBox02 .location dl dd {
	padding: 26px 0 30px 42px;
}
#selectBox02 .location dl dd ul {
	margin: 0;
	padding: 0;
}
#selectBox02 .location dl dd ul li, .location ul.etc {
	list-style: none;
}
#selectBox02 .location dl dd ul li a, .location ul.etc li a {
	display: block;
    position: relative;
    max-width: 150px;
    margin-bottom: 10px;
    padding: 2px 10px;
    color: #1453c7;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    /* background: #555; */
    border: solid 1px #1453c7;
	-webkit-border-radius:8px;
	border-radius:8px;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
#selectBox02 .location ul.etc {
	width: 100%;
	justify-content: center;
}
#selectBox02 .location ul.etc li a {
	width: 150px;
	margin: 0 7px;
}
#selectBox02 .location ul.etc li a:hover, .location dl dd ul li a:hover {
	color: #ffdf00;/*
	font-weight:bold;*/
    background: #333;
    border: solid 1px #ffb500;
}
#selectBox02 .location dl dd ul li.head a:before {
	content: "";
	position: absolute;
	width: 79px;
	height: 1px;
	left: -71px;
	bottom: -10px;
	transform: rotate(-38deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.head a:hover:after {
	content: "";
	position: absolute;
	width: 55px;
    height: 35px;
    left: -112px;
    bottom: -69px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 52px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li.fog a:before {
	content: "";
	position: absolute;
	width: 88px;
	height: 1px;
	left: -76px;
	bottom: -22px;
	transform: rotate(-47deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.fog a:hover:after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	left: -78px;
	bottom: -72px;
	background: url(../img/location/fog.png) no-repeat;
	background-size: 20px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li.position a:before {
	content: "";
	position: absolute;
	width: 111px;
    height: 1px;
    left: -88px;
    bottom: -32px;
    transform: rotate(-54deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.position a:hover:after {
	content: "";
	position: absolute;
	width: 55px;
    height: 35px;
    left: -112px;
    bottom: -105px;
	background: url(../img/location/head.png) no-repeat;
	background-size: 52px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li.number a:before {
	    content: "";
    position: absolute;
    width: 161px;
    height: 1px;
    left: -161px;
    bottom: 22px;
    transform: rotate(7deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
#selectBox02 .location dl dd ul li.number a:hover:after {
	content: "";
	position: absolute;
	width: 55px;
    height: 35px;
    left: -212px;
    bottom: 8px;
    background: url(../img/location/number.png) no-repeat;
    background-size: 53px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li.brake a:before {
	content: "";
	position: absolute;
	width: 75px;
	height: 1px;
	left: -76px;
	bottom: 11px;
	transform: rotate(-3deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.brake a:hover:after {
	content: "";
	position: absolute;
	width: 70px;
    height: 30px;
    left: -137px;
    bottom: -29px;
    background: url(../img/location/brake.png) no-repeat;
    background-size: 65px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li.turnSignal a:before {
	content: "";
	position: absolute;
	width: 82px;
	height: 1px;
	left: -80px;
	bottom: -2px;
	transform: rotate(-22deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.turnSignal a:hover:after {
	content: "";
	position: absolute;
	width: 40px;
	height: 25px;
	left: -92px;
	bottom: -40px;
	background: url(../img/location/turn_s.png) no-repeat;
	background-size: 20px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li.back a:before {
	    content: "";
    position: absolute;
    width: 153px;
    height: 1px;
    left: -144px;
    bottom: -29px;
    transform: rotate(-32deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
#selectBox02 .location dl dd ul li.back a:hover:after {
	content: "";
	position: absolute;
	width: 40px;
	height: 25px;
	left: -149px;
    bottom: -93px;
    background: url(../img/location/back_l.png) no-repeat;
    background-size: 38px;
	z-index: 4;
}
#selectBox02 .location dl dd ul li a:hover:before {
	background: #ffac00;
}



.location {
	width: 100%;
	max-width: 680px;
	min-width: 680px;
	height: auto;
	margin: 0 auto;
	padding: 18px 0 0 10px;
}
.location a:hover {
	opacity: 1;
}
.location, .location dl, .location ul.etc {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.location dl {
	width: 50%;
}
.location dl dt img {
	width: 175px;
	;
}
.location dl dd {
	padding: 26px 0 30px 39px;
}
.location dl dd ul {
	margin: 0;
	padding: 0;
}
.location dl dd ul li,
.location ul.etc {
	list-style: none;
}
.location dl dd ul li a,
.location ul.etc li a {
	display: block;
    position: relative;
    max-width: 150px;
    margin-bottom: 10px;
    padding: 2px 7px;
    color: #1453c7;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    /* background: #555; */
    border: solid 1px #1453c7;
	-webkit-border-radius:8px;
	border-radius:8px;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.location ul.etc {
	width: 100%;
	justify-content: center;
}
.location ul.etc li a {
	width: 150px;
	margin: 0 7px;
}
.location ul.etc li a:hover,
.location dl dd ul li a:hover {
	color: #ffdf00;/*
	font-weight:bold;*/
    background: #333;
    border: solid 1px #ffb500;
}
.location dl dd ul li.head a:before {
	content: "";
	position: absolute;
	width: 57px;
    height: 1px;
    left: -55px;
    bottom: 2px;
    -webkit-transform: rotate(-14deg);
    -ms-transform: rotate(-14deg);
    transform: rotate(-14deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.head a:hover:after {
	content: "";
	position: absolute;
	left: -83px;
    bottom: -23px;
	width: 40px;
	height: 25px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 34px;
    z-index: 4;
}
.location dl dd ul li.fog a:before {
	content: "";
	position: absolute;
	width: 56px;
    height: 1px;
    left: -55px;
    bottom: 2px;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.fog a:hover:after {
	content: "";
	position: absolute;
	left: -62px;
    bottom: -21px;
	width: 20px;
	height: 20px;
    background: url(../img/location/fog.png) no-repeat;
    background-size: 14px;
    z-index: 4;
}
.location dl dd ul li.position a:before {
	content: "";
	position: absolute;
	width: 70px;
    height: 1px;
    left: -61px;
    bottom: -13px;
    -webkit-transform: rotate(-41deg);
    -ms-transform: rotate(-41deg);
    transform: rotate(-41deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.position a:hover:after {
	content: "";
	position: absolute;
	left: -83px;
    bottom: -54px;
	width: 40px;
	height: 25px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 34px;
    z-index: 4;
}
.location dl dd ul li.number a:before {
	content: "";
    position: absolute;
    width: 136px;
    height: 1px;
    left: -133px;
    bottom: 28px;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.number a:hover:after {
	content: "";
    position: absolute;
    left: -145px;
    bottom: 41px;
	width: 40px;
	height: 25px;
    background: url(../img/location/number.png) no-repeat;
    background-size: 32px;
    z-index: 4;
}
.location dl dd ul li.brake a:before {
	content: "";
	position: absolute;
	width: 75px;
	height: 1px;
	left: -76px;
	bottom: 15px;
    -webkit-transform: rotate(9deg);
    -ms-transform: rotate(9deg);
    transform: rotate(9deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
.location dl dd ul li.brake a:hover:after {
	content: "";
    position: absolute;
    left: -97px;
    bottom: 7px;
	width: 40px;
	height: 25px;
    background: url(../img/location/brake.png) no-repeat;
    background-size: 40px;
    z-index: 4;
}
.location dl dd ul li.turnSignal a:before {
	content: "";
    position: absolute;
    width: 64px;
    height: 1px;
    left: -64px;
    bottom: 9px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.turnSignal a:hover:after {
	content: "";
    position: absolute;
    left: -71px;
    bottom: -17px;
    width: 40px;
    height: 30px;
    background: url(../img/location/turn_s.png) no-repeat;
    background-size: 12px;
    z-index: 4;
}
.location dl dd ul li.back a:before {
	content: "";
    position: absolute;
    width: 99px;
    height: 1px;
    left: -95px;
    bottom: -12px;
    -webkit-transform: rotate(-26deg);
    -ms-transform: rotate(-26deg);
    transform: rotate(-26deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.back a:hover:after {
	content: "";
    position: absolute;
    left: -106px;
    bottom: -58px;
    width: 40px;
    height: 30px;
    background: url(../img/location/back_l.png) no-repeat;
    background-size: 25px;
    z-index: 4;
}
.location dl dd ul li a:hover:before {
	background: #ffac00;
}





@media screen and (max-width:1367px){
.location
	#selectBox02 .location {
	width: 100%;
	max-width: 680px;
	min-width: 680px;
	height: auto;
	margin: 0 auto;
	padding: 18px 0 0 10px;
}
.location a:hover {
	opacity: 1;
}
.location, .location dl, .location ul.etc {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.location dl {
	width: 50%;
}
.location dl dt img {
	width: 175px;
	;
}
.location dl dd {
	padding: 26px 0 30px 39px;
}
.location dl dd ul {
	margin: 0;
	padding: 0;
}
.location dl dd ul li,
.location ul.etc {
	list-style: none;
}
.location dl dd ul li a, .location ul.etc li a {
	display: block;
    position: relative;
    max-width: 150px;
    margin-bottom: 10px;
    padding: 2px 7px;
    color: #1453c7;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    /* background: #555; */
    border: solid 1px #1453c7;
	-webkit-border-radius:8px;
	border-radius:8px;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.location ul.etc {
	width: 100%;
	justify-content: center;
}
.location ul.etc li a {
	width: 150px;
	margin: 0 7px;
}
.location ul.etc li a:hover,
.location dl dd ul li a:hover {
	color: #ffdf00;/*
	font-weight:bold;*/
    background: #333;
    border: solid 1px #ffb500;
}
.location dl dd ul li.head a:before {
	content: "";
	position: absolute;
	width: 57px;
    height: 1px;
    left: -55px;
    bottom: 2px;
    -webkit-transform: rotate(-14deg);
    -ms-transform: rotate(-14deg);
    transform: rotate(-14deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.head a:hover:after {
	content: "";
	position: absolute;
	left: -83px;
    bottom: -23px;
	width: 40px;
	height: 25px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 34px;
    z-index: 4;
}
.location dl dd ul li.fog a:before {
	content: "";
	position: absolute;
	width: 56px;
    height: 1px;
    left: -55px;
    bottom: 2px;
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.fog a:hover:after {
	content: "";
	position: absolute;
	left: -62px;
    bottom: -21px;
	width: 20px;
	height: 20px;
    background: url(../img/location/fog.png) no-repeat;
    background-size: 14px;
    z-index: 4;
}
.location dl dd ul li.position a:before {
	content: "";
	position: absolute;
	width: 70px;
    height: 1px;
    left: -61px;
    bottom: -13px;
    -webkit-transform: rotate(-41deg);
    -ms-transform: rotate(-41deg);
    transform: rotate(-41deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.position a:hover:after {
	content: "";
	position: absolute;
	left: -83px;
    bottom: -54px;
	width: 40px;
	height: 25px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 34px;
    z-index: 4;
}
.location dl dd ul li.number a:before {
	content: "";
    position: absolute;
    width: 136px;
    height: 1px;
    left: -133px;
    bottom: 28px;
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.number a:hover:after {
	content: "";
    position: absolute;
    left: -145px;
    bottom: 41px;
	width: 40px;
	height: 25px;
    background: url(../img/location/number.png) no-repeat;
    background-size: 32px;
    z-index: 4;
}
.location dl dd ul li.brake a:before {
	content: "";
	position: absolute;
	width: 75px;
	height: 1px;
	left: -76px;
	bottom: 15px;
    -webkit-transform: rotate(9deg);
    -ms-transform: rotate(9deg);
    transform: rotate(9deg);
	background: #1453c7;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
.location dl dd ul li.brake a:hover:after {
	content: "";
    position: absolute;
    left: -97px;
    bottom: 7px;
	width: 40px;
	height: 25px;
    background: url(../img/location/brake.png) no-repeat;
    background-size: 40px;
    z-index: 4;
}
.location dl dd ul li.turnSignal a:before {
	content: "";
    position: absolute;
    width: 64px;
    height: 1px;
    left: -64px;
    bottom: 9px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.turnSignal a:hover:after {
	content: "";
    position: absolute;
    left: -71px;
    bottom: -17px;
    width: 40px;
    height: 30px;
    background: url(../img/location/turn_s.png) no-repeat;
    background-size: 12px;
    z-index: 4;
}
.location dl dd ul li.back a:before {
	content: "";
    position: absolute;
    width: 99px;
    height: 1px;
    left: -95px;
    bottom: -12px;
    -webkit-transform: rotate(-26deg);
    -ms-transform: rotate(-26deg);
    transform: rotate(-26deg);
    background: #1453c7;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
.location dl dd ul li.back a:hover:after {
	content: "";
    position: absolute;
    left: -106px;
    bottom: -58px;
    width: 40px;
    height: 30px;
    background: url(../img/location/back_l.png) no-repeat;
    background-size: 25px;
    z-index: 4;
}
.location dl dd ul li a:hover:before {
	background: #ffac00;
}


/***********************************************************************************************************************************************/
}

@media screen and (max-width:480px) {
#selectBox02 .location {
	max-width: 340px;
	min-width: 340px;
	width: 100%;
	min-height: 450px;
	margin: 0 auto;
	padding: 0;
}
#selectBox02 .location, #selectBox02 .location ul.etc {
	display: block;
}
#selectBox02 .location dl {
	width: 100%;
}
#selectBox02 .location dl dt {
	max-width: 182px;
	width: 50%;
}
#selectBox02 .location dl dt img {
	width: 100%;
}
#selectBox02 .location dl dd {
	flex: 1;
	padding-top: 12px;
}
#selectBox02 .location dl dd ul {
	margin: 0;
	padding: 0;
}
#selectBox02 .location dl dd ul li, #selectBox02 .location ul.etc {
	list-style: none;
}
#selectBox02 .location dl dd ul li a, #selectBox02 .location ul.etc li a {
	display: block;
	position: relative;
	max-width: 150px;
	margin-bottom: 10px;
	padding: 2px 5px;
	color: #fff;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	background: #333;
	border: solid 2px #ccc;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}
#selectBox02 .location ul.etc {
	width: 100%;
	justify-content: center;
}
#selectBox02 .location ul.etc li a {
	width: 150px;
	margin: 0 7px;
}
#selectBox02 .location ul.etc li a:hover, #selectBox02 .location dl dd ul li a:hover {
	color: #ffac00;
	background: #fff;
	border: solid 2px #ffac00;
}
#selectBox02 .location dl dd ul li.head a:before {
	content: "";
	position: absolute;
	width: 55px;
    height: 2px;
    left: -53px;
    bottom: 1px;
	-webkit-transform: rotate(-24deg);
	-ms-transform: rotate(-24deg);
	transform: rotate(-24deg);
	background: #ccc;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.head a:hover:after {
	content: "";
    position: absolute;
    width: 35px;
    height: 30px;
    left: -82px;
    bottom: -32px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 33px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li.fog a:before {
	content: "";
	position: absolute;
	width: 56px;
    height: 2px;
    left: -54px;
    bottom: 2px;
    -webkit-transform: rotate(-19deg);
    -ms-transform: rotate(-19deg);
    transform: rotate(-19deg);
	background: #ccc;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.fog a:hover:after {
	content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    left: -63px;
    bottom: -40px;
    background: url(../img/location/fog.png) no-repeat;
    background-size: 14px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li.position a:before {
	content: "";
	position: absolute;
	width: 77px;
    height: 2px;
    left: -65px;
    bottom: -18px;
	-webkit-transform: rotate(-47deg);
	-ms-transform: rotate(-47deg);
	transform: rotate(-47deg);
	background: #ccc;
	-ms-transition: 0.3s all;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	z-index: 3;
}
#selectBox02 .location dl dd ul li.position a:hover:after {
	content: "";
    position: absolute;
    width: 35px;
    height: 30px;
	top: auto;
    left: -82px;
    bottom: -68px;
    background: url(../img/location/head.png) no-repeat;
    background-size: 32px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li.number a:before {
	content: "";
    position: absolute;
    width: 122px;
    height: 2px;
    left: -120px;
    bottom: 31px;
    -webkit-transform: rotate(19deg);
    -ms-transform: rotate(19deg);
    transform: rotate(19deg);
    background: #ccc;
    -ms-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
#selectBox02 .location dl dd ul li.number a:hover:after {
	content: "";
    position: absolute;
    width: 40px;
    height: 30px;
    left: -143px;
    bottom: 40px;
    background: url(../img/location/number.png) no-repeat;
    background-size: 32px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li.brake a:before {
	content: "";
    position: absolute;
    width: 64px;
    height: 2px;
    left: -65px;
    bottom: 15px;
    -webkit-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    transform: rotate(8deg);
    background: #ccc;
    -webkit-transition: 0.3s all;
    -ms-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
#selectBox02 .location dl dd ul li.brake a:hover:after {
	position: absolute;
    width: 40px;
    height: 40px;
    left: -98px;
    bottom: -9px;
    background: url(../img/location/brake.png) no-repeat;
    background-size: 39px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li.turnSignal a:before {
	content: "";
    position: absolute;
    width: 63px;
    height: 2px;
    left: -63px;
    bottom: 5px;
    -webkit-transform: rotate(-9deg);
    -ms-transform: rotate(-9deg);
    transform: rotate(-9deg);
    background: #ccc;
    -webkit-transition: 0.3s all;
    -ms-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
#selectBox02 .location dl dd ul li.turnSignal a:hover:after {
	content: "";
    position: absolute;
    width: 30px;
    height: 20px;
    left: -70px;
    bottom: -12px;
    background: url(../img/location/turn_s.png) no-repeat;
    background-size: 11px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li.back a:before {
	content: "";
    position: absolute;
    width: 101px;
    height: 2px;
    left: -94px;
    bottom: -14px;
    -webkit-transform: rotate(-32deg);
    -ms-transform: rotate(-32deg);
    transform: rotate(-32deg);
    background: #ccc;
    -webkit-transition: 0.3s all;
    -ms-transition: 0.3s all;
    transition: 0.3s all;
    z-index: 3;
}
#selectBox02 .location dl dd ul li.back a:hover:after {
	content: "";
    position: absolute;
    width: 40px;
    height: 30px;
    left: -106px;
    bottom: -67px;
    background: url(../img/location/back_l.png) no-repeat;
    background-size: 23px;
    z-index: 4;
}
#selectBox02 .location dl dd ul li a:hover:before {
	background: #ffac00;
}
}






@media screen and (max-width:896px) {
	.tabWrap label {
		margin-bottom: 10px;
		padding:4px 5px;
	}
	.tabContent {
		overflow:auto;
	}


}


/*toppege bannerArea
************************************************************************************************************************************************************************************/
.bnrArea ul,.bnrArea ul li,.bnrArea dl,.bnrArea dl dt,.bnrArea dl dd {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bnrArea,
.bnrArea ul {
	margin-bottom: 25px;
}
.bnrArea h2 {
    position: relative;
    margin-bottom: 20px;
    padding: 8px 12px 5px;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    border-left: 5px double #d94242;
    /* letter-spacing: 0.08em; */
    line-height: 1em;
    background: #333;
}
.bnrArea h3 {
    display: inline-block;
    margin: 0 0 15px;
    padding: 3px 0 2px;
    color: #000;
    font-size: 20px;
    font-weight: normal;
    /* font-family: fantasy; */
    /* background: linear-gradient( #ff0, transparent); */
    border-bottom: 1px solid rgb(217, 66, 66);
    line-height: 1;
    letter-spacing: 0.1em;
}
.bnrArea h4 {
    margin: 0 0 10px;
    padding: 3px 8px 0;
    color: #030303;
    font-size: 16px;
    font-weight: normal;
    border-left: 5px solid #d94242;
    line-height: 1.2em;
}
.bnrArea img {
	width: 100%;
	border: 1px solid #ccc;
}

.bnrArea .tabWrap > label {
    padding: 12px 10px 5px;
}
@media screen and (max-width:896px) {
.bnrArea {
	padding: 0 15px;
}
.bnrArea h3 {
	font-size: 16px;
}
.bnrArea h4 {
	font-size: 14px;
}
	
}

/*商品ページ
**************************************************************************************************************************************************************************************/

@media screen and (max-width:896px) {
	#page_product_detail #productContainer {
		padding: 0;
	}
#page_product_detail #productContainer .tabWrap {
	margin: 0;
}
#page_product_detail #productContainer .tabWrap input:checked+label+.tabContent {
	padding: 30px 0 10px;
}
	
	
	
}