@charset "utf-8";
/* CSS Document */
/*
===================================================
--Table of contents--
0.base format
1.index.html / Products Contents Page
1-1.header area
1-2.footer area
1-3.TJP TOP INDEX only
1-4.Go to page top
1-5.Go to English page
1-6.Contents Page
2.products/index.html
3./shop
4./motor sport/index.html
4-1.MOTORSPORT contents area
===================================================
*/

/*
===================================================
0.base format
===================================================
*/
html {
  font-size: 62.5%; /*62.5%=10px*/
}
body {
  font-size: 1.6rem; /*16px*/
  color: #333;
  background: #fff;
font-family: "Meiryo",sans-serif;
}
header, footer, h1, h2, h3, ol, ul, li, form, input, p, div {
  margin: 0;
  padding: 0;
}
img {
  display: block;
}
ul, ol {
  list-style: none;
}
/*
===================================================
1.index.html / Products Contents Page
===================================================
*/
#PConIndex {
  width: 830px;
  margin: 20px auto 0;
}
/*
------------------------------------
1-1.header area
------------------------------------
*/
.headA {
  width: 100%;
}
.headA h1 {
  width: 200px;
  float: left;
}
.search {
  width: 445px;
  float: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search li {
  display: inline-block;
  font-size: 2.8rem;
  padding-right: 15px;
}
.search li a {
  color: #333;
  transition: all 300ms 0s ease;
}
.search li a:hover {
  opacity: 0.7;
}
.srch-b {
  background: #fff;
  border: solid 1px #333;
  color: #333;
  padding: 8px;
  border-radius: 5px;
  width: 200px;
  margin-right: 5px;
}
.s-btn {
  padding: 8px 12px;
  background: #009245;
  border-radius: 3px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 300ms 0s ease;
}
.s-btn:hover {
  opacity: 0.7;
}
.submenu {
  float: left;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}
.submenu ul {
  float: right;
}
.submenu li {
  display: inline-block;
  padding: 0 10px;
  border-right: solid 1px #333;
  font-size: 1.2rem;
}
.submenu li:last-child {
  border-right: none;
}
.submenu li a {
  color: #333;
  text-decoration: none;
  transition: all 300ms 0s ease;
}
.submenu li a:hover {
  opacity: 0.7;
}
li.large {
  font-size: 2.0rem;
  font-weight: bold;
}
.mainmenu1 {
  float: left;
  width: 100%;
  margin-top: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}
.mainmenu1 ul {
  float: left;
  width: inherit;
}
.mainmenu1 li {
  width: calc(100% / 4);
  float: left;
  box-sizing: border-box;
  text-align: center;
  border-right: solid 1px #fff;
  background: #009245;
  transition: all 300ms 0s ease;
}
.mainmenu1 li:last-child {
  border-right: none;
}
.mainmenu1 li:hover {
  opacity: 0.7;
}
.mainmenu1 a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 10px 0;
}
.mainmenu2 {
  float: left;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}
.mainmenu2 ul {
  float: left;
  width: inherit;
  padding: 10px 0;
}
.mainmenu2 li {
  width: calc(100% / 5);
  float: left;
  box-sizing: border-box;
  text-align: center;
  border-right: solid 1px #333;
  font-size: 1.4rem;
}
.mainmenu2 li:last-child {
  border-right: none;
}
.mainmenu2 a {
  color: #333;
  text-decoration: none;
  position: relative;
}
.mainmenu2 a::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background: #333;
  bottom: 0;
  left: 0;
  transition: all 300ms 0s ease;
}
.mainmenu2 a:hover::after {
  width: 100%;
}
/*
------------------------------------
1-2.footer area
------------------------------------
*/
.footer {
  float: left;
  width: 100%;
  margin-top: 30px;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer ul {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  background: #009245;
}
.footer li {
  font-size: 1.3rem;
}
.footer li a {
  color: #fff;
  text-decoration: none;
  transition: all 300ms 0s ease;
}
.footer li a:hover {
  opacity: 0.7;
}
.footer p {
  text-align: center;
  margin: 10px 0;
  font-size: 1.3rem;
  color: #A3A3A3;
}
/*
------------------------------------
1-3.TJP TOP INDEX only
------------------------------------
*/
.slide {
  width: 570px;
  float: left;
  margin-top: 2em;
}
.sidebnA {
  float: left;
  margin-top: 2em;
  margin-left: 13px;
}
a.bnbA {
  width: 247px;
  height: 46px;
  display: block;
  box-sizing: border-box;
  border: solid 4px #fff;
  margin-top: 5px;
  border-radius: 3px;
  text-align: center;
  font-size: 1.4rem;
  padding-top: 8px;
  color: #fff;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.bnbA li {
  position: relative;
}
.bnbA li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  bottom: 5px;
  right: 20px;
}
.bnbA li::before {
  font-family: FontAwesome;
  font-size: 3.0rem;
  content: "\f518";
  position: absolute;
  left: 20px;
  top: -5px;
}
.bnbA {
  transition: all 300ms 0s ease;
}
.bnbA:hover {
  opacity: 0.7;
}
.conA1 {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}
.conA1 p {
  margin: 12px 0;
}
.conA1 a {
  color: #fff;
  text-decoration: none;
}
.conA1 a:hover {
  color: #009245;
  text-decoration: underline;
}
.impI a {
  color: #ff206e;
  text-decoration: none;
}
.impI a:hover {
  text-decoration: underline;
  color: #fff;
}
.newp, .newt {
  float: left;
  width: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  color: #A3A3A3;
}
.newp p, .newt p {
  position: relative;
  margin-bottom: 16px;
}
.newp p::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 1px;
  box-sizing: border-box;
  border-top: solid 1px #A3A3A3;
  top: 12px;
  left: 210px;
}
.newt p::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 1px;
  box-sizing: border-box;
  border-top: solid 1px #A3A3A3;
  top: 12px;
  left: 150px;
}
#info-news {
  height: 350px;
  width: 95%;
  padding-left: 10px;
  box-sizing: border-box;
  background: rgba(34, 34, 34, 0.5);
  overflow: auto;
  overflow-x: hidden;
}
#topic-news {
  height: 350px;
  width: 98.7%;
  padding-left: 10px;
  box-sizing: border-box;
  background: rgba(34, 34, 34, 0.5);
  overflow: auto;
  overflow-x: hidden;
}
#info-news {
  height: 665px;
}
.newsarea {
  width: 380px;
  font-size: 1.3rem;
}
.newparea {
  width: 310px;
  font-size: 1.4rem;
}
table.newparea {
  float: left;
}
.newsarea img {
  display: inline-block;
}
.newsarea a {
  color: #fff;
  text-decoration: none;
}
.newsarea a:hover {
  color: #009245;
}
.new_kugiri_ue {
  border-bottom: dotted 2px #555;
}
.new_nakami a {
  color: #fff;
  text-decoration: none;
}
.new_nakami a:hover {
  color: #009245;
}
.newparea a {
  color: #6f9;
  text-decoration: none;
}
.newparea a:hover {
  color: #fff;
}
.newparea .new_day, .newsarea .new_day {
  color: #A3A3A3;
}
.newparea .new_nakami {
  color: #A3A3A3;
}
.sidebnB {
  width: 100%;
  float: left;
}
.sidebnB ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  margin: 15px 0;
}
.sidebnB li {
  margin: 3px 0;
  transition: all 300ms 0s ease;
}
.sidebnB li:hover {
  opacity: 0.7;
}
.tweet_div {
  color: #333;
  font-size: 1.3rem;
}
.tweet_div table {
  width: 370px;
  height: auto;
}
.feed table {
  height: 500px;
}
/*
------------------------------------
1-4.Go to page top
------------------------------------
*/
main {
  position: relative;
  float: left;
}
.pagetop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 10px;
  border-radius: 50% 50%;
  height: 75px;
  width: 75px;
  background-color: #009245;
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 28%;
  width: 25px;
  height: 25px;
  border: solid 4px;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
}
.pagetop:hover {
  opacity: .8;
}
/*
------------------------------------
1-5.Go to English page
------------------------------------
*/
p.trans {
  float: left;
  width: 50%;
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.8rem;
}
p.trans a {
  color: #009245;
}
p.trans::before {
  content: "\f0a4";
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 10px;
}
/*
------------------------------------
1-6.Contents Page
------------------------------------
*/
ul.sns-area {
  float: right;
  list-style-type: none;
}
ul.sns-area li {
  display: inline-block;
}
/*いいねボタンのソースコードの表示サイズ設定がされている場所　開発ツール上で確認*/
/*下にずれて表示されるfbボタンの位置を他のSNSボタンの位置と合わせる。*/
/*2020/12時点でタグのずれがなくなったので、設定解除*/
/*.fb_iframe_widget > span {
	vertical-align: baseline !important;
}*/
.hero_img {
  width: 100%;
  float: left;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
}
.new_m {
  color: red;
  font-weight: bold;
}
#PContent {
  width: 830px;
  margin: 20px auto 0;
}
#PContent h2 {
  width: 750px;
  box-sizing: border-box;
  float: left;
  border-left: solid 10px #009245;
  padding-left: 20px;
  margin: 20px 0 15px 35px;
}
#PContent h3 {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#PContent h3.no_img {
  display: block;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  padding: 0.5em 0;
  border-bottom: solid 3px #009245;
  border-top: solid 3px #009245;
}
#PContent h4 {
  width: 80%;
  margin: 10px 10%;
  float: left;
  font-size: 2.0rem;
  border-bottom: solid 2px #009245;
}
#PContent h5 {
  float: left;
  width: 80%;
  padding: 0 10%;
  margin: 10px 0;
  font-size: 1.6rem;
  color: #009245;
}
#PContent .copy {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
}
#PContent .ad_deco {
  color: #009245;
  margin-top: 0.5em;
  font-weight: bold;
}
#PContent .breadcrumb {
  float: left;
  width: 100%;
  margin-top: 1em;
}
#PContent .breadcrumb li {
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 3px;
}
#PContent .breadcrumb li::before {
  content: ">>";
}
#PContent .breadcrumb li a {
  color: #009245;
}
#PContent .titA {
  color: #009245;
  font-weight: bold;
}
p.attA {
  color: red;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
p.centering {
  text-align: center;
  width: 100%;
}
ul.specA {
  width: 750px;
  margin: 0 40px;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
ul.specA li {
  margin: 5px 0;
}
.btnA {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.btnA a {
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
}
.btnA li {
  float: left;
  background: #009844;
  background: linear-gradient(to bottom, #009844 0%, #009844 50%, #007531 51%, #007531 100%);
  border-radius: 15px;
  padding: 10px 50px;
  text-align: center;
  position: relative;
}
.btnA li:hover {
  background: #007531;
  background: linear-gradient(to bottom, #007531 0%, #007531 50%, #009844 51%, #009844 100%);
  /* W3C */
}
.btnA li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: solid 10px transparent;
  border-left: solid 10px #fff;
  position: absolute;
  top: 30px;
  left: 10px;
}
.btnB {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.btnB a {
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
}
.btnB li {
  float: left;
  background: #009844;
  background: linear-gradient(to bottom, #009844 0%, #009844 50%, #007531 51%, #007531 100%);
  border-radius: 15px;
  padding: 10px 50px;
  text-align: center;
  position: relative;
}
.btnB li:hover {
  background: #007531;
  background: linear-gradient(to bottom, #007531 0%, #007531 50%, #009844 51%, #009844 100%);
  /* W3C */
}
.btnB li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: solid 10px transparent;
  border-left: solid 10px #fff;
  position: absolute;
  top: 15px;
  left: 10px;
}
.btnC {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.btnC a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  display: block;
}
.btnC li {
  float: left;
  background: #009844;
  background: linear-gradient(to bottom, #009844 0%, #009844 50%, #007531 51%, #007531 100%);
  border-radius: 15px;
  padding: 10px 50px;
  text-align: center;
  position: relative;
}
.btnC li:hover {
  background: #007531;
  background: linear-gradient(to bottom, #007531 0%, #007531 50%, #009844 51%, #009844 100%);
  /* W3C */
}
.arrow-spec {
  float: left;
  width: 100%;
  background: #DEF1E6 url(../products/img/spec/img_arrow_spec.png) no-repeat center 60px;
  color: #009245;
  font-weight: bold;
  font-size: 24px;
  padding: 20px 0 55px;
  margin: 50px 0;
}
.arrow-spec p {
  text-align: center;
}
.unitA {
  width: 80%;
  padding: 0 10%;
  float: left;
  margin: 10px 0;
}
.unitA p, .unitC p {
  line-height: 1.8em;
  float: left;
}
.unitA-1 {
  width: 65%;
  padding: 0 17.5%;
  float: left;
  margin: 10px 0;
}
.unitA-1 p {
  line-height: 1.8em;
}
.unitB {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin: 10px 0;
  /*background: #5A3636;*/
}
.unitC {
  width: 80%;
  padding: 0 10%;
  float: left;
  margin: 10px 0;
}
.unitC .img-area {
  width: 45%;
  float: left;
}
.unitC .img-area img {
  float: left;
}
.unitC .img-area img:first-of-type {
  margin-right: 5px;
}
.unitC .txt-area {
  float: left;
  width: 55%;
  box-sizing: border-box;
}
.unitD {
  width: 80%;
  padding: 0 10%;
  margin: 10px 0;
  float: left;
  /*background: #71CCA6;*/
}
.unitD .img-area {
  width: 40%;
  margin-right: 5%;
  float: left;
}
.unitD .txt-area {
  width: 55%;
  float: left;
}
.unitD .txt-area img {
  float: left;
  margin-bottom: 10px;
}
.unitD .txt-area p {
  float: left;
  width: 100%;
  margin-bottom: 5px;
}
.unitD .txt-area ul {
  float: left;
  width: 100%;
}
.unitD .txt-area li {
  font-size: 1.3rem;
  display: inline-block;
  border: solid 2px #009245;
  border-radius: 3px;
  padding: 4px;
  margin-bottom: 8px;
}
.unitE {
  width: 80%;
  padding: 0 10%;
  float: left;
  margin: 10px 0;
}
.unitE ul {
  float: left;
  padding-left: 1em;
  position: relative;
}
.unitE ul li::before {
  font-family: FontAwesome;
  content: "\f00c";
  position: absolute;
  left: -0.3em;
  color: #009245;
}
.unitE a {
  color: #009245;
  font-weight: bold;
}
a.link01 {
  color: #009245;
}
.tableA P {
  width: 100%;
}
.tableA figure {
  float: left;
  width: 100%;
  margin: 0;
}
.tableA table {
  float: left;
  width: 300px;
  margin: 0 12px;
  box-sizing: border-box;
  border-collapse: collapse;
}
.tableA th {
  border: solid 1px #333;
  padding: 3px;
}
.tableA td {
  border: solid 1px #333;
  padding: 3px;
  width: 100px;
}
.tableA td:not(:first-child) {
  text-align: center;
}
.tableA colgroup.tgrA {
  background: #fff;
}
.tableA colgroup.tgrB {
  background: #DEF1E6;
}
.tableB table {
  width: 100%;
  float: left;
  box-sizing: border-box;
  border-collapse: collapse;
  font-size: 1.2rem;
}
.tableB thead th {
  border: solid 2px #fff;
  background: #009245;
  color: #fff;
  padding: 3px;
}
.tableB tbody td {
  border: solid 2px #fff;
  text-align: center;
  padding: 5px 3px;
}
.tableB tbody tr {
  background: #B5B5B6;
}
.split td {
	width: calc(100% / 3);
}
.tableC table {
  width: 680px;
  border-collapse: collapse;
  margin: auto;
}
.tableC th {
  text-align: center;
  border: solid 2px #333;
}
.tableC td {
  border: solid 2px #333;
}
.price_style {
  text-align: center;
}
.subline {
  border-bottom: solid 1px #333;
}
.comp {
  display: inline-block;
  border-bottom: dashed 2px #009245;
  font-weight: bold;
}
p.text {
  float: left;
}
.cate_menu {
  float: left;
  width: 830px;
  margin: 10px 0;
  border: solid 1px #009245;
  border-radius: 3px;
}
.cate_menu ul {
  float: left;
  margin: 5px 0;
}
.cate_menu li {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
}
.cate_menu li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #009245;
  margin-right: 3px;
}
.imgtxtA {
  width: 250px;
}
.imgtxtA dt {
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}
.imgtxtA dd {
  font-size: 0.85em;
  margin-left: 0;
  box-sizing: border-box;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

/*
===========================
2.products/index.html
===========================
*/
#PContent-index {
  width: 830px;
  margin: 20px auto 0;
}
#PContent-index h2 {
	font-weight: bold;
	font-size: 2.0rem;
	border-bottom: double 5px #009245;
}
#PContent-index h3 {
	font-size: 1.8rem;
	border-left: solid 8px #009245;
	padding-left: 5px;
	margin-bottom: 8px;
}
#PContent-index .breadcrumb {
  float: left;
  width: 100%;
  margin-top: 1em;
}
#PContent-index .breadcrumb li {
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 3px;
}
#PContent-index .breadcrumb li::before {
  content: ">>";
}
#PContent-index .breadcrumb li a {
  color: #009245;
}
.head_txt {
	margin: 1em;
}
p.sus_btn {
	background: linear-gradient(to bottom, #606c88 0%, #606c88 50%, #3f4c6b 51%, #3f4c6b 100%);
	border-radius: 3px;
	width: 50%;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	margin-left: 1em;
	margin-bottom: 15px;
	padding: 5px;
	cursor: pointer;
}
p.sus_btn:hover {
	opacity: 0.7;
}
.sus_btn a {
	color: #fff;
	text-decoration: none;
}
.index_cont {
  margin-top: 5px;
  display: flex;
}
.sidebar {
  width: 200px;
}
.sidebar_item {
  margin-bottom: 20px;
}
.sidebar_item li {
	padding-bottom: 5px;
	padding-top: 5px;
	font-size: 1.3rem;
	font-weight: bold;
}
.sidebar_item li a {
	color: #009245;
}
.sidebar_item li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: solid 1px #009245;
	border-top: solid 1px #009245;
	transform: rotate(45deg);
	margin-right: 5px;
}
.sidebar_item-fixed {
  position: sticky;
  margin-bottom: 0;
  top: 10px;
  z-index: 1;
}
.main_con {
	width: 630px;
	/*background: #ccc;*/
}
.maindis_con {
	width: 830px;
}
.pro_goA {
	display: flex;
	margin-bottom: 2em;
}
.pro_goA h4 {
	margin: 0;
	padding: 5px 0;
	font-size: 1.4rem;
}
.pro_goA a:hover {
	opacity: 0.7;
}
.pro_goB {
	display: flex;
	margin-bottom: 2em;
	box-sizing: border-box;
	padding: 0;
	width: 50%;
}
.pro_goB h4 {
	margin: 0;
	padding-left: 8px;
	font-size: 1.4rem;
}
.pro_goC {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 2em;
}
.pro_goC h4 {
	margin: 0;
	padding: 5px 0;
	font-size: 1.4rem;
}
.pro_con {
	width: 400px;
	margin-left: 8px;
}
.pro_conB {
	width: 100%;
}
.pro_conB a:hover {
	opacity: 0.7;
}
.pro_conB h4 a {
	color: #009245;
}
.pro_conB h4 a::before {
	content: "";
	display: inline-block;
	padding-left: 3px;
	width: 0;
	height: 0;
	border-left: 5px solid #009245;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.lead_txt {
	font-size: 1.3rem;
}
.lead_txt a {
	color: #009245;
	text-decoration: none;
}
.logo_img {
	height: 65px;
	margin-bottom: 5px;
}
.logo_img p {
	font-size: 1.3rem;
	font-weight: bold;
	height: 65px;
	text-align: center;
	box-sizing: border-box;
	/*line-height: 65px;*/
	color: #fff;
	float: left;
	margin-left: 10px;
	padding: 3px;
}
.logo_img img {
	float: left;
}

.logo_imgA {
	height: 65px;
	box-sizing: border-box;
	padding-left: 15px;
	margin-bottom: 5px;
}
.logo_imgA p {
	font-size: 1.3rem;
	width: 170px;
	color: #333;
	float: left;
	margin-left: 10px;
	padding-right: 3px;
}
.wide p {
	width: 250px;
}
.logo_imgA img {
	float: left;
	width: 100px;
}
.cont_spl {
	display: flex;
	flex-flow: row wrap;
}
.cont_spl_dis {
	width: 80%;
	margin: auto 10%;
}

.oe-A {
	background-color: ForestGreen;
}
.oe-B {
	background-color: Indigo;
}
.th-A {
	background-color: DarkOrange;
}
.th-B {
	background-color: Navy;
}
.fu-A {
	background-color: Crimson;
}
.fu-B {
	background-color: LimeGreen;
}
.fu-C {
	background-color: darkolivegreen;
}
.hy-A {
	background-color: deepskyblue;
}
.red_txt {
	color: red;
}
.sepa {
	border-bottom: dashed 1px #009245;
}

/*
===========================
3./shop
===========================
*/
ul.shopmarkList {
	margin-top: 10px;
}
ul.shopmarkList li {
	margin-bottom: 0.3em;
	margin-left: 30px;
	font-weight: bold;
}
.ltypeA img {
	display: inline;
}
li.ltypeA {
	list-style-image: url("../shop/img/hybrid_i.gif");
}
li.ltypeB {
	list-style-image: url("../shop/img/racing_i.gif");
}
li.ltypeC {
	list-style-image: url("../shop/img/tarmac_i.gif");
}
li.ltypeD {
	list-style-image: url("../shop/img/gravel_i.gif");
}
li.ltypeE {
	list-style-image: url("../shop/img/ico_megaphone1_6.gif");
}
li.ltypeF {
	list-style-image: url("../shop/img/EDFCkit_i.gif");
}
li.ltypeG {
	list-style-image: url("../shop/img/shitadori_i.gif");
}
li.ltypeH {
	list-style-image: url("../shop/img/car.gif");
}

/*
===========================
4./motor sport/index.html
===========================
*/
#MSContent {
  width: 830px;
  margin: 20px auto 0;
}
#MSContent h2 {
  width: 750px;
  box-sizing: border-box;
  float: left;
  border-left: solid 10px #009245;
  padding-left: 20px;
  margin: 20px 0 15px 35px;
}
#MSContent h3 {
  width: 100%;
  float: left;
  margin-top: 50px;
	border-left: solid 10px #009245;
	padding-left: 5px;
}
#MSContent h4 {
  width: 100%;
  float: left;
  font-size: 1.6rem;
	box-sizing: border-box;
	padding-left: 10px;
	margin-top: 10px;
	background: linear-gradient(rgba(137,201,151,0) 50%,#89c997 0%);
}
#MSContent h5 {
  float: left;
  width: 80%;
  padding: 0 10%;
  margin: 10px 0;
  font-size: 1.6rem;
  color: #009245;
}
#MSContent .breadcrumb {
  float: left;
  width: 100%;
  margin-top: 1em;
}
#MSContent .breadcrumb li {
  display: inline-block;
  font-size: 1.3rem;
  margin-right: 3px;
}
#MSContent .breadcrumb li::before {
  content: ">>";
}
#MSContent .breadcrumb li a {
  color: #009245;
}
#MSContent table td a {
	color: #009245;
}
.ms_discription {
    float: left;
	width: 830px;
}
.ms_discription img {
	display: inline-block;
}
.ms_discription p {
	text-align: center;
	margin-bottom: 20px;
}
.ms_linklist a {
	display: block;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}
.ms_linklist a:hover {
	opacity: 0.7;
}
ul.ms_linklist {
	float: left;
	width: 760px;
	margin-left: 30px;
	margin-right: 30px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

ul.ms_linklist li {
	background: #555;
	width: 49.3%;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-radius: 2px;
	position: relative;
}
.snsColor {
	color: #333;
}


/* 4-1.MOTORSPORT contents area
====================================
*/

/*section.race_title div.ms_box_A:nth-of-type(2n+1) {
   margin-right: 12px; 
}*/
section.race_title {
	float: left;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.ms_box_A {
    width: 48%;
    height: auto;
    box-sizing: border-box;
    border: solid 1px #C1E1C4;
    margin-top: 12px;
    float: left;
}
.ms_box_A p {
	position: relative;
	text-align: center;
	margin-top: 8px;
}
.ms_box_A p span {
	position: absolute;
	top: 85%;
	left: 85%;
	color: #fff;
	font-size: 0.9em;
}
.ms_box_A img {
	display: inline;
}
.ms_box_A table {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 8px;
}
.ms_box_A th {
	text-align: left;
    padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
    border-bottom: 1px dotted #C1E1C4;
    width: 25%;
    font-weight: bold;
}
.ms_box_A td {
    padding: 4px 0;
    border-bottom: 1px dotted #C1E1C4
}
.ms_box_A td::before {
    content: ":";
}
.no_photo {
    width: 364px;
    height: 222px;
    margin: 4px;
    display: table;
    text-align: center;
    background: #C1E1C4;
    opacity: 0.5;
}
.no_photo p {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: 16px;
}
.make_bottom_space {
    margin-bottom: 50px;
}

.past_photo {
    position: relative;
}
.past_photo p {
    position: absolute;
    top: 90%;
    left: 88%;
    color: #fff;
    font-weight: bold;
}