@charset "UTF-8";
/* =======================================
	carPage
======================================= */
/* ------------------------------------
 *        	タブメニュー
------------------------------------ */
.body_type {
  max-width: 980px;
  width: 92%;
  margin: 0 auto;
}

.tab_btn {
  display: none;
}

/* tab_list */
.tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin: 75px 0;
}
@media screen and (max-width: 1024px) {
  .tab_list {
    margin-top: 5.859375vw;
    margin-bottom: 5.859375vw;
  }
}
@media screen and (max-width: 768px) {
  .tab_list {
    margin: 30px 0;
  }
}
.tab_list__item {
  width: calc((100% - 60px) / 6);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .tab_list__item {
    width: calc((100% - 24px) / 3);
  }
}
.tab_list__item label {
  display: block;
  padding-bottom: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tab_list__item label {
    padding-bottom: 0;
  }
}
.tab_list__img {
  max-width: 100%;
  height: auto;
}
.tab_list__title {
  font-size: 1.5rem;
  color: #bd2827;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .tab_list__title {
    font-size: 1.2rem;
  }
}

#tab_btn01:checked ~ .tab_list #tab_item01,
#tab_btn02:checked ~ .tab_list #tab_item02,
#tab_btn03:checked ~ .tab_list #tab_item03,
#tab_btn04:checked ~ .tab_list #tab_item04,
#tab_btn05:checked ~ .tab_list #tab_item05,
#tab_btn06:checked ~ .tab_list #tab_item06 {
  position: relative;
}
#tab_btn01:checked ~ .tab_list #tab_item01::after,
#tab_btn02:checked ~ .tab_list #tab_item02::after,
#tab_btn03:checked ~ .tab_list #tab_item03::after,
#tab_btn04:checked ~ .tab_list #tab_item04::after,
#tab_btn05:checked ~ .tab_list #tab_item05::after,
#tab_btn06:checked ~ .tab_list #tab_item06::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #bd2827 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  #tab_btn01:checked ~ .tab_list #tab_item01::after,
  #tab_btn02:checked ~ .tab_list #tab_item02::after,
  #tab_btn03:checked ~ .tab_list #tab_item03::after,
  #tab_btn04:checked ~ .tab_list #tab_item04::after,
  #tab_btn05:checked ~ .tab_list #tab_item05::after,
  #tab_btn06:checked ~ .tab_list #tab_item06::after {
    content: none;
  }
}

/* tab_content */
.tab_content {
  display: none;
}

#tab_btn01:checked ~ .tab_content_wrap #tab_content01,
#tab_btn02:checked ~ .tab_content_wrap #tab_content02,
#tab_btn03:checked ~ .tab_content_wrap #tab_content03,
#tab_btn04:checked ~ .tab_content_wrap #tab_content04,
#tab_btn05:checked ~ .tab_content_wrap #tab_content05,
#tab_btn06:checked ~ .tab_content_wrap #tab_content06 {
  display: block;
}

.type_name {
  padding: 5px;
  background-color: #bd2827;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .type_name {
    font-size: 1.6rem;
  }
}

.type_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  padding: 15px;
  background-color: #f2f2f4;
}
@media screen and (max-width: 768px) {
  .type_point {
    margin-top: 15px;
  }
}
.type_point__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 42%;
  min-width: 380px;
  margin-right: 3%;
  background-color: #fff;
  -webkit-clip-path: polygon(88% 0, 100% 50%, 88% 100%, 0% 100%, 0% 0%);
          clip-path: polygon(88% 0, 100% 50%, 88% 100%, 0% 100%, 0% 0%);
}
@media screen and (max-width: 768px) {
  .type_point__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-width: 200px;
    width: auto;
    padding-left: 3%;
  }
}
@media screen and (max-width: 480px) {
  .type_point__title {
    min-width: 170px;
  }
}
.type_point__img {
  max-width: 100%;
  width: 148px;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .type_point__img {
    width: 120px;
  }
}
.type_point__catch {
  color: #bd2827;
  font-size: 1.9rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .type_point__catch {
    margin-top: -5px;
    padding-bottom: 10px;
    font-size: 1.4rem;
  }
}

.point_list {
  width: 55%;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .point_list {
    width: auto;
    font-size: 1.4rem;
  }
}
.point_list__item {
  padding-left: 3.6rem;
  text-indent: -3.6rem;
}
@media screen and (max-width: 768px) {
  .point_list__item {
    padding-left: 2.8rem;
    text-indent: -2.8rem;
  }
}
.point_list__item:not(:first-of-type) {
  margin-top: 10px;
}
.point_list__item::before {
  content: "";
  position: relative;
  top: 3px;
  display: inline-block;
  width: 36px;
  height: 27px;
  background: url(../img/car/icon_check@3x.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .point_list__item::before {
    width: 28px;
    height: 21px;
  }
}

.typeBox {
  overflow: hidden;
}
.typeBox:nth-child(2n) {
  background-color: #fff;
}

.h2Link {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .h2Link {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.h2Link i {
  margin-right: 10px;
}
.h2Link .car_search_link {
  background-color: #cb162c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  width: 150px;
  display: inline-block;
  border: 2px solid #cb162c;
}
.h2Link .car_search_link:hover {
  background-color: white;
  color: #cb162c;
  border: 2px solid #cb162c;
}

.h2Link .contact_link {
  background-color: #4d4d4d;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  width: 150px;
  display: inline-block;
  border: 2px solid #4d4d4d;
}
.h2Link .contact_link:hover {
  background-color: white;
  color: #4d4d4d;
  border: 2px solid #4d4d4d;
}

.h2Search {
  background-color: #cb162c;
  border: 2px solid #cb162c;
  font-size: 2rem;
  padding: 6px 24px 4px;
  border-radius: 20px;
  color: #fff;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.h2Search:hover {
  background-color: #fff;
  color: #cb162c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ================================================= *
 *        	carList
 * ================================================= */
.carList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.carList a {
  background: #fff;
  border: 1px solid #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px;
  color: #4d4d4d;
  margin: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.carList a:hover {
  border: 1px solid #e6e6e6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #111;
}

.carDetail {
  width: 174px;
  position: relative;
}

.carDetail img {
  width: 100%;
  border-radius: 3px;
}

.carDetail p.normal_type_tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  background-color: #4d4d4d;
  color: #fff;
  padding: 2px 6px;
}

.carTitle {
  text-align: center;
  margin: 5px 0;
  font-size: 1.1rem;
}

.caution {
  max-width: 700px;
  margin: 30px auto;
}

.caution img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .carList a {
    width: calc(33.33% - 20px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .carDetail {
    width: 100%;
  }
}
/*  店舗ランキング  */
.shop {
  background: #f9f9f7;
}

.shopContainer {
  width: 980px;
  margin: 20px auto 0;
  padding: 40px 0;
}

.shopContainer h2 {
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #4d4d4d;
  padding-bottom: 5px;
  margin: 0 auto 20px;
  width: 60%;
  min-width: 320px;
}

@media screen and (max-width: 1024px) {
  .shopContainer {
    width: 98%;
  }
}
/*各店舗*/
@media screen and (max-width: 640px) {
  .shopContainer .shop_info {
    max-width: 480px;
    width: 100%;
    margin: 0 auto 39px;
  }
}
/* お客様センター */
#categoryArea {
  margin: 30px auto 10px;
}

#categoryArea img {
  max-width: 100%;
  height: auto;
}

#categoryArea .categoryTitle {
  font-size: 2rem;
  margin-bottom: 0px;
}

#categoryArea .car_list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

#categoryArea .car_list_content {
  padding: 15px 0.5%;
  max-width: 24%;
  text-align: center;
}

#categoryArea .car_list_content img.rank_logo {
  height: 30px;
  width: inherit;
}

#categoryArea .car_list_content p.rank_text {
  line-height: 35px;
  font-weight: 600;
}

.car_list_content .categories_car_name {
  font-weight: 600;
  font-family: none;
  text-align: center;
  font-size: 1.2rem;
  color: #4d4d4d;
  padding: 4px;
  border-bottom: 1px solid #999;
}

.car_list_content .car_list_detail_link {
  clear: both;
  text-align: center;
  font-size: 1.2rem;
  position: relative;
  font-family: none;
}

.car_list_content .car_list_detail_link a {
  color: #fff;
  background-color: #ff8f00;
  border: 2px solid #ff8f00;
  font-weight: 600;
  padding: 8px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 1.5rem;
  padding: 4px;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.car_list_content .car_list_detail_link a:hover {
  color: #ff8f00;
  background-color: #fff;
  border: 2px solid #ff8f00;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#categoryArea .rank_date {
  font-size: 0.8rem;
  text-align: right;
  margin-top: 5px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  #categoryArea .car_list .spOnly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #categoryArea .car_list .spOnly .car_list_container {
    width: 50%;
    position: relative;
  }
  #categoryArea .car_list .spOnly .car_list_container .car_list_detail_container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
  }
  #categoryArea .car_list .spOnly h3 img.rank_logo {
    width: 30px;
    vertical-align: sub;
  }
  .car_list_content .car_list_detail_link {
    width: 80%;
    margin: 0 auto;
    min-width: 120px;
    padding: 4px 6px;
  }
  .car_list_content .car_list_detail_link a {
    font-size: 1.8rem;
  }
  #categoryArea {
    margin-bottom: 30px;
  }
  #categoryArea .car_list {
    display: inherit;
  }
  #categoryArea .car_list .spOnly:nth-of-type(2) {
    border-top: none;
  }
  #categoryArea .car_list_content {
    max-width: inherit;
    padding: 10px 0.5%;
    border-top: 1px dotted #ff8b99;
  }
  #categoryArea .car_list_content .car_list_car_image {
    float: left;
    padding-top: 3px;
  }
  .car_list_content .categories_car_name {
    font-size: 2rem;
    width: 80%;
    margin: 0 auto 10px;
    min-width: 120px;
    line-height: 22px;
    border-bottom: 1px solid #999;
    background-color: unset;
    color: unset;
  }
  .car_list_content .categories_car_name span.categories_car_name_rank {
    font-size: 1.6rem;
  }
  .car_list_content .categories_car_name span.categories_car_name_model {
    font-size: 1.2rem;
  }
}
/* MOBILE */
@media screen and (max-width: 720px) {
  #categoryArea .categoryTitle {
    font-size: 1.6rem;
  }
}
/* ================================================= *
 *        	article
 * ================================================= */
.blog_article {
  margin: 20px 0;
  background: white;
}

.blog_article .blog_article_wrap {
  max-width: 1012px;
  margin: auto;
  margin-bottom: 10px;
  border: 2px solid #ffd7d7;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #4d4d4d;
}

.blog_article .blog_article_wrap:hover {
  opacity: 0.9;
}

.blog_article .blog_article_wrap .article_thumbnail {
  width: 200px;
  margin-right: 20px;
}

.blog_article .blog_article_wrap .article_thumbnail img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

.blog_article .blog_article_wrap .article_comment {
  width: calc(100% - 220px);
}

.blog_article .blog_article_wrap .article_comment .article_title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog_article .blog_article_wrap:hover .article_comment .article_title {
  text-decoration: underline;
  color: #000;
}

.blog_article .blog_article_wrap .article_comment .article_description {
  line-height: 1.4;
}

.blog_article .blog_article_wrap:hover .article_comment .article_description {
  color: #000;
}

@media (max-width: 768px) {
  .blog_article {
    margin: 10px 0 0;
  }
  .blog_article .blog_article_wrap {
    padding: 5px;
    margin-bottom: unset;
  }
  .blog_article .blog_article_wrap .article_thumbnail {
    width: 28%;
    margin-right: 2%;
  }
  .blog_article .blog_article_wrap .article_comment {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog_article .blog_article_wrap .article_comment .article_title {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: unset;
  }
  .blog_article .blog_article_wrap .article_comment .article_description {
    display: none;
  }
}