@charset "utf-8";

/* default style */
#content .block {
  width: 100%;
  max-width: 980px;
}

/* logo */
.match_list .header_logo {
  font-size: 36px;
  padding: 10px;
  color: #fff;
  background-color: #000;
  font-weight: bold;
}
/* new_ect */
.match_list.new_ect .header_logo {
  vertical-align: bottom;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
.match_list.new_ect .header_logo .main_logo {
  width: 240px;
}
.match_list.new_ect .header_logo .sub_logo {
  width: 300px;
}
/* ultrasuede */
.match_list.ultrasuede .header_logo {
  vertical-align: bottom;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}
.match_list.ultrasuede .header_logo .main_logo {
  width: 240px;
}


/* 商品名 */
.match_list .item_title {
  padding: 10px;
  font-size: 30px;
  margin-top: 25px;
}

/*  */
.description {
  padding: 10px;
  margin-top: 20px;
}

/* メーカー名 */
.match_list .maker_title {
  padding: 2px 10px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  margin-top: 3px;
  cursor: pointer;
}
.match_list .maker_title:first-of-type {
  margin-top: 25px;
}
.match_list .maker_title i {
  font-size: 30px;
  vertical-align: middle;
  color: #999;
}
.match_list .maker_title img {
  max-width: 340px;
  width: 100%;
}

/* 車種名 */
.match_list .car_name {
  position: relative;
  padding: 2px 5px 2px 40px;
  background-color: #E30A06;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}
.match_list .car_name::before{
  content: '▼';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY( -50% );
  font-size: 16px;
}

/* 車種リスト */
.match_list .item_area {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 10px;
}

/* 車種アイテム */
.match_list .item_area .item {
  text-align: center;
  border-radius: 10px;
  border: 1px solid #5D5B5C;
  padding: 10px;
  margin-right: 1%;
  margin-bottom: 8px;
  width: 19%;
  min-width: 180px;
}
.match_list .item_area .item a {
  text-decoration: none;
  color: #333;
}
.match_list .item_area .item .age {
  border-radius: 6px;
  border: 1px solid #5D5B5C;
  padding: 3px 10px;
  display: inline;
}
.match_list .item_area .item img {
  width: 100%;
  margin-top: 10px;
}
/* mouseover */
.match_list .item_area .item:hover {
  border-color: #E30A06;
}
.match_list .item_area .item:hover a {
  color: #fff;
}
.match_list .item_area .item:hover .age {
  background-color: #E30A06;
  border-color: #E30A06;
}

/* アコーディオン */
.accordion {
  display: none;
  padding-bottom: 100px;
}

/* to_pagetop */
.to_pagetop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	background-color: #C6C6C6;
	cursor: pointer;
}
.to_pagetop i {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX( -50% ) translateY( -50% );
	font-size: 20px;
}


@media screen and (min-width: 1001px) {

}
@media screen and (max-width: 1000px) {

}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 480px) {
  .match_list.new_ect .header_logo .main_logo {
    width: 200px;
  }
  .match_list.new_ect .header_logo .sub_logo  {
    margin-top: 10px;
    width: 200px;
  }
  .match_list.ultrasuede .header_logo .main_logo {
    width: 200px;
  }
  .match_list .item_title {
    font-size: 17px;
    margin-top: 15px;
  }
  .match_list .maker_title {
    /* margin-top: 40px; */
  }
  .match_list .maker_title:first-of-type {
    margin-top: 15px;
  }
  .match_list .maker_title img {
    max-width: 250px;
  }
  .description {
    margin-top: 5px;
  }
  .match_list .car_name {
    margin-top: 5px;
  }
  .match_list .item_area .item {
    width: 49%;
    min-width: 100px;
  }
  .match_list .item_area .item .age {
    
  }
  .accordion {
    display: none;
    padding-bottom: 50px;
  }
  
}
@media screen and (max-width: 320px) {

}