@charset "UTF-8";
/* CSS Document */

/*表示、非表示指定*/
.pc_area,
.pc_tb_area {
  display:block;
}
.sp_area,
.tb_area,
.sp_tb_area {
  display:none;
}


.wrap_main {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/*sec01*/
.wrap_hero {
    display: block;
    float: none;
    position: relative;
    z-index: auto;
    margin: auto;
    padding: auto;
    max-width: 1920px;
}
.hero_img {
    z-index: 1;
}
.hero_txt {
    position: absolute;
    z-index: 3;
    /* ボックス配置指定 */
    top: 7%;
    left: 7%;
}
.hero_txt img {
    width: 148px;
    margin-top: 15px;
    margin-left: -5.6px;
}

@media all and (min-width: 1290px) {
    .hero_txt img {
        width: 185px;
        margin-top: 19px;
        margin-left: -8px;
    }
}

@media all and (min-width: 1920px) {
    .hero_txt img {
        width: 209px;
        margin-top: 12px;
        margin-left: -8px;
    }
}


/*sec02-04*/
.sec02,
.sec03,
.sec04  {
    max-width: 1920px;
    margin: auto;
    padding: auto;
}

.sec02,
.sec03 {
    background-color: #fff;
}

.wrap_present,
.wrap_car,
.wrap_dealer,
.wrap_footer {
    display: block;
    width: 90%;
    margin: auto;
}

@media all and (min-width: 1290px) {
    .wrap_present,
    .wrap_car,
    .wrap_dealer,
    .wrap_footer  {
        width: 85%;
    }
}
@media all and (min-width: 1440px) {
    .wrap_present,
    .wrap_car,
    .wrap_dealer,
    .wrap_footer  {
        width: 76%;
    }
}

/*sec02*/
.wrap_present {
    padding-top: 45px;
    text-align: center;
}

.wrap_present h3 {
    margin-top: 70px;
}

.present_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 75px;
    align-items: stretch;
}
.present_box > ul  {
    margin-top: 30px;
    margin-right: 6%;
    width: 47%;
    text-align: left;
}
.present_box > ul:last-child {
    margin-right: 0;
}

.hotel_img_box {
    display: grid;
    grid-gap: 2px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
}
.big_box {
    height: 100%;
    width: 100%;
    object-fit: cover;
    grid-column: 1/3;
}
.present_hotel_box h4 {
    margin-bottom: 10px;
}

/* liもflexにする */
/*.present_hotel_box > li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.present_hotel_box > a {
  display: block;
  width: 100%;
  margin-top: auto;
}*/

/*sec03*/
.wrap_car {
    padding-top: 90px;
    padding-bottom: 52px;
    text-align: center;
}
.wrap_car_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 55px;
}
.wrap_car_box > li {
    padding-bottom: 65px;
}
.wrap_car_box > li:last-child {
      padding-bottom: 55px;
}
.car_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.car_img {
    width: 49%;
    height: auto;
    object-fit: cover;
    margin-right: 4%;
}

/* sec04 */
.wrap_dealer {
    padding-top: 50px;
    text-align: center;
}
.dealer_box {
    margin-bottom: 30px;
}

.dealer_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    margin-top: 45px;
    max-width: 1024px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    }

.dealer_box > li {
    max-width: 300px;
    margin-right: auto;
}
.dealer_box > li:nth-of-type(3n) {
    margin-right: 0;
}
.dealer_box p,
.dealer_box h3 {
    margin-bottom: 0.25em;
}

/* sec03、04共通指定部分 */

.car_article_box {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    height: 100%;
    width: 47%;
}

.car_txt {
    text-align: left;
    width: 100%;
}
.dealer_txt {
    display: block;
    text-align: left;
    width: 100%;
}
.car_box ul,
.dealer_item_box ul{
  display: flex;
}
.dealer_item_box ul{
    display: flex;
    flex-wrap: wrap;
}
/* liもflexにする */
.car_box li,
.dealer_item_box li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;/* ←これ忘れがちなので注意 */
}
.car_box a,
.dealer_item_box a {
    display: block;
    width: 18em;
    height: 3.4em;
    margin-top: auto;/* ←これが重要！ */
}


.dealer_item_box a {
    display: block;
    height: 3.4em;
    margin-top: auto;
    max-width: 380px;
}









