@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
* {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	font-size : 100%;
}
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:hover img {
	/* [disabled]opacity: 0.7; */
	/* [disabled]filter: alpha(opacity=80); */
}
sup,
sub {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	_vertical-align: bottom;
	position: relative;
	font-size: 75%;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
body {
	margin: 0px;
	padding: 0px;
	line-height: 1.3em;
	background-color:#FFFFFF;
	text-align: center;
	font-family:'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1em;
	-webkit-text-size-adjust: 100%;	
}

/* IE7でpadding指定 */
*:first-child+html body {
padding-left: 1px;
}
 
/* IE6以下でpadding指定 */
*html body {
padding-left: 1px;
}

/* Common */
.clearBoth {
	margin: 0px;
	padding: 0px;
	clear: both;
}
.textindent {
	text-indent: -9999px;
}
.displaynone {
	display: none;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

/* Font Size Common */
.text10 {
	font-size:77%;
}
.text11 {
	font-size:85%;
}
.text12 {
	font-size:93%;
}
.text13 {
	font-size:100%;
}
.text14 {
	font-size:108%;
}
.text15 {
	font-size:116%;
}
.text16 {
	font-size:123.1%;
}
.text17 {
	font-size:131%;
}
.text18 {
	font-size:138.5%;
}
.text19 {
	font-size:146.5%;
}
.text20 {
	font-size:153.9%;
}
.text21 {
	font-size:161.6%;
}
.text22 {
	font-size:167%;
}
.text23 {
	font-size:174%;
}
.text24 {
	font-size:182%;
}
.text25 {
	font-size:189%;
}
.text26 {
	font-size:197%;
}
strong {
	font-weight: bold;
}
span.underLine{
	text-decoration:underline;
	font-weight:bold;
}

/* wrapper */
#wrapper {
	margin-right: auto;
	margin-left: auto;
	min-width: 960px;
	text-align: left;
	position: relative;
	background-image: url("../images/mainImg.png");
	background-repeat: no-repeat;
	background-position: center top;
	font-family:'Noto Sans JP', sans-serif;
	background-size: cover;
}
#wrapperSub {
	margin-right: auto;
	margin-left: auto;
	min-width: 960px;
	text-align: left;
	position: relative;
	background-image: url(../images/sub_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
}

/* headerContents */
#headerContents {
	width: 100%;
	height:76px;
	z-index: 30;
	background-color:#fff;
	overflow-x: hidden;
}
.headerWrap{
	position: relative;
	max-width:1080px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.headerWrap::after{
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 20%;
	background-color: #0038dd;
}
.logoIcon h1{
	width:232px;
	height:32px;
	background-image: url("../images/logo_color.svg");
	background-repeat: no-repeat;
	background-position: center center;
	text-indent:-9999px;
}
.nav{
	color:#000;
	font-weight:bold;
	font-size:15px;
	font-family:'Noto Sans JP', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	display: flex;
	justify-content: flex-start;
	height: 100%;
	align-items: stretch;
	margin-left: auto;
}
.nav a{
	display:flex;
	align-items: center;
	margin:0 0px;
	padding: 0 25px;
	color:#000;
	font-weight:bold;
	position: relative;

}
.nav a::after{
	content: "";
	display: block;
	position: absolute;
	background-color: #80809b;
	height: 65%;
	top: 0;
	left: 0;
	width: 1px;
}
.nav a:visited{
	color:#000;
}
.logoutBtn,.loginBtn{
	background-color: #0038dd;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px;
	color: #fff;
}
.logoutBtn:hover,.loginBtn:hover{
	background-color: #0F3DC3;
}
.logOut{
	display:block;
	padding-left: 40px;
	position: relative;
	color: #fff;
}
.logOut::before{
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-image: url("../images/logout.svg")
}
.logIn{
	display:block;
	padding-left: 40px;
	position: relative;
	color: #fff;
}
.logIn::before{
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
	width: 18px;
	height: 18px;
	background-image: url("../images/login.svg")
}

.subPage {
	width: 100% !important;
}
.subPageWrap {
	width: 960px;
	height: 72px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.subPage .logoIcon {
	position: absolute;
	left: 10px;
	bottom: 5px;
}
.subPage .logoutBtn {
	position: absolute;
	right: 55px;
	top: 25px;
}
.subPage h1 {
	position: absolute;
	right: 440px;
	top: 10px;
	background-image: url(../images/header_title_sub.png);
	background-repeat: no-repeat;
	text-indent: -9999px;
	height: 48px;
	width: 270px;
}
.tel {
	position: absolute;
	right: 454px;
	top: 3px;
}
.subPage .tel {
	position: absolute;
	right: 224px;
	top: 3px;
	cursor: default;
}
.choiceArea{
	position: absolute;
	right: 0;
	top:0;
	background-color: rgba(0,0,0,0.60);
	text-align: center;
	padding: 10px;
	border-radius: 6px;
}
.choiceArea .ttl{
	font-size: 0.9em;
	color: #fff;
}
.choiceArea .text {
    font-size: 0.75em;
    display: inline-block;
    color: #fff;
    position: relative;
    padding-left: 20px;
}
.choiceArea .text::after{
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 3px);
	width: 6px;
	height: 6px;
	background-color: #fff;
	display: block;
	margin-left: 8px;
}
.choiceArea .flex{
	display: flex;
	justify-content: center;
}
.choiceLink1{
	display: block;
	width: 145px;
	background-color:rgba(21,154,63,0.90);
	color:#fff;
	padding:16px 8px;
	font-weight:bold;
	text-align:center;
	font-size: 0.9em;
	margin-right: 8px;
}
.choiceLink1 span{
	letter-spacing:5px;
	font-weight:bold;
}
.choiceLink2{
	display: block;
	width: 150px;
	background-color:rgba(251,193,0,0.90);
	color:#fff;
	padding:16px 8px;
	font-weight:bold;
	text-align:center;
	font-size: 0.9em;
}
.choiceLink2 span{
	letter-spacing:1px;
	font-weight:bold;
}
.choiceLink:hover{
	background-color:rgba(225, 37, 27, 0.6);
}
.choice {
	min-height:calc( 100vh - 475px);
	background-image: url(../images/choice_1.jpg);
	background-repeat: no-repeat;
	background-position:right top;
	background-size:140px 120px;
}
.choice h2{
	font-weight:bold;
	font-size:1.75em;
	padding-top:40px;
}
.choice .buttons{
	margin:60px auto;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.choice .buttons button {
	display:block;
	width:30%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
  height:180px;
  font-weight:bold;
  font-size:1.25em;
}
.choice .buttons button span{
	display:block;
	font-size:1.8em;
	font-weight:bold;
	line-height:1.2;
}
.choice p{
	font-size:1.3em;
	margin-bottom:40px;
}
.choice p.marker{
	display: inline-block;
    background: linear-gradient(transparent 75%, #FFCED7 75%);
    font-weight: bold;
    margin: 40px auto 0 auto;
}
p.exp{
	max-width: 776px;
	margin: 40px auto 4px;
	color: #fff;
	font-size: 0.8em;
	padding-left: 20px;
	position: relative;
}
p.exp:first-child{
	margin: 4px auto 4px;
}
p.exp::after{
	content: "";
	position: absolute;
	left: 0;
	top: calc(50% - 3px);
	width: 6px;
	height: 6px;
	background-color: #fff;
	display: block;
	margin-left: 8px;
}

.makerLogo {
    clear: both;
    display: block;
    width: 35%;
    margin: 0 auto 40px auto;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 80%;
  max-width: 1000px;
  background-color: #fff;
  padding:60px;
}
.choiceImg2{
	background-image: url(../images/choice_2.jpg);
	background-repeat: no-repeat;
	background-position:right 20px bottom 20px;
	background-size:140px 202px;
}


.modalWrapper h1{
	font-size:1.8em;
	font-weight:bold;
	line-height:1.2;
	margin-bottom:40px;
}

.modalWrapper h2{
	font-size:1.2em;
	margin:20px 0 10px 0;
	text-align:left;
	padding-left:10px;
	border-left:5px solid #e1251b;
}
.modalWrapper .flex{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	flex-wrap:wrap;
}
.modalWrapper .flex div{
	width:48%;
}
.modalWrapper .flex div img{
	width:100%;
	margin-top:20px;
}
.modalWrapper .flex p.lead{
	margin-top:20px;
}
.modalWrapper img.w100{
	width:100%;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}
.modalContents p{
	text-align:left;
	margin-bottom:20px;
}
.modalContents p.lead{
	font-size:1.1em;
	font-weight:normal;
}
.modalContents .list{
	font-size:1.1em;
	width: calc(100% - 120px);
}
.modalContents .list div{
	margin-bottom:20px;
}
.modalContents .list p.head{
	font-size:1.1em;
	margin-bottom:8px;
	position:relative;
}
.modalContents .list p.head span{
	display:inline-block;
	font-weight:bold;
	margin-right:10px;
	padding:6px;
	text-align:center;
	color:#fff;
	background-color:#333;
	height:1.5em;
	width:1.5em;
	position:relative;
	top:2px;
}



#openModal {
  
}

/* mainContents */
#mainContents {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 30;
	min-height:calc(100vh - 206px);
}
.topImg{
	background-repeat: no-repeat;
	background-size:cover;
	background-position:center top;
	padding-top:36px;
}
.mainArea{
	max-width:1024px;
	margin:0 auto;
	padding-top:20px;
	position:relative;
	overflow: hidden;
}
.mainArea.ofh{
	overflow:inherit;
}
.mainArea_Search{
	max-width:1024px;
	margin:0 auto;
	padding:0px;
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	position: relative;
}


.links{
	margin: 20px auto 0 auto;
	max-width: 720px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.links a{
	display: block;
	width: 32%;
	height: 84px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
	text-indent:-9999px;
}
.links a:hover{
	opacity: 0.8;
}
.links a.links01{
	background-image: url(../images/links_01.png);
}
.links a.links02{
	background-image: url(../images/links_02.png);
}
.links a.links03{
	background-image: url(../images/links_03.png);
}
.links a.links04{
	background-image: url(../images/links_04.png);
}
.links a.links05{
	background-image: url(../images/links_05.png);
}
.links a.links06{
	background-image: url(../images/links_06.png);
}

h2.mainTtl{
	width:320px;
	height:60px;
	margin:0px auto 20px auto;
}
p.lead{
	max-width: 800px;
	text-align: center;
	margin:0 auto 50px auto;
	color: #fff;
	letter-spacing: 2px;
	line-height: 1.5;
}
.searchArea{
	width:776px;
	margin:0 auto 40px auto;
	display:flex;
	justify-content: space-between;
}
.searchBox{
	width:48%;
	margin:0%;
	display:flex;
	border-bottom:8px solid #0038dd;
	background-color:rgba(0,0,48,.60);
	padding: 30px 30px 30px 30px;
	position:relative;
	text-align: center;
	color:#fff;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}
.searchBox::after{
	content: "";
	display: none;
	position: absolute;
	width: 20px;
	height: 20px;
	left: 15px;
	top: calc(50% - 10px);
	background-image: url("../images/arrow_white.svg");
	background-repeat: no-repeat;
	background-size:contain;
	background-position:center center;
}
.searchBox .icon{
	max-width: 100px;
	margin: 0 auto;
	width: 60%;
}
.searchBox p:first-child{
	color:#fff;
	font-weight: 900;
	font-size: 1.6em;
	margin-bottom: 10px;
	letter-spacing: 2px;
}
.searchBox p:nth-child(2){
	margin:5px auto;
	font-size:1.1em;
	font-weight: 900;
}
.searchBox p:nth-child(3){
	margin:5px auto;
	font-size:1.25em;
	font-weight: 900;
}
.searchBox p.car{
	margin:5px auto 0;
	font-size:1.1em;
	font-weight: 900;
}
.searchBox .srcbutton{
	display: block;
	width: 78%;
	margin: 20px auto;
	color: #fff;
	background-color: #0F3DC3;
	font-weight: bold;
	padding: 4px 10px 6px;
	position: relative;
	transition: .3s all;
}
.searchBox .srcbutton:hover{
	opacity: 0.8;
}
.searchBox .srcbutton::after{
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	right: 8px;
	top: calc(50% - 6px);
	background-image: url("../images/arrow_white.svg");
	background-repeat: no-repeat;
	background-size:contain;
	background-position:center center;
	transition: .3s all;
}
.searchBox .srcbutton:hover::after{
	right: 4px;
}
.searchBox form{
	margin-top: 10px;
	text-align: center;
}
.searchBox input{
	height:1.75em;
}
.searchBox .carSrc{
	margin-top:12px;
}
.searchBox div input:first-child{
	margin-right:6px;
	height:1.75em;
	margin-top: 20px;
}
.searchBox #submitButton{
	height:1.75em;
	width:1.75em;
	background-image: url(../images/Btn_search.svg);
	background-repeat: no-repeat;
	background-size:100% 100%;
	background-position:center center;
	background-color:#0038dd;
	border:none;
	cursor:pointer;
	margin-left:8px;
	text-indent:-9999px;
}
.linksArea{
	max-width:776px;
	margin:0 auto;
	display:block;
	border:1px solid #fff;
	background-color:rgba(0,0,0,0.40);
	background-image: url(../images/red.svg);
	background-repeat: no-repeat;
	background-size:58px 48px;
	background-position:left top;
	position:relative;
	padding-top: 30px;
	padding-bottom: 8px;
}
.linksArea p.ttl{
	max-width: 720px;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    font-size: 1.4em;
    letter-spacing: 1px;
    padding-left: 40px;
	margin-bottom: 10px;
}
.linksArea .flex{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding-right: 10px;
}
.linksArea .flex p:first-child{
	width: 380px;
}
.linksArea .flex p:last-child{
	font-size: 0.75em;
	color: #fff;
	text-indent: -1em;
	padding-left: 1em;
	margin-left: 20px;
}

.mainPicArea .logoutMainpic {
	padding-top: 60px;
}
.mainPicArea .loginMainpic {
	padding-top: 40px;
}
.mainPicArea .mainText {
	position: absolute;
	top: 300px;
	left: 80px;
	width: 180px;
	padding: 0px;
	color: #000000;
	font-size: 13px;
	font-weight: normal;
	text-align: left;
}
.mainPicArea .mainText span {
	display: block;
}
.mainPicArea .loginBtn {
	position: absolute;
	top: 140px;
	left: 160px;
	width: 114px;
	margin-left: -57px;
	padding: 0px;
	cursor: pointer;
	background-image: url(../images/top_loginbtn_bg.png);
	background-repeat: no-repeat;
}
.mainPicArea .loginBtn img:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}
.loginState .mainTitle {
	top: 160px;
}
.loginState .mainText {
	display: none;
}
.loginState .loginBtn {
	display: none;
}
.loginState .logoutMainpic {
	display: none;
}
.logoutState #topSearchBtn {
	display: none;
}
.logoutState .logoutBtn,
.logoutState .loginMainpic {
	display: none;
}




/* topicPath */
#topicPath {
	width: 100%;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
    clear: both;
    display: block;
    margin-bottom: 0px;
    padding-top: 10px;
	padding-left: 20px;
}
#topicPath li {
	color: #000000;
	display: inline;
    font-size: 90%;
	list-style-type: none;
	position: relative;
}
#topicPath li a {
	color: #000000;
}
#topicPath li a:hover {
	text-decoration: underline;
}
#topicPath li {
}
#topicPath li:after {
    content: " ＞";
}
#topicPath li:last-child:after {
    content: "";
}



/* globalnaviArea */
#globalnaviArea {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #ff0000;
	background-color: #000000;
}
.subPage #globalnaviArea {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFF;
}
#globalnavi {
}
.subPage #globalnavi {
}
#globalnavi ul {
	width: 880px;
	margin-left: auto;
	margin-right: auto;
}
.subPage #globalnavi ul {
	width: 920px;
}
#globalnavi li {
	display: inline-block;
	width: 25%;
	*display: block;
	*float: left;
}
#globalnavi li.current {
	background-image: url(../images/gmenu_arrow.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.subPage #globalnavi li {
}
#globalnavi li:last-child {
}
#globalnavi li:hover {
	background-color: #223a88;
}
#globalnavi li a {
	color: #FFF;
	display: block;
	width: 100%;
	line-height: 38px;
	text-align: center;
	font-style: italic;	
	font-size: 15px;
}




/* NEWS */
.articleArea{
	width:100%;
	height:150px;
	background-color:#fff;
	margin-top:auto;
	padding: 20px;
	position: relative;
	    margin-bottom: 34px;
}
.article .newsTable th{
	min-width:9em;
}
.topArticle {
	width: 776px;
	margin-left: auto;
	margin-right: auto;
	display:flex;
	height: 100%;
}
.topArticle a{
	color:#000;
}
.topArticle.head{
}
.topArticle p.newsTtl {
	margin-bottom:10px;
	font-weight: 900;
	font-size: 2em;
	margin-top: 13px;
	position: relative;
	padding-left: 34px;
} 
.topArticle p.newsTtl::before{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/arrow_blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 30px;
    height: 24px;
}
.topArticle p.newsJa{
	font-weight: 600;
	font-size:1.1em;
	padding-left: 34px;
}
.topArticle dl {
    margin-right: 0px;
    margin-bottom: 0px;
    border-bottom: none;
    margin-left: 50px;
    width: auto;
    overflow: hidden;
    padding-top: 4px;
    overflow-y: scroll;
}
.topArticle dl::-webkit-scrollbar{ 
    width: 5px;
}
.topArticle dl::-webkit-scrollbar-thumb{ 
    background: #6e7690;
    border-radius: 1px;
}
.topArticle dl::-webkit-scrollbar-track-piece:start{
    background: #bebeca;
}
.topArticle dl::-webkit-scrollbar-track-piece:end{
    background: #DDD;
}
.topArticle dt {
	clear: left;
	color: #000000;
	float: left;
	font-size: 0.9em;
	padding-top: 6px;
    padding-bottom: 6px;
	padding-right: 15px;
	width: 136px;
	font-weight: bold;
	text-align: left;
	padding-left:10px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.topArticle dd {
	float:left;
    font-size: 0.9em;
    padding-bottom: 6px;
    padding-top: 6px;
	padding-left: 20px;
	border-top:none;
	text-align:left;
	width:calc(100% - 140px);
}

.topArticle dt:first-child {
	border-top: none;
}
.topArticle dt:first-child + dd {
	border-top: none;
}

/* article */
#wrapperSub .article{
	margin-left: auto;
	margin-right: auto;
}
.article {
	max-width:960px;
	min-height:calc(100vh - 252px);
	margin-top: 60px;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-top: 20px;
	position: relative;
	overflow:hidden;
}
.article p.newsTtl{
	width:96px;
	height:32px;
	background-image: url(../images/H_news.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-indent:-9999px;
	margin-left: 20px;
	margin-bottom:10px;
}
.article p.newsJa {
	margin-left: 5px;
	color: #fff;
}
.article h2 {
	clear: left;
	color: #000000;
	float: none;
	font-size: 1.1em;
	padding-top: 25px;
    padding-bottom: 25px;
	padding-right: 0px;
	padding-left:30px;
	width: 100%;
	font-weight: bold;
	text-align: left;
	border-top:1px solid #999999;
	border-bottom:1px solid #999999;
	margin-right:30px;
	margin-bottom:30px;
	line-height:1.4em;
	background-image: url("../images/arrow_blue.svg");
	background-repeat: no-repeat;
	background-position: center left;
	background-size:18px 18px;
}

.article h3 {
	background-color: #e3e3e3;
	border-radius: 3px;
	font-size: 100%;
	line-height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 15px;
}
.article h3.link {
	background-color: #CAEEFF;
	padding-right: 0px;
	padding-left: 0px;
}
.article h3.linkBox {
	background-color: #CAEEFF;
	color: #000;
	display: block;
	padding: 10px;
	position: relative;
	font-size: 180%;
	line-height: 1.5em;
	font-weight: bold;
	margin-top: 40px;
}
.article a.linkBox {
	color: #000;
	display: block;
	text-align: right;
	margin-bottom: 20px;
}
.article a.linkBox:before {
	content: " 》";
}
.article a.linkBox:hover {
	text-decoration: underline;
}
.article h3.link:hover {
	background-color: #95DDFF;
}
.article h3 a {
	color: #000;
	display: block;
	padding-left: 10px;
	padding-bottom: 10px;
	position: relative;
	font-size: 180%;
	font-weight: bold;
}
.article h3 a span {
	font-size: 50%;
}
.article h3 a:after {
	color: #599CD9;
	display: block;
	width: 20px;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -15px;
	right: 5px;
	content: " 》";
}
.article.construction h3 a:after {
	color: #599CD9;
	display: block;
	width: auto;
	height: 30px;
	position: absolute;
	top: 50%;
	margin-top: -15px;
	right: 5px;
	content: "こちらをクリック 》";
}
.article p {
	font-size: 90%;
	margin-bottom: 30px;
	text-align:left;
	padding:0 30px;
}

.article p.textRight {
	text-align:right;
}
.article .articleH2afterP {
	margin-top: -15px;
	margin-bottom: 20px;
}
.article dl {
	margin-left: 20px;
	margin-right: 20px;
	display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.article dt {
	clear: left;
	color: #000000;
	font-size: 1.1em;
	padding-top: 25px;
    padding-bottom: 25px;
	padding-right: 0px;
	width: 180px;
	font-weight: bold;
	text-align: left;
	border-top:1px solid #999999;
	margin-right:0px;
}
.article dd {
	width:calc(100% - 220px);
    font-size: 0.95em;
    padding-bottom: 25px;
    padding-top: 25px;
	padding-left: 30px;
	border-top:1px solid #999999;
	text-align:left;
	background-image: url("../images/arrow_blue.svg");
	background-repeat: no-repeat;
	background-position: center left;
	background-size:18px 18px;
	color: #0038dd;
}
.topPage .article dd {
	border-top:none !important;
}

.article dl a {
	color: #0038dd;
	font-weight:bold;
}
.article dl a:hover {
	text-decoration: underline;
}
.article .borderBox {
	clear: both;
	background-image: url(../images/borderbox_bg.png);
	background-repeat: repeat-x;
	background-position: top;
	background-color: #eeeeee;
}
.article .borderBox + .borderBox {
	margin-top: 30px;
}
.article .borderBox h1 {
	float: left;
	width: 181px;
	text-align: left;
	font-size: 90%;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
	padding-top: 40px;
	color: #13255f;
}
.article .borderBox .carName h1 {
	float: none;
	width: 100%;
	text-align: left;
	font-size: 110%;
	padding-left: 50px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	background-color: #13255f;
	color: #FFF;
	font-weight: bold;
	background-image: url(../images/h1_arrow.png);
	background-repeat: no-repeat;
	background-position: 20px center;
}
.article .borderBox h1 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
.article .borderBox .dataArea {
	padding-top: 55px;
	margin-left: 180px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
	min-height: 200px;
	background-image: url(../images/borderbox_bg.png);
	background-repeat: repeat-x;
	background-position: top;
	background-color: #FFF;
}
.dataArea .annotation{
	padding: 12px !important;
    /* border: 2px solid #01154a; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #F4F4F4;
    font-size: 1.2em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.dataArea .annotation p{
	margin: 0 auto;
	color: #01154a;
}
.dataArea .annotation .ttl{
	text-align: center;
	font-weight: bold;
	color: #01154a;
	width: 100%;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #01154a;
}
.article .borderBox .dataArea h2 {
	background-color: #000000;
	font-size: 110%;
	line-height: 40px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 0px;
	color: #FFF;
}
.dataArea .wheel .wheelList{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.dataArea .wheel .wheelList div{
	width: 50%;
	padding: 2%;
	border: 1px solid #ddd;
	text-align: left;
}
.dataArea .wheel .wheelList div p{
	margin-right: 0;
	font-size: 1.1em;
	margin-bottom: 15px;
	float: none;
}
.dataArea .wheel p.wheelSize{
	width: 100%;
	background-color: #efefef;
    width: 100%;
    padding: 10px 10px;
    color: #0038dd;
    float: none;
    font-size: 1.2em;
}
.dataArea a.orderBtn{
	border-radius: 4px;
	padding: 5px 12px 7px 12px;
	display: inline-block;
	background-color: #FFAE00;
	color: #fff;
	font-size: 0.95em;
	font-weight: bold;
	margin-top: 6px;
	margin-bottom: 2px;
	align-self: flex-start;
	text-decoration: none;
}
.dataArea a.orderBtn:hover{
	opacity: 0.7;
}
.dataArea .wheel p.wheelSize:nth-child(n+2){
	margin-top: 20px;
}
.dataArea .wheel .wheelList p.point{
	display:inline-block;
	color:#fff;
	font-weight:bold;
	font-size:1.1em;
	margin-top:4px;
	padding:2px 6px 4px 6px;
	background-color:#01154a;
	margin-top: 8px;
}
.dataArea .wheel .wheelList div p{
	min-width: auto;
	float: none;
}
.dataArea .wheel .wheelList div img{
	margin-left: auto;
	margin-right: auto;
	float: none;
}
.dataArea .wheel .wheelList .orderNo{
	margin-top: 15px;
	color: #0038dd;
	width: 100%;
	font-size: 1em;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	padding: 0;
}
.dataArea .wheel .wheelList .orderNo span{
	font-weight: bold;
}
.article .borderBox .dataArea h2.twoLine {
	display: inline-block;
	width: 49.9%;
}
.article .borderBox .dataArea h2.fourLine {
	display: inline-block;
	width: 25%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
}
.article .borderBox .dataArea h2.twoLine:first-child {
	margin-right: 1px;
}
.article .borderBox .carName {
	margin-left: 0px;
	border: none;
}
.article .borderBox .carName h2 {
	background-color: #e3e3e3;
	font-size: 100%;
	line-height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	color: #13255F;
}
.article .borderBox .carName h2.threeLine {
	display: inline-block;
	width: 33.25%;
	margin-right: 1px;
}
.article .borderBox .carName h2.fiveLine {
	display: inline-block;
	width: 19.85%;
	margin-right: 1px;
}
.article .borderBox .carName h2.noMargin {
	margin-right: 0%;
	width: 33.25%;
}
.article .borderBox .dataArea p {
	font-size: 90%;
}
.article .borderBox .dataArea table {
	font-size: 90%;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 20px;
}
.article .borderBox .dataArea table th {
	padding-top: 10px;
	padding-bottom: 10px;
}
.article .borderBox .dataArea table th.textTop {
	vertical-align: top;
}
.article .borderBox .dataArea table td {
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
}
.article .borderBox .dataArea table.searchTable,
.article .borderBox .dataArea table.detailTable {
	margin-bottom: 30px;
	margin-left: 15px;
	margin-right:15px;
}

.article .borderBox .dataArea table.twoLine td {
	width: 50%;
}
.article .borderBox .dataArea table.threeLine td {
	width: 33%;
}
.article .borderBox .dataArea table.fourLine td {
	width: 25%;
}
.article .borderBox .dataArea table.fiveLine td {
	width: 20%;
}
.article .borderBox .dataArea table.searchTable td a {
	color: #000;
	font-weight: bold;
}
.article .borderBox .dataArea table.searchTable td a:hover {
	text-decoration: underline;
}
.article .borderBox .dataArea table.searchTable:last-child,
.article .borderBox .dataArea table.detailTable:last-child {
	margin-bottom: 0px;
}
.article .borderBox .dataArea table.searchTable td:first-child {
	padding-left: 30px;
	background-image: url(../images/list_arrow.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.article .borderBox .dataArea table.detailTable th {
	text-align: right;
	padding-right: 10px;
	width: 30%;
}
.article .borderBox .dataArea table.detailTable th.verticalalignTop {
	vertical-align: top;
}
.article .borderBox .dataArea table.annotation {
	margin-top:-30px;
}
.article .borderBox .dataArea table.annotation th {
	text-align: left;
}
.article .borderBox .dataArea table.detailTable th img,
.article .borderBox .dataArea h3.detailH3 img {
	vertical-align: middle;
}
.article .borderBox .dataArea h3.detailH3 {
	background-color: #FFF;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 0px;
	font-weight: bold;
}
.article .borderBox .dataArea h3.detailH3 + h2 {
	margin-top: 30px;
}
.article .borderBox .dataArea h3.detailH3 span {
	color: #b5b5b5;
}
.article .borderBox .dataArea h3.detailH3 a {
	text-decoration: underline;
}
.article .borderBox .dataArea h3.detailH3 a:hover {
	text-decoration: none;
}
.article .borderBox .dataArea table.detailTable td {
	padding-left: 30px;
	background-image: url(../images/list_arrow.png);
	background-position: left center;
	background-repeat: no-repeat;
}
.article .borderBox .dataArea table.detailTable td.verticalalignTop {
	background-position: left 10px;
}
.article .borderBox .dataArea table.detailTable td a {
	text-decoration: underline;
}
.article .borderBox .dataArea table.detailTable td a:hover {
	text-decoration: none;
}
.article .borderBox .dataArea table.jackUP th {
	text-align: right;
	padding-right: 10px;
	width: 15%;
	vertical-align: top;
}
.article .borderBox .dataArea table.jackUP td {
	padding-left: 30px;
	background-image: url(../images/list_arrow.png);
	background-position: left 10px;
	background-repeat: no-repeat;
}
.article .borderBox .dataArea table.imgOnly td {
	padding-left: 0px;
	background-image: none;
}
.article .borderBox .dataArea table td img {
	max-width: 95%;
	max-height: 300px;
	width: auto;
	height: auto;
}
.article .borderBox .dataArea table.jackUP td img {
	max-width: 95%;
	height: auto;
}
.article .carSelectBox {
	margin-bottom: 40px;
}
.article .carSelectBox .makerSelect {
	float: left;
	width: 49.9%;
	background-color: #eeeeee;
	padding: 8px;
}
.article .carSelectBox .carSelect {
	float: right;
	width: 49.9%;
	background-color: #eeeeee;
	padding: 8px;
}
.article .carSelectBox .makerSelect dl,
.article .carSelectBox .carSelect dl {
	border: none;
	margin: 0;
	padding: 0;
}
.article .carSelectBox .makerSelect dl dt,
.article .carSelectBox .carSelect dl dt {
	padding: 5px;
	margin: auto;
	background-image: none;
	border: none;
	text-align: left;
	font-size: 100%;
	color: #219681;
}
.article .carSelectBox .makerSelect dl dd,
.article .carSelectBox .carSelect dl dd {
	padding: 5px;
	border: none;
	font-weight: bold;
	color: #13255f;
	font-size: 120%;
	text-align: left;
	margin: 0;
	background-image: none;
}
.article .detailMain {
}
.article .detailMain h2 {
	float: left;
}
.article .detailMain h2 span.subname {
	display: inline-block;
	font-size: 65%;
	margin-top: 5px;
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 1.25em;
	width: 330px;
}
.article .detailMain table {
	float: right;
	margin-bottom: 20px;
	width: 500px;
	font-size: 90%;
}
.article .detailMain table tr {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	float: left;
	width: 49.5%;
}
.article .detailMain table th {
	text-align: right;
	padding-right: 5px;
	width: 5em;
	display: inline-block;
}
.article .detailMain table td {
	padding-left: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-image: url(../images/list_arrow_detail.png);
	background-position: left center;
	background-repeat: no-repeat;
	white-space: nowrap;
	display: inline-block;
	font-weight: bold;
}

.videoArea {
	margin-bottom: 60px;
}
.videoArea video {
	width: 100%;
}

/* loginArea */
#loginArea {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	z-index: 10000;
	display: block ; /*非表示*/
	left: 0;
	top: 0;
	background-image: url(../images/opacity65.png);
	padding:1vh;
}
#loginArea .loginBox {
	position: relative;
	top: calc( 50vh - 120px);
	height:auto;
	overflow:auto;
	margin: 0 auto;
	/* [disabled]-webkit-transform: translateY(-20%); */
}
#loginArea .loginBox .frame {
	margin-top:0;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: #FFF;
}
#loginArea .loginFormBox {
	height: 100%;
	width: 100%;
	padding: 12px 8%;
}
#loginArea .loginFormBox form{
}
#loginArea .loginFormBox img{
	margin: 20px auto;
	max-width: 400px;
}
#loginArea .mail {
	background-color: #FFF;
	width: 211px;
	height: 30px;
	padding: 4px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #B6B6B6;
	border-right-color: #B6B6B6;
	border-left-color: #B6B6B6;
}
#loginArea .pass {
	border: 1px solid #B6B6B6;
	background-color: #FFF;
	width: 211px;
	height: 30px;
	padding: 4px;
	margin-bottom: 15px;
}
#loginArea .loginSubmit {
	margin-top: 15px;
	margin-bottom: 15px;
	width: 230px;
	height: 27px;
}
#loginArea .loginSubmit:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
#loginArea input {
	vertical-align:middle;
}
#loginArea p {
	font-size: 70%;
}
#loginArea p a {
	color: #000;
}
#loginArea p a span {
	color: #3337da;
	text-decoration: underline;
}
#loginArea p a span:hover {
	text-decoration: none;
}
#loginArea p.text16{
	font-size:16px;
	margin:30px;
	text-align:center;
}
#loginArea ul{
	width:100%;
	margin:0 auto 20px auto;
	font-size:14px;
	text-align:left;
}
#loginArea ul li{
	position:relative;
	list-style:none;
	padding-left:1em;
	margin-bottom:4px;
}
#loginArea ul li:before{
	content:"・";
	position:absolute;
	display:block;
	left:0;
	top:0;
}
#loginArea p.textRight{
	text-align:right;
	margin-bottom:20px;
}

/* 承認 */
#loginArea.syounin .loginBox {
	position: relative;
	top: 50%;
	overflow:auto;
	transform: translateY(-50%);
}
#loginArea .loginBox .frame {
	max-width: 400px;
}
#loginArea.syounin .loginBox .frame {
	max-width: 80vw;
	width:auto;
	height:100%;
	margin-top:0;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: #FFF;
	padding-bottom:2px;
	overflow:auto;
}
#loginArea.syounin p.btn{
	width:220px;
	background-color:#80809B;
	padding:14px;
	margin:30px auto;
	font-size:1.2em;
	color:#fff;
	font-weight:bold;
	text-align:center;
	cursor:pointer;
}

/* SearchBtn 
#topSearchBtn {
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	text-align: center;
	position: absolute;
	bottom: 60px;
}

#topSearchBtn .searchMaker {
	background-repeat: no-repeat;
	height: 137px;
	width: 264px;
	display: inline-block;
	position: relative;
	margin-right: 40px;
}
#footerSearchBtn .searchMaker {
	background-repeat: no-repeat;
	height: 82px;
	width: 384px;
	display: inline-block;
	position: relative;
	margin-right: 25px;
	margin-left: 0px;
}
#topSearchBtn .searchMaker:hover,
#footerSearchBtn .searchMaker:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
}
#topSearchBtn .searchMaker a {
	display: block;
	text-indent: -9999px;
	height: 137px;
	width: 264px;
}
#footerSearchBtn .searchMaker a {
	display: block;
	text-indent: -9999px;
	height: 82px;
	width: 384px;
}
#topSearchBtn .searchCarName {
	background-repeat: no-repeat;
	height: 137px;
	width: 264px;
	display: inline-block;
	position: relative;
}
#footerSearchBtn .searchCarName {
	background-repeat: no-repeat;
	height: 82px;
	width: 384px;
	display: inline-block;
	position: relative;
}
#carNameSearchBtn .searchCarName {
	background-repeat: no-repeat;
	height: 82px;
	width: 442px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	position: relative;
}
#topSearchBtn .searchCarName span,
#footerSearchBtn .searchCarName span,
#carNameSearchBtn .searchCarName span {
	text-indent: -9999px;
	display: block;
}
#topSearchBtn form {
	position: absolute;
	left: 45px;
	top: 84px;
}
#footerSearchBtn form,
#carNameSearchBtn form {
	position: absolute;
	left: 200px;
	top: 24px;
}
#topSearchBtn input[type="text"],
#topSearchBtn input[type="submit"],
#footerSearchBtn input[type="text"],
#footerSearchBtn input[type="submit"],
#carNameSearchBtn input[type="text"],
#carNameSearchBtn input[type="submit"] {
	display:inline-block;
}

#footerSearchBtn .searchText,
#carNameSearchBtn .searchText {
	border: 1px solid #B6B6B6;
	background-color: #E1E1E1;
	width: 130px;
	height: 30px;
	padding: 4px;
	margin-right: 5px;
}
#topSearchBtn .searchBtn {
	border: 1px solid #B6B6B6;
	background-color: #000000;
	width: 30px;
	height: 30px;
	padding: 4px;
	margin-right: 5px;
	color: #FFF;
	cursor: pointer;
	font-weight: bold;
	position: absolute;
	background-image: url(../images/icon_search.png);
	background-repeat: repeat;
	background-position: center center;
	text-indent: -9999px;
}
#footerSearchBtn .searchBtn,
#carNameSearchBtn .searchBtn {
	border: 1px solid #B6B6B6;
	background-color: #000000;
	width: 30px;
	height: 30px;
	padding: 4px;
	margin-right: 5px;
	color: #FFF;
	cursor: pointer;
	font-weight: bold;
	position: absolute;
	background-image: url(../images/icon_search.png);
	background-repeat: repeat;
	background-position: center center;
	text-indent: -9999px;
}
#topSearchBtn .searchBtn:hover,
#footerSearchBtn .searchBtn:hover,
#carNameSearchBtn .searchBtn:hover {
	border: 1px solid #B6B6B6;
	background-color: #333333;
}
*/

#footerSearchBtn {
	padding-top: 40px;
	padding-bottom: 10px;
	text-align: left;
	background-color: #01154a;
}
#topSearchBtn .searchText {
	border: 1px solid #B6B6B6;
	width: 120px;
	height: 1.5em;
	padding: 4px;
	margin-right: 10px;
	display:inline-block;
}
#footerSearchBtn .searchArea{
	margin-bottom: 0;
}





/* entryForm */
#entryForm {
	margin-top: -10px;
	text-align: center;
}
#entryForm .mail01,
#entryForm .mail02,
#entryForm .pass01,
#entryForm .pass02,
#entryForm .name01,
#entryForm .name02 {
	background-color: #E4EAFA;
	width: 100%;
	height: 30px;
	padding: 4px;
	border: none;
}
#entryForm .textArea {
	background-color: #E4EAFA;
	width: 100%;
	height: 100px;
	padding: 4px;
	border: none;
}
#entryForm .entrySubmit {
	margin-top: 15px;
	margin-bottom: 15px;
	width: 211px;
	height: 36px;
}
#entryForm input {
}
#entryForm .entrySubmit:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
#entryForm table {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
#entryForm table th {
	width: 30%;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: left;
}
#entryForm table td {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: left;
}
#entryForm table tr {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #eeeeee;
}
#entryForm span {
	color: #F00;
	display: block;
	margin: 10px;
}
#entryForm td span {
	color: #000;
	display: inline;
	margin: 0px;
	font-size: 70%;
}





/* footerArea */
#footerArea {
	clear: both;
	width: 100%;
	height:auto;
	z-index: 10;
	padding:20px;
	text-align: center;
}
#footerArea .footLogo{
	width:234px;
	height:70px;
	margin:10px auto;
	padding:32px 0;
	background-image: url("../images/logo_footer.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size:contain;
	text-indent: -9999px;
}
.backFoot{
	background-color:rgba(1,21,74,.60);
}
.backBlack{
	background-color:#01154a;
}
.backBlue{
	background-color: #01154a;
}
.backnone{
	background-color:none;
}
.mobileOnly {
	display: none;
}
#gotoPageTop {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #13255f;
    border-radius: 2px;
    bottom: 25px;
    display: block;
    height: 50px;
    position: fixed;
    right: 25px;
    text-align: left;
    text-indent: -9999px;
    width: 50px;
    z-index: 9999;
}
#gotoPageTop span {
    background-image: url("../images/gototop.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    display: block;
    height: 50px;
    opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
    padding: 0;
    width: 50px;
	cursor: pointer;
}





/* construction */

.article.construction h3.link {
	margin-top: 40px;
}
.article.construction h3.h3Title {
	position: relative;
	margin-top: 3em;
	line-height: 1.2em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	border-left-width: 2.5em;
	border-left-style: solid;
	border-left-color: #666;
}
.article.construction h3.h3Title span {
	display: block;
	position: absolute;
	left: -2.5em;
	top: 50%;
	width: 2.5em;
	text-align: center;
	color: #FFF;
	margin-top: -0.5em;
	line-height: 1em;
}
.article.construction h3.h3Title span strong {
}
.article.construction h3.group01 {
	background-color: #66CCCC;
	color: #FFF;
	font-size: 115%;
	padding: 3px;
	padding-left: 10px;
}
.article.construction h3.group02 {
	background-color: #66CCFF;
	color: #FFF;
	font-size: 115%;
	padding: 3px;
	padding-left: 10px;
}
.article.construction h3.group03 {
	background-color: #FFCC66;
	color: #FFF;
	font-size: 115%;
	padding: 3px;
	padding-left: 10px;
}
.article.construction h4 {
	font-weight: bold;
	font-size: 100%;
	margin-bottom: 1em;
	margin-top: 2em;
}
.article.construction p {
	margin-bottom: 15px;
}
.article.construction p.comments {
	padding-left: 1.5em;
}
.article.construction p.bgGray {
	background-color: rgba(231,231,231,1);
	padding: 3px;
	margin-top: 10px;
	margin-bottom: 15px;
}
.article.construction ol,
.article.construction ul {
	font-size: 90%;
	margin-top: 1em;
	margin-left: 3em;
	margin-bottom: 1em;
}
.article.construction ol li {
	margin-bottom: 10px;
}
.article.construction ol li span.box {
	display: inline-block;
	padding: 10px;
	border: 1px solid rgba(204,204,204,1);
	margin: 0 10px 10px 0;
}
.article.construction ol > h4,
.article.construction ul > h4 {
	margin-bottom: 2em;
}
.article.construction .bkBox {
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 10px;
	background-color: #333333;
	color: #FFFFFF;
}
.article.construction .bkBox p {
	margin: 0px;
}
.article.construction .bkBox p span {
	display: inline-block;
	width: 4.5em;
	padding: 5px;
	background-color: #CCCCCC;
	color: #000000;
	margin: 10px;
}
.article.construction ul.movie {
	margin: 0;
	padding: 0;
}
.article.construction ul.movie li {
	text-align: center;
	width: 48%;
	display: inline-block;
	margin: 0 0 30px 0;
}
.article.construction ul.movie li:nth-child(odd) {
	margin-right: 4%;
}
.article.construction ul.movie li .videoArea {
	margin-bottom: 0px;
}
.article.construction ul.movie li .videoArea video {
	width: 100%;
}
.article.construction ul.carcare {
	margin: 40px 0 0 0;
	padding: 0;
}
.article.construction ul.carcare li {
	text-align: center;
	width: 28%;
	display: inline-block;
	margin: 0 2.5% 50px 2.5%;
	vertical-align: top;
}
.article.construction ul.carcare li p {
	font-size: 14px;
}
.article.construction ul.carcare li p span {
	font-size: 11px;
}
.article.construction ul.carcare li img {
	width: 100%;
	height: auto;
	border: 4px solid #CCCCCC;
	padding: 10px;
	margin-bottom: 10px;
}
.article.construction ul.carcare li a {
	color: #000000;
}
.article.construction ul.carcare li a img:hover {
	border: 4px solid #666666;
}


.article.construction ul.popinfo {
	margin: 40px 0 0 0;
	padding: 0;
}
.article.construction ul.popinfo li {
	text-align: center;
	width: 45%;
	display: inline-block;
	margin: 0 2.5% 50px 2.5%;
	vertical-align: top;
}
.article.construction ul.popinfo li p {
	font-size: 14px;
}
.article.construction ul.popinfo li img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	border: 1px solid #000000;
}
.article.construction ul.popinfo li p a.pdfDL {
	color: #FFF;
	background-color: #FF3300;
	display: block;
	margin-bottom: 15px;
	border-radius: 40px;
	line-height: 40px;
	font-size:18px;
	font-weight: bold;
}
.article.construction ul.popinfo li p a.aiDL {
	color: #FFF;
	background-color: #F93;
	display: block;
	margin-bottom: 15px;
	border-radius: 40px;
	line-height: 40px;
	font-size:18px;
	font-weight: bold;
}
.article.construction ul.popinfo li p a.pdfDL:hover,
.article.construction ul.popinfo li p a.aiDL:hover {
	opacity: 0.6;
}

/* table */
.article table{
	text-align:left;
	border-collapse: collapse;
  border-spacing: 0;
  padding:4px 0px;
  font-size:0.9em;
  margin-left:30px;
}
.article table th{
	padding:6px;
}
.article table tr{
	border-bottom:1px solid #E3E3E3;
	margin:4px;
	padding:6px;
    border: 1px #000;
}
.article table td{
	padding:6px;
}


/* 下層Page --------------------------*/

.titleArea{
	width:25%;
	margin-right:1%;
	font-weight:bold;
	background-color: #c8d1ee;
	position: relative;
	padding: 30px 0;
}
.titleArea::before{
	position: absolute;
	content: "";
	background-color: #c8d1ee;
	width: 100%;
	right: 100%;
	height: 100%;
	top:0;
}
.titleArea a{
	color:#000;
}
.titleArea h1{
	height:120px;
	font-size:18px;
	padding:51px 0;
	border-bottom:1px solid  #999;
	text-align:left;
	font-weight:bold;
}
.subArticle{
	width:74%;
	min-height:calc(100vh - 252px);
	padding:30px 0 80px 50px;
}
.subArticle.width100{
	width:100%;
	min-height:calc(100vh - 252px);
	padding:30px 0 80px 0px;
}
.subArticle h2{
	height:auto;
	font-size:20px;
	padding:20px 0 20px 30px;
	background-image: url(../images/arrow_Blue.svg);
	background-repeat: no-repeat;
	background-position: center left;
	background-size:18px 18px;
	font-weight:bold;
	text-align:left;
	color: #0038dd;
	margin-bottom: 10px;
	margin-top: 30px;
}
.subArticle h2.narrow{
	margin-top:40px;
	height:50px;
	font-size:18px;
	padding:11px 0 11px 30px;
	background-image: url("../images/arrow_blue.svg");
	background-repeat: no-repeat;
	background-position: center left;
	background-size:18px 18px;
	font-weight:bold;
	text-align:left;
	border: 2px solid #c8d1ee;
	margin-bottom: 20px;
}
.subArticle h3{
	font-size:16px;
	padding:10px 10px 10px 40px;
	margin-bottom:14px;
	border:2px solid #c8d1ee;
	color:#000;
	font-weight:bold;
	text-align:center;
	margin-top:30px;
	position:relative;
}
.subArticle h3:first-of-type{
	margin-top:0px !important;
}
.subArticle h3 span{
	position:absolute;
	left:0;
	top:0;
	botoom:0;
	height:100%;
	padding:10px;
	color:#000;
	background-color:#c8d1ee;
}

.subArticle .flex{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:flex-start;
	margin-bottom:60px;
}
.subArticle .flex div{
	width:23%;
	margin:0 1%;
}
.subArticle .flex div a{
	color:#000;
	font-weight:bold;
}
.subArticle .flex div div{
	width:100%;
	padding-top:66%;
	background-repeat:no-repeat;
	background-size:100%;
	background-position:center top;
}
.subArticle .flex.product{
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.subArticle .flex.product a{
	display: block;
	width: 30.3333%;
	margin: 0 1.5% 50px;
	text-align: center;
	color: #000;
}
.subArticle .flex.product  a:hover{
	opacity: 0.8;
}
.subArticle .flex.product a p.name{
	display: block;
	font-size: 1.2em;
	margin-bottom: 15px;
	text-align: center;
	font-weight: bold;
}
.subArticle .flex.product a p{
	line-height: 1.25;
	text-align: left;
}
.subArticle .flex.product a img{
	width: 100%;
}
.resultArea{
    font-size: 18px;
    padding: 30px 0;
    font-weight: bold;
    text-align: left;
    background-color: #01154a;
    color: #fff;
}
.resultArea .resultFlex {
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:flex-start;
	margin-bottom:20px;
	width: 96%;
    max-width: 1024px;
    margin: 0 auto 30px;
    color: #fff;
}
.resultArea .resultFlex .previewText {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    margin: 0 0%;
    max-width: 50%;
}
.resultArea .inner{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:flex-start;
	margin-bottom:20px;
	width: 96%;
    max-width: 1024px;
    margin: 0 auto;
    color: #fff;
}
.subArticle .resultFlex{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	margin-bottom:20px;
	width: 96%;
    max-width: 1024px;
    margin: 0 auto;
    color: #fff;
}
.subArticle .resultFlex .previewText{
	display: flex;
    justify-content: space-around;
    width: 46%;
    margin: 0 2%;
}

.subArticle .flex .previewText div{
	padding-top:0;
}
.subArticle .flex div div.logo_01{
	background-image: url(../images/logo_01.jpg);
}
.subArticle .flex div div.logo_02{
	background-image: url(../images/logo_02.jpg);
}
.subArticle .flex div div.logo_03{
	background-image: url(../images/logo_03.jpg);
}
.subArticle .flex div div.logo_04{
	background-image: url(../images/logo_04.jpg);
}
.subArticle .flex div div.logo_05{
	background-image: url(../images/logo_05.jpg);
}
.subArticle .flex div div.logo_06{
	background-image: url(../images/logo_06.jpg);
}

/* makerList */

.makerList{
	display:flex;
	flex-wrap:wrap;
}
.makerList a{
	width:24%;
	padding:0 14px;
	min-height:110px;
	text-align:left;
	align-content:center;
	flex-wrap:wrap;
	margin:0.5%;
	background:#c8d1ee;
	text-decoration:none;
	font-size:1em;
	color:#000;
	letter-spacing:2px;
	font-weight:bold;
	 display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	 justify-content: center; 
}
.makerList a:hover{
	opacity:0.8;
}
.ls0 a span{
	letter-spacing:0px;
	font-size:0.9em;
}
.makerList a span{
	position:relative;
	font-weight:bold;
	padding-left: 20px;
	margin-left: -10px;	
	max-width: 138px;
	width: 80%;
	margin-bottom: 1px;
}
.makerList a span:before{
	position:absolute;
	content:"";
	left:0;
	top: calc(50% - 10px);
	width: 15px;
	height: 20px;
	background-image: url("../images/arrow_blue.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.construction{
	text-align:left;
	padding-bottom:60px;
	width: 100%;
}
.subArticle.construction{
	width: 100%;
}
.construction p{
	margin-bottom:10px;
	line-height:1.4;
}
.construction h4{
	margin:20px 0;
	padding:4px 0px 4px 8px;
	border-left:2px solid #0038dd;
	background-color:#F3F3F3;
}
.construction li{
	list-style-position:inside;
	margin-bottom:4px;
	font-size:0.95em;
}
.construction ol{
	margin-bottom:10px;
}
.constTable{
	margin-bottom:20px;
	width:100%;
	font-size:1em;
	border:2px solid #E6E6EB;
	border-collapse: collapse;
  border-spacing: 0;
}
.constTable th{
	padding:10px;
	background-color:#E6E6EB;
}
.constTable th{
	padding:10px;
	background-color:#E6E6EB;
	border-right:2px solid #fff;
}
.constTable th:last-child{
	border-right:none;
}
.constTable tr{
	border-bottom:2px #E6E6EB solid;
	padding:4px;
}
.constTable td{
	border-bottom:2px #E6E6EB solid;
	border-left:2px #E6E6EB solid;
	padding:4px 8px;
}
.subArticle .font1{
	font-size:1em;
}
/* Search */
.backCar{
	padding: 50px 0;
	background-image: url("../images/mainImg.png");
	background-repeat: no-repeat;
	background-position: center -50% center;
	background-size:cover;
	text-align: center;
}
.backCar h1{
	color: #fff;
	font-size: 1.65em;
	letter-spacing: 2px;
	font-weight: 700;
}
.mainArea_Search h1.makerSearchTtl{
	height:25px;
	width:225px;
	font-size:18px;
	padding:60px 0 60px 30px;
	background-image: url(../images/H_maker.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:contain;
	font-weight:bold;
	text-indent:-9999px;
	text-align:left;
}
.mainArea_Search h1.carSearchTtl{
	height:25px;
	width:225px;
	font-size:18px;
	padding:60px 0 60px 30px;
	background-image: url(../images/H_car.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:114px 32px;
	font-weight:bold;
	text-indent:-9999px;
	text-align:left;
}
.previewArea{
	height:120px;
	font-size:18px;
	padding:40px 0;
	font-weight:bold;
	text-align:left;
	background-color:#01154a;
	color:#fff;
	display:flex;
}
.previewArea .inner{
	width: 96%;
	max-width: 1024px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto;
	color: #fff;
}
.previewArea .inner.center{
	justify-content: center;
}
.previewArea .inner.center .whiteBox_{
	text-align: center;
}
.previewArea .inner.center .previewText{
	text-align: center;
	justify-content: center;
}

.previewText{
	display:flex;
	justify-content: flex-start;
    align-items: center;
	width:50%;
	margin:0 0%;
	max-width: 400px;
}
.previewText p.makerName{
	color:#fff;
	padding:0;
	font-size:22px;
	font-weight:bold;
	margin-right: 15px;
	min-width: 140px;
}
.previewText p.carName{
	color:#fff;
	padding:0;
	font-size:22px;
	font-weight:bold;
	margin-right: 15px;
	
}
.previewText .whiteBox{
	color:#fff;
	padding:0;
	font-size:20px;
	font-weight:bold;
	height:32px;
	width:225px;
	background-color:#fff;
}
.previewText .whiteBox_{
	color:#fff;
	padding:0;
	font-size:28px;
	font-weight:bold;
	height:auto;
	width:calc(100% - 60px);
	margin-bottom: 2px;
}
.previewText .whiteBox_ span.subname{
	font-size: 0.6em;
    line-height: 1.2;
    display: block;
	margin-top: 12px;
}
.flow{
	padding-top:2px;
	text-indent: -9999px;
}
.flow div{
	padding:40px 10px;
	margin:0px auto;
	font-size:20px;
	font-weight:bold;
	height:50px;
	width:196px;
	background-repeat: no-repeat;
	background-position: left 30px center;
	background-size:150px 45px;
	color: #222;
	text-indent: -9999px;
	position: relative;
	margin-bottom: 10px;
}
.flow .flow01{
	background-image: url(../images/flow_01_.svg);
}
.flow .flow02{
	background-image: url(../images/flow_02.svg);
}
.flow .flow02_c{
	background-image: url(../images/flow_02_.svg);
}
.flow .flow03{
	background-image: url(../images/flow_03.svg);
}
.flow .flow03_c{
	background-image: url(../images/flow_03_.svg);
}
.flow .flow04{
	background-image: url(../images/flow_04.svg);
}
.flow .flow04_c{
	background-image: url(../images/flow_04_.svg);
}
.flow div::before{
	content: " ";
	position: absolute;
	width: 12px;
	height: 28px;
	top: calc(50% - 14px);
	left: 0;
	display: block;
	background-image: url("../images/arrow_white.svg");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}
.flow div.flow01::after{
	content: " ";
	position: absolute;
	width: calc(100% - 30px);
	height: 5px;
	bottom: 0;
	right: 0;
	display: block;
	background-color: #0038dd;
}
.flow div.flow01::after,.flow .flow02_c::after,.flow .flow03_c::after,.flow .flow04_c::after{
	content: " ";
	position: absolute;
	width: calc(100% - 30px);
	height: 5px;
	bottom: 0;
	right: 0;
	display: block;
	background-color: #0038dd;
}

.flow .flow01::before{
	background-image: url("../images/arrow_blue.svg");
}
.flow .flow02_c::before{
	background-image: url("../images/arrow_blue.svg");
}
.flow .flow03_c::before{
	background-image: url("../images/arrow_blue.svg");
}
.flow .flow04_c::before{
	background-image: url("../images/arrow_blue.svg");
}
.nenHead{
	display:flex;
	justify-content:space-between;
}
.nenHead p{
	width:24%;
	margin:0 0.5% 4px 0.5%;
}

.subArticle .nenHead p{
	font-size:18px;
	padding:10px;
	border:2px solid #c8d1ee;
	color:#000000;
	font-weight:bold;
	text-align:center;
	width:24%;
}
.subArticle .nenHead p.double{
	width: 49%;
}
.searchTable{
	width:100%;
}
.searchTable tbody tr{
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
	align-items: stretch;
	margin:0 0.5% 6px 0.5%;
}
.searchTable tbody tr:hover{
	opacity:0.8;
}

.searchTable.fiveLine td.double {
	width:49%;
}
.searchTable.fiveLine tbody tr td{
	width:19%;
	display: -webkit-flex;
	 display: flex;
}
.searchTable.threeLine tbody tr{
	flex-wrap: unset;
	gap: 1%;
	margin: 0 0.25% 6px 0.25%;
}
.searchTable.threeLine td.double {
	width:49%;
}
.searchTable.threeLine tbody tr td{
	width:24%;
	display: -webkit-flex;
	 display: flex;
}
.searchTable tbody tr td{
	width:24%;
	display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	 justify-content: center;
	 background:#80809B;
}
.searchTable.fiveLine tbody tr td{
}
.searchTable.fiveLine tbody tr td br{
	display:none;
}
.searchTable tbody tr td a{
	 display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	 justify-content: center;
	width:auto;
	padding:4px 10px;
	align-content:center;
	flex-wrap:wrap;	
	background:#80809B;
	text-decoration:none;
	font-size:0.9em;
	color:#fff;
	letter-spacing:0px;
	font-weight:bold;
	text-align:center;
	vertical-align:middle;
}

.searchTable.fiveLine tbody tr td a{
	flex-wrap:wrap;
	text-align:center;
}

.searchTable tbody tr td {
}

.searchTable a span{
	position:relative;
	padding-left:0px;
	font-weight:bold;
}
.searchTable a span:before{
	position:absolute;
	content:none;
	color:#fff;
	font-weight:bold;
	left:0;
}
.mainArea_Search .subArticle .resultArea{
	height:auto;
	font-size:18px;
	padding:51px 0 34px 30px;
	font-weight:bold;
	text-align:left;
	background-color:#E1251B;
	color:#fff;
	margin-bottom:30px;
	overflow:hidden;
}
.mainArea_Search .subArticle .resultArea .flex{
	display:flex;
	justify-content:space-between;
	margin-bottom:20px;
}
.resultArea .line{
	border-top: 2px solid #fff;
	width: 100%;
	margin: 20px 0;
}
.resultArea table{
	font-weight:bold;
}
.resultArea table tr{
	 display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: left; /* 横方向中央揃え（Safari用） */
	 justify-content: left;
	margin:10px 0;
	font-weight:bold;
	font-size:0.95em;
}
.resultArea table th{
	margin-right:50px;
	min-width:6em;
	display:inline-block;
	font-weight:bold;
}
.resultArea table td{
	font-weight:bold;
}
.resultArea table.tableLeft{
	width:50%;
}
.resultArea table.tableRight{
	width:50%;
}
.borderBox h1{
	text-align:left;
	margin-bottom:20px;
	font-size:1.3em;
	font-weight:bold;
	margin-top:20px;
	position:relative;
	background-repeat: no-repeat;
	background-position: left center;
	background-size:156px 69px;
	line-height:40px;
	height:48px;
	padding-left:20px;
	padding-bottom: 3px;
	background-image:none;
	border: 2px solid #c8d1ee;
}
.borderBox h1.battery{
	background-image: none;
}
.borderBox h1.oil{
	background-image: none;
}
.borderBox h1 span{
	font-weight:bold;
}
.detailTable{
	text-align:left;
	color:#000;
	margin-bottom:10px;
	clear:both;
	font-weight: 700;
	font-size: 1.25em;
	line-height: 1.25;
}
hr{
	margin-top: 15px;
	margin-bottom: 15px;
}
.detailTable hr{
	margin-top: 20px;
	margin-bottom: 20px;
}
.detailTable td span.size,.detailTable td span.diameter,.detailTable td span.price{
	font-weight: bold;
	line-height: 1.4;
}
.detailTable td span.note{
	font-size: 0.75em;
	display: block;
	margin-top: 20px;
	line-height: 1.25;
	color: #222;
}
.detailTable tr{
	padding:8px 0;
	display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items:flex-start; /* 縦方向上揃え */
	 -webkit-justify-content: left; /* 横方向中央揃え（Safari用） */
	 justify-content: left;
}
@media all and (-ms-high-contrast: none) {
  /* ここに書く */
.detailTable tr{
	padding:8px 0;
	display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items:flex-start; /* 縦方向上揃え */
	 -webkit-justify-content: left; /* 横方向中央揃え（Safari用） */
	 justify-content: left;
	 max-width:744px;
	 width:100%;
}
}

.detailTable tr.setting th{
	color: #000;
}
.detailTable tr.setting td{
	color:#0038dd;
}
.detailTable tr.setting a{
	color:#E1251B;
}

.detailTable th{
	font-weight:bold;
	min-width:12em;
	display:inline-block;
	margin-right:30px;
	position: relative;
}
.detailTable th.txtBlack{
	color:#000;
	text-align:center;
	width:100%;
	line-height:1.25em;
	font-size: 0.9em;
}
.detailTable td{
	font-weight:bold;
	position:relative;
	padding-left:1.5em;
	min-height:1em;
	color:#0038dd;
	display:block;
	width:100%;
}
.detailTable td:before{
	position:absolute;
	content:"";
	left:0;
	top:2px;
	width: 1em;
	height: 1em;
	background-image: url("../images/arrow_blue.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	color:#E1251B;
}
.detailTable a{
	color:#000;
	text-decoration:underline;
	font-weight:bold;
}
.detailTable span.point{
	display:inline-block;
	color:#fff;
	font-weight:bold;
	font-size:1.1em;
	margin-top:4px;
	padding:2px 6px 4px 6px;
	background-color:#01154a;
	margin-top: 8px;
}
.dataArea{
	margin-bottom:30px;
}
.dataArea p{
	padding:4px;
	text-align:left;
	font-weight:bold;
	float:left;
	min-width:12em;
	margin-right:30px;
	position:relative;
}

.article .dataArea img{
	margin-right: auto;
	margin-left: auto;
}
.article .dataArea p.name{
	font-weight:bold;
	font-size:1.1em;
	text-align: center;
	float:none;
}
.dataArea .flexArea{
	display:flex;
	justify-content:space-around;
	align-items:flex-start;
	flex-wrap:wrap;
}
.dataArea .flexArea .flexBox{
	width:48%;
	margin-bottom:30px;
}
.oilArea .flex{
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
	flex-wrap:wrap;
}
.oilArea .flex div{
	width:30%;
	margin: 20px;
}
.dataArea img{
	display:block;
	padding:3%;
	width:74%;
	border:none;
	margin-top:0px;
	margin-bottom:4px;
	margin-right: 30px;
	text-align:center;
}
.dataArea img:before{
	position:absolute;
	content:none;
	left:0;
	top:2px;
	width: 1em;
	height: 1em;
	background-image: url("../images/arrow_blue.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	color:#E1251B;
}
.dataArea a.itemImages{
	width:calc(100% - 14em);
	float:right;
	display:block;
	position:relative;
	padding-left:1.5em;
}
.dataArea a.itemImages:before{
	display:block;
	position:absolute;
	content:"＞";
	left:0;
	top:0;
	color:#E1251B;
	z-index:100;
	font-weight:bold;
}
.dataArea #text{
	font-size:1.4em;
}
.searchCarName{
	padding-top:30px;
}
.searchCarName span{
	margin-bottom:40px;
}
.dataArea p.redBox span{
	display: inline-block;
	padding: 10px 20px;
	border-radius: 6px;
	background-color: #C71215;
	font-weight: bold;
	color: #fff;
	font-size: 1.1em;
	margin-bottom: 30px;
}

/* itemList */

.itemList{
	display:flex;
	flex-wrap:wrap;
}
.itemList a{
	width:49%;
	padding:0 14px;
	min-height:60px;
	text-align:left;
	align-content:center;
	flex-wrap:wrap;
	margin:0.5%;
	background:#c8d1ee;
	text-decoration:none;
	font-size:1em;
	color:#000;
	letter-spacing:2px;
	font-weight:bold;
	 display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	 justify-content: center; 
}
.itemList a:hover{
	opacity:0.8;
}
.itemList a span{
	position:relative;
	padding-left:0px;
	font-weight:bold;
}
.itemList a span:before{
	position:absolute;
	content:none;
	color:#fff;
	font-weight:bold;
	left:0;
}
.itemImg img{
	width:100%;
	margin-bottom:40px
}
.itemImg2{
	text-align:left;
}
.itemImg2 img{
	width:100%;
}
.itemArea .left{
	float:left;
	margin-right:30px;
}
.itemArea .clear{
	clear:both;
}
.itemArea{
	text-align:left;
	width: 100%;
}
.itemArea .b30{
	margin-bottom:30px;
	text-align:center;
}

.alignCenter{
	text-align:center;
}
.itemArea .lead2{
	text-align:center;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.5;
}
.itemArea ul{
	padding-left:2em;
}
.itemArea ul li{
	margin-bottom:8px;
}
.itemArea img.bottom30{
	margin-bottom:30px;
}
.itemArea div.bottom30{
	margin-bottom:30px;
}
.itemArea .flex{
	display:flex;
	justify-content:space-around;
	align-items:flex-start;
	margin-bottom:30px;
}
.itemArea .flex2{
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.itemArea .flex2 img.icon{
	width:66px;
	height:66px;
	margin-bottom:10px;
}
.itemArea .flex2 div:first-child{
	width:66px;
}
.itemArea .flex2 div:last-child{
	padding-left:30px;
	width:calc(100% - 96px);
	font-size:0.9em;
}
.itemArea .flex2 .subTtl{
	margin-top:0;
	margin-bottom:8px;
	font-size:1em;
}
.itemArea p.mainCopy{
	border-radius:10px;
	padding:10px;
	margin-bottom:30px;
	font-size:1.2em;
	font-weight:bold;
	background-color:rgba(185,211,224,1.00);
	text-align:center;
}
.itemArea .flex img{
	width:48%;
}
.itemArea img{
	max-width:100%;
}
.itemArea p.subTtl{
	margin-bottom:20px;
	font-weight:bold;
	font-size:1.2em;
	text-decoration:underline;
	margin-top:50px;
}
.itemArea p.point{
	padding:8px;
	text-align:center;
	font-weight:bold;
	background-color:#EDDDBE;
}
.itemArea h3.h3Name{
	margin-bottom:30px;
}
.itemArea p{
	margin-bottom:20px;
}
.itemArea p.mb10{
	margin-top:30px;
	margin-bottom:10px;
	font-weight:bold;
}
.itemArea p.source{
	text-align:right;
	font-size:0.8em;
}
.column_3{
	display:flex;
	justify-content:space-around;
	font-size:0.95em;
	line-height:1.5;
}
.column_3_1-2{
	display:flex;
	justify-content:space-around;
	font-size:0.95em;
	line-height:1.5;
}
.column_3 div{
	width:30%;
	margin:0 1.5%;
}
.column_3_1-2 div.column_3-1{
	width:30%;
}
.column_3_1-2 div.column_3-2{
	width:60%;
}
.itemArea h4{
	color:#e1251b;
	margin-bottom:14px;
	font-weight:bold;
}
/* itemPage */
.oilArea{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top:30px;
	padding-bottom:30px;
	border-top:1px solid #999;
}
.oilArea.borderNone{
	border: none;
	padding-top: 0;
}
.oilArea .summary{
	display:block;
	margin-bottom:5px;
	font-size:1.1em;
	font-weight:bold;
}
.imgLeft{
	text-align: left;
    margin-left: 30px;
}
.oilArea .m10{
	margin-bottom:10px !important;
}
.oilArea .indent{
	padding-left:1em;
	margin-bottom:30px;
}
.oilArea .lineheight15{
	line-height:1.5;
}

.oilArea .ttl{
	width:240px;
	height:60px;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
	float:left;
	text-indent:-9999px;
}
.oilArea .ecoBlast{
	background-image: url(../images/logo_ECOBLAST_logo.svg);
}
.oilArea .cross{
	background-image: url(../images/logo_cross.svg);
}
.oilArea .DS{
	background-image: url(../images/logo_dual_suport.svg);
}
.oilArea .ECOclear{
	background-image: url(../images/logo_ecoClear.svg);
}
.oilArea .ecoMax{
	background-image: url(../images/logo_ecoMax.svg);
	width:300px;
	height:80px;
}
.oilArea .cleanDiesel{
	background-image: url(../images/logo_cleanDiesel.svg);
	width:500px;
	height:80px;
}
.oilArea .ecoroad{
	background-image: url(../images/logo_ecoroad.svg);
	width:300px;
	height:80px;
}
.oilArea .ecoguard{
	background-image: url(../images/logo_ecoguard.svg);
	width:300px;
	height:80px;
}
.oilArea .ecoKeep{
	background-image: url(../images/logo_ecoKeep.svg);
	width:300px;
	height:100px;
}
.oilArea .ecoDash{
	background-image: url(../images/logo_ecoDash.svg);
	width:300px;
	height:110px;
}
.oilArea .kraftEco{
	background-image: url(../images/logo_Kraft-ECO.jpg);
	width:300px;
	height:80px;
}
.oilArea .euroMax{
	background-image: url(../images/logo_euromax.svg);
	width:300px;
	height:80px;
}
.oilType{
	float:right;
	display:inline-block;
	border-top-left-radius: 80px 20px;
	border-top-right-radius: 80px 20px;
	border-bottom-right-radius: 80px 20px;
	border-bottom-left-radius: 80px 20px;
	background-color:#0c398d;
	padding:8px 48px;
	color:#fff;
	font-weight:bold;
	min-width:5em;
	text-align:center;
	margin:0 10px;
}
.type2{
	background-color:#BC9F39;
}
.type3{
	background-color:#B74557;
}
.lead{
	clear:both;
}
.T01{
	clear:both;
}
p.small{
	font-size:0.75em;
}
span.small{
	font-size:0.75em;
}
p.spec{
	font-size:0.80em;
	line-height:1.5;
}
.oilArea .img80{
	width:80%;
	margin:20px auto 40px auto;
	text-align:left;
}
.oilArea .img50{
	width:48%;
	margin:20px 0;
	text-align:left;
}
.oilArea .img25{
	width:25%;
	margin:10px 0;
	text-align:left;
}
.oilArea table{
	border:1px solid #999;
	padding:4px;
	border-collapse:collapse;
	margin-bottom:20px;
	font-size:0.9em;
	text-align:center;
}
.oilArea table.taLeft{
	text-align:left;
}
.oilArea table.taLeft td{
	padding:10px 20px;
}
.oilArea table tr{
	border-bottom:1px solid #999;
}
.oilArea table th{
	background-color:#DAE6F0;
}
.oilArea table th,.oilArea table td{
	padding:4px 20px;
	border-right:1px solid #999;
}
.oilArea table th,.oilArea table.pd10{
	margin-bottom:4px;
}
.oilArea p.alignLeft{
	text-align:left;
	font-size:0.7em;
}
.oilArea .gold{
	border: 2px solid #a49049;
	margin-bottom: 20px;
	font-size: 1.1em;
}
.oilArea .gold p:first-child{
	padding: 10px 15px;
	background-color: #a49049;
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;
}
.oilArea .gold p:last-child,.oilArea .blue p:last-child{
	padding: 10px 15px;
	margin-bottom: 10px;
}
.oilArea .blue{
	border: 2px solid #16167d;
	margin-bottom: 60px;
	font-size: 1.1em;
}
.oilArea .blue p:first-child{
	padding: 10px 15px;
	background-color: #16167d;
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;	
}
.oilArea table .head{
	padding: 6px;
	background-color: #354E6B;
	color: #fff;
	font-weight: bold;
}
.oilArea table.tl{
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 60px;
}
.oilArea table.tl .headGray{
	background-color: #eee;
}
.oilArea table.tl th{
	background-color: #e6f5f6;
}
.oilArea table.tl0 th, .oilArea table.tl0 td {
    padding: 4px 4px;
	    min-width: 5em;
}
.oilArea table th,.oilArea table.pd10 td{
	padding:4px 10px;
	border-right:1px solid #999;
}
.oilArea table th:last-child,.oilArea table td:last-child{
	border-right:none;
}
.hyou{
	margin-bottom: 80px;
}
.hyou table{
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: 0.85em;
}
.hyou table tr td{
	border-collapse: collapse;
}
.hyou table tr.gray{
	background-color: #F3F3F3;
}
.hyou table tr td{
	border: 1px solid #333;
	margin: 0;
	border-collapse: collapse;
}
.hyou h3{
	padding: 10px;
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: bold;
}
.hyou .alignRight{
	text-align: right;
	font-size: 0.8em;
	padding: 0;
	margin-top: 8px;
}
.osusume{
	margin-top:20px;
}
.osusume .head{
	padding:2px 10px;
	background-color:#E1251B;
	color:#fff;
	font-weight:bold;
}
.osusume div{
	display:flex;
	flex-wrap:wrap;
}
.osusume div p{
	width:49%;
	margin:0 1% 14px 0;
}
.osusume div p{
	min-height:48px;
	padding-left:96px;
	background-position:left top;
	background-repeat:no-repeat;
	background-size:88px 48px;
	font-size:0.95em;
	padding-top:4px;
}
.eco{
	background-image: url(../images/osusume_eco.svg);
	color:#187040;
}
.life{
	background-image: url(../images/osusume_life.svg);
	color:#2173BC;
}
.function{
	background-image: url(../images/osusume_func.svg);
	color:#C44D1F;
}
.economics span{
	color:#000;
}
.economics{
	background-image: url(../images/osusume_economics.svg);
	color:#8A4C4B;
}
p.lead{
	font-weight:bold;
}
p.subTtl{
	font-weight: bold;
	font-size: 1.3em;
}
p.T01,p.T02{
	font-weight:bold;
	font-size:1.2em;
}
p.T01{
	color:#E1251B;
}
p.T01 span{
	font-size:0.8em;
}
p.T02{
color:#0c398d;
}
p.textBox{
	border-radius:5px;
	padding:10px;
	margin:4px;
	color:#fff;
}
.boxGreen{
	background-color:#24A356;
}
.boxBlue{
	background-color:#1085BD;
}
.boxPurple{
	background-color:#9A40A3;
}
p.textBox span.strong{
	font-size:1.2em;
	font-weight:bold;
}
p.textBox:last-child{
	margin-bottom:20px;
}
.effect{
	display:flex;
	justify-content:space-between;
}
.effect div{
	color:#fff;
	width:48%;
	background-color:#E1251B;
	padding:10px;
}
.effect div p:first-child{
	text-align:center;
	font-weight:bold;
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px solid #fff;
}

.effect div p:last-child{
	font-size:0.9em;
	margin-bottom:0px;
}
.effect div p span{
	font-size:0.8em;
	font-weight:bold;
}
.marginTop20{
	margin-top:20px;
}
p.ecoKeepTtl{
	font-weight:bold;
	font-size:1.6em;
}
.oilArea img.floatLeft{
	float:left;
	margin-right:1%;
}
.topic{
	margin-bottom:10px;
}
.topic p:first-child{
	color:#E1251B;
	font-weight:bold;
	padding-left:1.5em;
	position:relative;
	margin-bottom:6px;
}
.topic p:first-child:before{
	position:absolute;
	content:"●";
	color:#E1251B;
	left:0;
	top:0;
}
.greenback{
	background-color:#0CA397;
	padding:12px;
	color:#fff;
	font-weight:bold;
	line-height:1.3;
	border-radius:10px;
}
.redBack{
	background-color:#e60012;
	padding:12px;
	color:#fff100;
	font-weight:bold;
	line-height:1.3;
	display:inline-block;
}
p.DH2 {
	line-height:28px;
}
.DH2 span{
	padding:4px 20px;
	background-color:#036eb8;
	font-weight:bold;
	border-radius:6px;
	display:inline-block;
	text-align:center;
	color:#fff;
	float:left;
	line-height:20px;
	margin-right:10px;
}
p.DH1 {
	line-height:28px;
}
.DH1 span{
	padding:4px 20px;
	background-color:#8fc31f;
	font-weight:bold;
	border-radius:6px;
	display:inline-block;
	text-align:center;
	color:#fff;
	float:left;
	line-height:20px;
	margin-right:10px;
}
p.fontBold{
	font-weight:bold;
}
span.fontBold{
	font-weight:bold;
}
p.intro{
	font-size:0.9em;
	font-weight:bold;
	padding-bottom:6px;
	border-bottom:3px solid #ACE5E1; 
}
p.intro span{
	display:inline-block;
	text-align:left;
	font-weight:normal;
	font-size:0.8em;
	line-height:1.2;
	margin-top:4px;
}
p.ecoKeepTtl{
	line-height:1.5;
	color:#0CA397;
}
.lead span{
	font-weight:bold;
}
span.textRed{
	color:#E1251B;
}
.subArticle p.comments{
	font-size:1em;
	font-weight:bold;
}
.subArticle .h3Title span{
	
}
.borderBottom{
	border-bottom:2px solid #fff;
}

.constTable th{
	font-weight:bold;
}
.caution{
	width:100%;
	margin:30px auto;
	padding:10px;
	border:2px solid #E1251B;
	font-size:0.9em;
}
.caution .ttl{
	font-weight:bold;
	border-bottom:2px solid #E1251B;
	padding-bottom:10px;
	font-size:1.1em;
}
.caution div{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
}
.caution div p:first-child{
	width:5%;
}
.caution div p:last-child{
	width:95%;
}

.subArticle a.btn{
	display:inline-block;
	clear:both;
	margin-top:40px;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	padding:6px 20px;
	background-color:#48A737;
	border-radius:6px;
}

.ecoDash .constTable .green{
	background-color:#C2EBC1;
}
.ecoDash .constTable th{
	font-weight:bold;
}
.ecoDash .constTable td:nth-child(2){
	background-color:#C2EBC1;
}
.ecoDash .constTable .makers td:nth-child(2){
	background-color:#fff;
}
.ecoDash .constTable .makers td:nth-child(3){
	background-color:#C2EBC1;
}
.ecoDash .caution{
	width:100%;
	margin:30px auto;
	padding:10px;
	border:2px solid #E1251B;
	font-size:0.9em;
}
.ecoDash .caution .ttl{
	font-weight:bold;
	border-bottom:2px solid #E1251B;
	padding-bottom:10px;
	font-size:1.1em;
}
.ecoDash .caution div{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
}
.ecoDash .caution div p:first-child{
	width:5%;
}
.ecoDash .caution div p:last-child{
	width:95%;
}
.ecoDash .T2{
	background-color:#fff;
	font-weight:bold;
	font-size:1em;
}
.ecoDash .T2 td{
	background-color:#fff !important;
}
.ecoDash .T2 td:nth-child(2){
	background-color:#C2EBC1;
}
.ecoDash .T2 td:first-child{
	width:14%;
}
.ecoDash .T2 td:nth-child(3){
	width:10%;
}
.subArticle a.btn{
	display:inline-block;
	clear:both;
	margin-top:40px;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	padding:6px 20px;
	background-color:#48A737;
	border-radius:6px;
}
.toForm{
	display:block;
	width:80%;
	margin:60px auto;
}
.toForm p{
	text-align:center;
	font-size:1em;
	margin-bottom:30px;
	font-weight:bold;
}
.toForm a{
	display:block;
	width:300px;
	padding:1.6em 8px;
	background-color:#9999AF;
	color:#fff;
	text-align:center;
	font-size:1em;
	cursor:pointer;
	font-weight:bold;
	position:relative;
	min-height:1em;
	margin: 10px auto;
}
.toForm a:before{
	display:block;
	content:none;
	position:absolute;
	background-image:url(../images/arrow_blue.svg);
	background-repeat:no-repeat;
	background-size:contain;
	height:1em;
	width:1em;
	top:calc(100% - 2.65em);
	right:20px;
	z-index:1;
}
.toForm a:hover{
	opacity:0.8;
}
h1.carname{
	font-size:18px;
	padding:10px 10px 12px 40px;
	margin-bottom:14px;
	border:2px solid #c8d1ee;
	font-weight:bold;
	text-align:center;
	margin-top:30px;
	position:relative;
	color: #000;
}


/* productList用*/
ul.ankerLink {
	display: flex;
	justify-content: space-around;
	list-style: none;
	width: 100%;
	margin-bottom: 70px;
}
ul.ankerLink li a {
	display: block;
	font-size: 1.2em;
	text-align: center;
	font-weight: bold;
	color: #000000;
	text-decoration: underline;
}
.productTableBox {
	margin-bottom: 80px;
}
.productTableBox .productTitle {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 40px;
}
.productTableBox .productTitle p.productImg {
	margin-right: 5%;
	width: 30%;
	align-self: flex-start;
}
.productTableBox .productTitle p.productImg img {
	border:1px solid #c8d1ee;
	width: 100%;
}
.productTableBox .productTitle p.name {
	text-align: left;
	width: 70%;
	margin-bottom: -1em;
}
.productTableBox .productTitle p.name strong {
	font-size: 1.2em;
	font-weight: bold;
	color: #000000;
}
.productTableBox .productTitle p.name span {
	display: block;
	text-align: right;
	margin-top: 1em;
}
.productTableBox .tableArea {
	margin-bottom: 40px;
}
.productTableBox .tableArea p {
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: left;
	font-weight: bold;
}
.productTableBox .tableArea table {
	width: 100%;
	margin: 0 0 20px;
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}
.productTableBox .tableArea table th {
	background-color: #f0f0f0;
	border: 1px solid #DEDEDE;
	text-align: center;
	vertical-align: middle;
	font-weight: normal;
	font-size: 13px;
	padding: 10px 0;
}
.productTableBox .tableArea table td {
	border: 1px solid #DEDEDE;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	padding: 10px 10px;
	word-wrap: break-word;
	line-height: 1.4;
}
@media screen and (max-width: 768px){
	.productTableBox .tableArea .table_cover {
		width: 100%;
		overflow-x: scroll;
	}
	.productTableBox .tableArea table {
		width: 960px;
		margin: 0 0 20px;
	}
}


@media screen and (max-width: 1080px) {
#wrapper {
	margin-right: auto;
	margin-left: auto;
	min-width: 100%;
	text-align: left;
	position: static;
	background-image: url("../images/mainImg.png");
	background-repeat: no-repeat;
	background-position: center top;
}
#wrapperSub {
	margin-right: auto;
	margin-left: auto;
	min-width: 100%;
	text-align: left;
	position: static;
	background-image: url(../images/sub_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
}

#headerContents {
	width: 100%;
	height:76px;
	position:static;
	z-index: 30;
}
.headerWrap{
	max-width:1080px;
	width:96%;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
}
.logoIcon h1{
	top:20px;
	left:20px;
	width:232px;
	height:32px;
	background-image: url("../images/logo_color.svg");
	background-repeat: no-repeat;
	background-position: center center;
	text-indent:-9999px;
}
.nav{
	color:#000;
	font-weight:bold;
	font-size:12px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.nav a{
	margin-right:0px;
	color:000;
	font-weight:bold;
	padding: 0 8px;
}
.nav a:visited{
	color:#000;
}

.logOut{
	display:block;
	position: relative;
	top:0px;
}
.logIn{
	display:block;
	position: relative;
	top:0px;
}
.logoutBtn, .loginBtn {
    padding: 0 4px 0 20px;
}

.searchArea{
	width:100%;
	margin:0 auto;
	display:flex;
}
.searchBox{
	width:48%;
	margin:0 1%;
	position:relative;
}

.topArticle {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.topArticle p.newsTtl {
    margin-left: 10px;
}
.topArticle div{
	margin-bottom: 10px;
}
#mainContents {
    min-height: calc(100vh - 252px);
}
.choice {
    min-height: calc( 100vh - 622px);
}
.mainArea{
	max-width:1024px;
	width:96%;
	margin:0 auto 40px auto;
	padding-top:30px;
}
.linksArea{
	max-width:1024px;
	width:94%;
	margin:0 auto;
}
	.mainArea p.exp{
		margin-left: 10px;
	}
p.exp{
	max-width:1024px;
	width:94%;
	margin-left: auto;
	margin-right: auto;
}
.linksArea p.ttl {
    max-width: 100%;
    margin: 0 0 0 2%;
}
.choiceLink1 {
    right: 156px;
}
.choiceLink2 {
    right: 0px;
}
.mainArea_Search{
	max-width:1024px;
	width:96%;
	margin:0 auto;
	padding-top:0px;
}
.subArticle {
    width: 74%;
    min-height: calc(100vh - 252px);
    padding: 30px 0px 80px 20px;
}
.subArticle.itemArea {
    width: 100%;
}
.mainArea_Search h1.makerSearchTtl{
	width:100%;
}
.flow div{
	height:50px;
	width:100%;
}
}
@media screen and (max-width: 1023px) {
.mainArea {
    max-width: 1024px;
    width: 96%;
    margin: 0 auto 40px;
    padding-top: 20px;
}
	.mainArea{
		text-align: center;
	}
.mainArea p.exp{
		margin-left: 10px;
	text-align: left;
	}
	.choiceArea {
    position: static;
	display: inline-block;
    margin: 20px auto;
}
}

@media screen and (max-width: 776px) {
#headerContents {
	width: 100%;
	height:auto;
	min-height:76px;
	position:static;
	z-index: 30;
}
.headerWrap{
	max-width:1080px;
	width:100%;
	margin:0 auto;
	display:block;
	position:relative;
	justify-content:space-between;
	padding-top:8px;
	padding-bottom:20px
}
.logoIcon h1{
	position:static;
	top:20px;
	left:20px;
	width:50%;
	height:32px;
	background-image: url("../images/logo_color.svg");
	background-repeat: no-repeat;
	background-position: center center;
	text-indent:-9999px;
	margin:0px auto;
}
.nav{
	position:static;
	width:100%;
	margin-top:20px;
	top:30px;
	left:100px;
	color:#fff;
	font-weight:bold;
	font-size:15px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	display:flex;
	justify-content:center;
	align-content:space-between;
}
.nav a{
	width:33%;
	float:none;
	margin-right:0;
	color:#000;
	font-weight:bold;
	justify-content: center;
	text-align:center;
	align-items: center;
}
.nav a:visited{
	color:#000;
}
.nav a:first-child::after{
	content: none;
}
.nav a::after {
    height: 100%;
}
.logoutBtn, .loginBtn {
    padding: 10px 4px 10px 15px;
	background-color: #0038dd;
	position: absolute;
	right:0px;
	top:0px;
	height: auto;font-size: 0.9em;
}
.logOut{
	display:block;
	margin-top:0px;
	color: #fff;
	padding-left: 25px;
}
.logIn{
	display:block;
	margin-top:0px;
	color: #fff;
	padding-left: 25px;
}
.searchArea{
	width:100%;
	margin:0 auto;
	display:block;
}
.searchBox{
	width:98%;
	margin:1%;
	display:block;
}

.titleArea{
	width:40%;
	margin-right:0;
	float:none;
	font-weight:bold;
}

.subArticle{
	width:100%;
	min-height:calc(100vh - 25%);
	float:none;
	padding-bottom:40px;
}

.mainArea_Search h1.makerSearchTtl{
	height:25px;
	width:100%;
	font-size:18px;
	padding:60px 0 60px 30px;
	background-image: url(../images/H_maker.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:50%;
	font-weight:bold;
	text-indent:-9999px;
	text-align:left;
}
.mainArea_Search h1.carSearchTtl{
	height:25px;
	width:100%;
	font-size:18px;
	padding:60px 0 60px 30px;
	background-image: url(../images/H_car.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:70%;
	font-weight:bold;
	text-indent:-9999px;
	text-align:left;
}

.flow div{
	padding:30px 10px 30px 10px;
	margin:1px 0 20px 0;
	font-size:20px;
	font-weight:bold;
	height:auto;
	width:100%;
	text-indent:-9999px;
	background-size: contain;
	background-position: center center;
}
.flow {
    padding-left: 30px;
	padding-right: 15px;
}
.flow div::before {
    left: -24px;
    display: block;
}
.flow div.flow01::after, .flow .flow02_c::after, .flow .flow03_c::after, .flow .flow04_c::after {
    content: " ";
    position: absolute;
    width: 100%;
}
.makerList a{
	width:49%;
}
.itemList a{
	width:49%;
	padding:14px;
}
	.previewArea{
		height: auto;
		padding: 20px 0 20px;
	}
.previewText{
	display:block;
	justify-content:space-around;
	margin:0 auto 0px auto;
	width: 46%;
}
.subArticle .resultFlex {
	display:block;
}
.mainArea_Search .subArticle .resultFlex .previewText{
    display: block;
    width: 96%;
    margin: 0 2% 10px 2%;
}
.mainArea_Search .subArticle .previewArea{
	height:auto;
	font-size:18px;
	padding:16px 0 2px 0px;
	font-weight:bold;
	text-align:left;
	background-color:#E1251B;
	color:#fff;
	margin-bottom:30px;
	display:block;
}
.previewText p.carName .whiteBox_{
	padding-left:6px;
}
.previewText p.makerName{
	color:#fff;
	padding:0;
	font-size:18px;
	font-weight:bold;
	height:auto;
	width:100%;
	text-align:left;
}
.previewText p.carName{
	color:#fff;
	padding:0;
	font-size:18px;
	font-weight:bold;
	height:auto;
	width:3em;
}
.previewText .whiteBox{
	color:#fff;
	padding:4px 0 0 2px;
	font-size:20px;
	font-weight:bold;
	height:25px;
	width:100%;
	background-color:#fff;
	margin-bottom:10px;
	margin-top:6px;
}
.previewText .whiteBox_{
	color:#fff;
	padding:0px 0 0 2px;
	font-size:24px;
	font-weight:bold;
	height:auto;
	width: calc(100% - 8em);
}
.subArticle .resultFlex .previewText:last-child .whiteBox_{
	padding-left:6px;
}
.subArticle {
    width: 74%;
    min-height: calc(100vh - 252px);
    padding: 20px 10px 40px 10px;
	font-size: 0.8em;
}
.subArticle.itemArea {
    width: 100%;
}

.mainArea_Search .subArticle .resultArea .flex{
	display:block;
	justify-content:space-between;
	margin-bottom:20px;
	padding-bottom:6px;
	border-bottom:2px solid #FFFFFF;
}
.mainArea_Search .subArticle .resultArea{
	height:auto;
	font-size:18px;
	padding:30px 0px 34px 0px;
	font-weight:bold;
	text-align:left;
	background-color:#E1251B;
	color:#fff;
	margin-bottom:30px;
	overflow:hidden;
}
.resultArea table{
	margin-left:0px;
	font-weight:bold;
	width:94%;
	margin:0 auto;
}
.resultArea table tr{
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: left; /* 横方向中央揃え（Safari用） */
	 justify-content: left;
	margin:10px 0 2px 0;
	font-weight:bold;
	font-size:0.95em;
	padding-bottom:10px;
	border-bottom:1px solid #eee;
}
.resultArea table th{
	margin-right:50px;
	min-width:6em;
	display:inline-block;
	font-weight:bold;
}
.resultArea table td{
	font-weight:bold;
}
.resultArea table.tableLeft{
	width:94%;
	margin:0 auto;
	float:none;
}
.resultArea table.tableRight{
	width:94%;
	margin:0 auto;
	float:none;
}
.borderBox h1{
	line-height:1.4em;
	height:auto;
}
#loginArea {
	overflow-y: scroll;
	padding: 0;
}
#loginArea {
}
#loginArea .loginBox .frame{
	margin: 30px auto;
}
#loginArea.syounin .loginBox .frame{
	margin:  30px auto;
}
#loginArea.syounin .loginBox {
    position: relative;
    top: 0px;
    overflow: auto;
    transform: none;
}
.itemArea .left{
	float:none;
	margin-right:0;
}
.dataArea .flexArea{
	display:block;
}
.dataArea .flexArea .flexBox{
	width:96%;
	margin:0 auto;
}

.tableWrap{
	width: 100%;
	overflow-x: scroll;
}
.hyou table{
	width: 100%;
	min-width: 1024px;
	white-space: nowrap;
}
.article h2{
		width: 96%;
		margin: 0 auto 30px auto;
	}
.links {
    margin: 20px auto 0 auto;
    max-width: 720px;
    width: 96%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.linksArea .flex {
    flex-direction: column;
}
.linksArea .flex p:last-child {
    font-size: 0.75em;
    color: #fff;
    text-indent: -1em;
    margin-top: 10px;
    margin-left: 2%;
    padding-left: calc(40px + 1em);
}
.searchBox {
    width: 92%;
    margin: 8px auto;
    display: block;
}
.toForm a {
    display: block;
    width: 80%;
    margin: 10px auto;
}
.subArticle .flex.product a{
	display: block;
	width: 47%;
	margin: 0 1.5% 50px;
	text-align: center;
	color: #000;
}
}
@media screen and (max-width: 580px) {
	.logoIcon h1{
	position:static;
	top:20px;
	left:20px;
	width:50%;
	height:32px;
	background-image: url("../images/logo_color.svg");
	background-repeat: no-repeat;
	background-position: center center;
	text-indent:-9999px;
	margin:0px auto 0 10px;
}

.articleArea{
	width:100%;
	height:auto;
	overflow:hidden;
	background-color:#fff;
	padding-top:14px;
	margin-top:80px;
}
.topArticle dl {
	height: auto;
	width: 100%;
	overflow:hidden;/* autoにすればスクロールバーがでる */
	padding-bottom:10px;
}

.article dt {
	clear: left;
	color: #000000;
	float: none;
	font-size: 1.1em;
	padding-top: 25px;
    padding-bottom: 25px;
	padding-right: 0px;
	width: 96%;
	margin:0 auto;
	font-weight: bold;
	text-align: left;
	border-top:none;
}
.article dd {
	float:none;
	width:96%;
    font-size: 0.95em;
	margin:0 auto;
    padding-bottom: 25px;
    padding-top: 20px;
	padding-left: 30px;
	border-top:1px solid #999999;
	text-align:left;
	background-image: url(../images/arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: 8px center ;
	background-size:18px 18px;
}
.article p{
	width:100%;
	margin:30px auto;
	padding:4px 6%;
	border-bottom:2px solid #444;
}
.article h2 {
	clear: left;
	color: #000000;
	float: none;
	font-size: 1.1em;
	padding-top: 14px;
    padding-bottom: 8px;
	padding-right: 0px;
	padding-left:34px;
	width: 100%;
	font-weight: bold;
	text-align: left;
	border-top:1px solid #999999;
	border-bottom:none;
	margin-right:30px;
	margin-bottom:6px;
	line-height:1.4em;
	background-image: url(../images/arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: 4px center;
	background-size:18px 18px;
}
.article p.newsJa{
	display:none;
}
.article p.newsTtl{
	background-color:#fff;
	margin:10px auto;
	float:none;
}

/* 承認 */
#loginArea.syounin .loginBox {
	position: relative;
	height:auto;
	min-height:100vh;
	overflow:auto;
	/* [disabled]-webkit-transform: translateY(-20%); */
}
#loginArea.syounin .loginBox .frame {
	max-width: 90vw;
	width:auto;
	height:auto;
	margin-top:20px;
	margin-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	background-color: #FFF;
	background-image: url(../images/red.svg);
	background-position:left top;
	background-size: 57px 47px;
	background-repeat:no-repeat;
	font-size:0.8em;
	overflow:auto;
}
#loginArea.syounin .loginBox .frame ul{
	font-size:0.7em;
	line-height:1.75;
}
#loginArea.syounin p.btn{
	width:220px;
	background-color:#80809B;
	padding:14px;
	margin:30px auto;
	font-size:1.2em;
	color:#fff;
	font-weight:bold;
	text-align:center;
	cursor:pointer;
}
#loginArea p.text16{
	font-size:16px;
	margin:12px;
	text-align:center;
}
.detailTable tr{
	padding:8px 0;
	display:block;
}
.detailTable th{
	width:100%;
	margin:2px auto;
}
.dataArea img {
    display: block;
    padding: 3%;
    width: 100%;
    border: none;
    margin-top: 0px;
    margin-bottom: 4px;
    margin-right: 0px;
    text-align: center;
}
.links{
	margin: 20px auto 0 auto;
	max-width: 720px;
	display: block;
	justify-content: space-between;
	align-items: flex-start;
}
.links a{
	display: block;
	width: 60%;
	height: auto;
	padding-top: 10%;
	margin: 20px auto 0 auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
	text-indent:-9999px;
}

.choice {
	padding-bottom:80px;
    background-position: center bottom;
    background-size: 140px 120px;
}
.choice .buttons {
    margin: 60px auto;
    flex-wrap: wrap;
}
.choice .buttons button {
	width:80%;
	margin:0 auto 20px auto;
}
.choiceLink {
    position: static;
	margin: 30px auto;
    display: block;
}
.choiceLink br{
	display:none;
}
.modalWrapper {
    position: absolute;
    top: 5%;
    left: 5%;
    transform: translate(-0%,-0%);
    width: 90%;
    max-width: 1000px;
    background-color: #fff;
    padding: 30px;
    overflow: scroll;
    height: 90%;
}
.choiceImg2 {
    background-image: none;
}
.modalContents .list {
    font-size: 1.1em;
    width: 100%;
}
.modalWrapper .flex div {
    width: 100%;
}
.subArticle .flex div{
	width:46%;
	margin:0 2% 30px 2%;
}
.subArticle .flex div div {
    margin:20px 0 0 0;
}
.makerLogo {
    clear: both;
    display: block;
    width: 70%;
    margin: 0 auto 40px auto;
}
.choice h2{
	line-height:1.5;
	font-size: 1.5em;
}
.choice p.marker {
	font-size:1em;
}
	.links{
		flex-direction: column;
	}
	.links a{
		width: 100%;
		margin-bottom: 8px;
		padding-top: 24%;
	}
.topArticle {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-height: 300px;
    flex-direction: column;
	padding: 20px
}
.topArticle dl {
    margin-left: 0px;
	overflow-y: visible;
}
	.topArticle p.newsTtl{
		background-position: left center;
	}
.titleArea {
    width: 24%;
}
.flow {
    padding-left: 14px;
}
.flow div::before {
    content: " ";
    position: absolute;
    width: 8px;
    height: 18px;
    top: calc(50% - 9px);
	left: -16px;
}
.searchTable tbody tr td a {
    font-size: 0.6em;
}
	.resultArea .resultFlex{
		flex-direction: column;
	}
.resultArea .resultFlex .previewText {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 0% 20px;
    max-width: 100%;
}
.resultArea .resultFlex .previewText:last-child {
	margin: 0 0% 0px;
}
.previewText p.makerName {
    width: 8em;
}
.previewText p.carName {
    width: 8em;
}
.dataArea .wheel .wheelList div {
    width: 100%;
    padding: 2%;
    border: 1px solid #ddd;
    text-align: left;
}
}
@media screen and (max-width: 340px) {
#loginArea .loginFormBox {
	height: 100%;
	width: 100%;
	padding: 12px 3%;
}
#loginArea.syounin .loginBox .frame ul{
	font-size:0.7em;
	line-height:1.5;
}
.searchBox:after{
	display:none;
}

.nenHead{
	display:block;
}
.subArticle .nenHead p{
	width:calc(100% - 10px);
	margin:0 auto;
	border-bottom:none;
}
.nenHead p:last-child{
	border-bottom:2px solid #999;
}
.searchTable tbody tr{
	display:block;
	width:100%;
}
.searchTable.fiveLine tbody tr td{
	width:100%;
	display: -webkit-flex;
	 display: flex;
}


.searchTable.fourLine tbody tr td{
	width:100%;
	display: -webkit-flex;
	 display: flex;
	 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	 align-items: center; /* 縦方向中央揃え */
	 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	 justify-content: center;
	 background:#80809B;
}
.toForm a{
	width:auto;
}
#loginArea.syounin p.btn{
	margin:12px auto;
}
#loginArea ul li{
	line-height:1.3;
}
}
