@charset "UTF-8";

/* ================================================= *
 *        	Style
 * ================================================= */
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

@media screen and (max-width: 480px) {
    .BReak:before {
        display: inline;
        content: "\a";
        white-space: pre;
    }
}

/* ================================================= *
 *        	トップメイン
 * ================================================= */
.top_main {
    margin-bottom: 20px;
}

.top_main_visual {
    padding-top: 136px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 768px) {
    .top_main_visual {
        padding-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.top_main_visual__title {
    margin-right: 8px;
}

@media screen and (max-width: 768px) {
    .top_main_visual__title {
        margin-right: 0;
    }
}

.top_main_visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.top_main_img--sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .top_main_img--pc {
        display: none;
    }

    .top_main_img--sp {
        display: block;
    }
}

.top_main_information__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-direction: column-reverse;
}

@media screen and (max-width: 768px) {
    .top_main_information__list {
        gap: 10px;
        width: 92%;
        margin: 8px auto 0;
        flex-direction: column;
    }
}

.top_main_menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .top_main_menu {
        display: block;
    }
}

.top_main_menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top_main_menu__item:not(:last-of-type)::after {
    content: "/";
    display: inline-block;
    margin: 0 0.5em;
}

.top_main_menu__link {
    color: #bd2827;
    font-weight: bold;
}

/*今週のチラシエリア*/
#week_chirashi {
    background-color: snow;
}



/* ================================================= *
 *        	クルマを探す
 * ================================================= */
.find_car {
    padding: min(5%, 40px) 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f0f0ee;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .find_car {
        padding: 1px 0;
    }
}

.find_car__inner {
    max-width: 980px;
    margin: auto;
}

.find_car__inner .find_car_botton {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #bd2827;
    padding: 16px 12px;
    margin: 0 auto;
}

.find_car__inner .find_car_botton img {
    width: 25px;
    vertical-align: text-top;
    margin: 0 8px 0 0;
}

.find_car_inventory {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 16px 0;
}

.find_car_inventory .counts_wrap {
    display: inline-block;
}

.find_car_inventory .counts_wrap:first-child {
    margin: 0 16px 0 0;
}

.find_car_inventory .counts_wrap img {
    width: 20px;
    vertical-align: sub;
    margin: 0 4px 0 0;
}

.find_car_inventory__counter {
    display: inline-block;
    margin: 0 0.2em;
    color: #cd001b;
    font-size: 1.5em;
    font-weight: bold;
}

.find_car_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 8px auto;
}

.find_car_list__item {
    /* width: 100%; */
    width: 324px;
    position: relative;
    font-weight: bold;
    background-color: #d0000e;
    padding: 8px;
    margin: 0 8px;
}

.find_car_list__item:before {
    content: "";
    bottom: 2px;
    right: 2px;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    position: absolute;
    z-index: 0;
}

.find_car_list__item:hover {
    background-color: #f00;
}

.find_car_list__link {
    display: block;
    color: #fff;
    font-size: 26px;
    text-align: center;
}

.find_car_list__item .find_car_list__link span {
    display: block;
    font-size: 17px;
}

@media screen and (max-width: 768px) {
    .find_car_list__item {
        padding: 8px 0;
        margin: 0 4px;
    }

    .find_car_list__link {
        font-size: 18px;
    }

    .find_car_list__item .find_car_list__link span {
        font-size: 12px;
    }
}

/* ------------------------------------
 *        	モーダルウィンドウ
------------------------------------ */
#find_car_tab {
    max-width: 980px;
    width: 92%;
    margin: auto;
    margin-top: 90px;
}

#find_car_tab .mfp-close {
    display: none;
}

.tab_btn {
    display: none;
}

.tab_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 15px auto 0;
}

.tab_list__item {
    width: 25%;
    padding: 12px 0;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    background-color: #fff;
    color: #4d4d4d;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .tab_list__item {
        width: 50%;
        border: none;
    }

    .tab_list__item:nth-child(even) {
        border-left: 0.8px solid #cacaca;
    }

    .tab_list__item:nth-child(3),
    .tab_list__item:nth-child(4) {
        border-top: 0.8px solid #cacaca;
    }
}

.tab_list__item:not(:first-of-type) {
    border-left: 0.8px solid #cacaca;
}

@media screen and (max-width: 768px) {
    .tab_list__item:not(:first-of-type) {
        border: none;
    }
}

.tab_list__item:hover {
    border-color: #bd2827;
    background-color: #bd2827;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#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 {
    border-color: #bd2827;
    background-color: #bd2827;
    color: #fff;
}

/* ------------------------------------
 *        	tab_content
------------------------------------ */
.tab_content {
    display: none;
    width: 100%;
    margin-top: 2px;
    padding: 3.6% 2.85%;
    background-color: #f0f0ee;
    clear: both;
    overflow: hidden;
}

#tab_btn01:checked ~ .tab_content_wrap #tab01_content,
#tab_btn02:checked ~ .tab_content_wrap #tab02_content,
#tab_btn03:checked ~ .tab_content_wrap #tab03_content,
#tab_btn04:checked ~ .tab_content_wrap #tab04_content {
    display: block;
}

/* ------------------------------------
 *        	tab_content_detail
------------------------------------ */
.tab_content_detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.maker .tab_content_detail {
    gap: 15px;
    max-width: 680px;
    margin: auto;
}

.body_type .tab_content_detail {
    gap: 20px;
    max-width: 680px;
    margin: auto;
}

.price_range .tab_content_detail {
    gap: 20px;
}

.maker .tab_content_detail__item {
    width: calc((100% - 45px) / 4);
}

.car_model .tab_content_detail__item {
    padding: 1% 2% 2%;
    border-radius: 16px;
    background-color: #fff;
}

.body_type .tab_content_detail__item {
    width: calc((100% - 40px) / 3);
}

.price_range .tab_content_detail__item {
    width: calc((100% - 60px) / 4);
}

@media screen and (max-width: 768px) {
    .price_range .tab_content_detail__item {
        width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 480px) {
    .price_range .tab_content_detail__item {
        width: 100%;
    }
}

.tab_content_detail__link {
    display: block;
}

.tab_content_detail__img {
    max-width: 100%;
    height: auto;
}

.maker .tab_content_detail__img,
.body_type .tab_content_detail__img {
    border-radius: 2px;
}

.body_type .tab_content_detail__img {
    vertical-align: bottom;
}

.tab_content_detail__title {
    color: #333;
    font-size: 1.5rem;
    text-align: center;
}

.car_model .tab_content_detail__title {
    margin-top: 10px;
    text-align: left;
}

.car_model .tab_content_detail__title:hover {
    color: #bd2827;
    font-weight: bold;
}

.body_type .tab_content_detail__title {
    padding: 5px;
    background-color: #fff;
    color: #bd2827;
    font-weight: bold;
}

.price_range .tab_content_detail__title {
    padding: 10px 20px;
    background-color: #fff;
    color: #bd2827;
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .price_range .tab_content_detail__title {
        font-size: 1.6rem;
    }
}

.price_range .tab_content_detail__title:hover {
    background-color: #bd2827;
    color: #fff;
}

@media screen and (max-width: 480px) {
    .tab_content_detail__title {
        font-size: 1.2rem;
    }
}

/* ------------------------------------
 *        	tab_content_detail column3だけ特殊なデザインに変更
------------------------------------ */
.car_model .column3 {
    display: block;
    overflow-y: scroll;
}

.car_model .tab_content_detail {
    display: block;
    max-width: 924px;
    height: 500px;
    margin: 0 auto;
}

.car_model .tab_content_detail .column3_content_wrap {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px 24px;
}

.car_model .tab_content_detail__item {
    width: 195px;
}

.car_model .tab_content_detail__item li {
    padding: 6px 0;
}

.car_model .tab_content_detail .group_title {
    font-size: 2.0rem;
    font-weight: bold;
}

.car_model .tab_content_detail .group_title::first-letter {
    color: #c5001c;
    font-size: 2.5rem;
}

.car_model .tab_content_detail__item .tab_content_detail__title {
    font-size: 1.8rem;
    padding: 0 8px;
    margin: 0;
}

@media screen and (max-width: 1078px) {
    .car_model .tab_content_detail {
        max-width: 700px;
    }
}

@media screen and (max-width: 807px) {
    .car_model .tab_content_detail {
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .car_model .tab_content_detail {
        max-height: 350px;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .car_model .tab_content_detail .column3_content_wrap {
        display: block;
        margin: 0 0 24px;
    }

    .car_model .tab_content_detail__item {
        width: 90%;
        padding: 0 3% 0;
        margin: auto;
    }

    .car_model .tab_content_detail__item li {
        display: inline-block;
        padding: 6px 0;
        margin: 0 8px 8px;
    }

    .car_model .tab_content_detail__item .tab_content_detail__title {
        border-bottom: solid;
        border-color: #c5001c;
        width: fit-content;
    }
}

/* ================================================= *
 *        	売れ筋ランキング
 * ================================================= */
.selling_rankings {
    padding: 40px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .selling_rankings {
        /* padding: 40px 0; */
        padding: 20px 0;
    }
}

.selling_rankings__inner {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.selling_rankings__title {
    color: #cd001b;
    font-size: 2.8rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .selling_rankings__title {
        font-size: 2.4rem;
    }
}

/* ------------------------------------
 *        	ランキング
------------------------------------ */
#categoryArea .car_list_content {
    display: flex;
    flex-direction: column;
    padding: 15px 0.5%;
    max-width: 24%;
    text-align: center;
}

#categoryArea {
    margin: 30px auto 10px;
}

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

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

#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;
}

#categoryArea .car_background_wrap {
    position: relative;
    background-color: #fff96e;
    border-radius: 5px;
}

#categoryArea .car_background_wrap .car_wrap {
    position: relative;
    top: -20px;
    background-color: #fff;
    padding: 0 0 8px;
    margin: 0 12px -8px;
}

#categoryArea .car_background_wrap .car_wrap .appeal {
    color: #222;
    font-weight: 700;
    text-align: left;
    padding: 0 8px;
}

#categoryArea .car_list_content img.rank_logo {
    position: inherit;
    top: -30px;
    height: 45px;
    width: inherit;
}

#categoryArea .car_background_wrap .car_stock_wrap {
    padding: 0 0 24px;
}

#categoryArea .car_background_wrap .car_stock_wrap .car_stock {
    font-weight: 600;
    color: #4d4d4d;
    padding: 0;
    margin:0 0 4px 0;
}

#categoryArea .car_background_wrap .car_stock_wrap .car_stock_now {
    text-align: right;
    font-size: 32px;
    font-weight: 1000;
    color: #cf001b;
    background-color: #fff;
    border: 2px solid;
    border-color: #000;
    border-radius: 5px;
    margin: 0 16px;
}

#categoryArea .car_background_wrap .car_stock_wrap .car_stock_unit {
    font-size: 2rem;
    font-weight: 700;
    color: #4d4d4d;
    margin: 0 8px 0 16px;
}

.car_list_content .categories_car_name {
    font-weight: bold;
    font-family: none;
    text-align: center;
    font-size: 2rem;
    color: #4d4d4d;
    background-color: #ffd000;
    border-radius: 5px 5px 0 0;
    padding: 4px;
}

.sp_line {
    display: none;
}

.car_list_content .car_list_detail_link {
    clear: both;
    text-align: center;
    font-size: 1.2rem;
    font-family: none;
    margin-top: auto;
}

.car_list_content .car_list_detail_link a {
    color: #fff;
    background-color: #cf001b;
    border: 2px solid #f00;
    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);
    margin: 15px 20px 0;
}

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

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

.car_list_content .car_list_detail_link a span {
    position: absolute;
    font-size: 2rem;
    top: 9px;
    width: 22px;
    height: 22px;
    right: 15px;
    background: white;
    color: #cb162c;
    border-radius: 10px;
    line-height: 25px;
}

#categoryArea .bottom_img {
    display: block;
    margin: auto;
    padding-top: 20px;
}

@media only screen and (min-width: 928px) {
    .hidden {
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media only screen and (max-width: 928px) {


    #categoryArea .car_list .car_list_content .car_list_container {
        width: 50%;
        position: relative;
    }

    #categoryArea .car_list .car_list_content .car_list_container .car_list_detail_container {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }

    #categoryArea .car_list .car_list_content h3 img.rank_logo {
        width: 30px;
        height: 30px;
        vertical-align: sub;
    }

    .car_list_content .car_list_detail_link {
        width: 80%;
        max-width: 500px;
        margin: 8px auto;
        min-width: 120px;
        padding: 4px 6px;
    }

    .car_list_content .categories_car_name {
        font-size: 2em;
    }

    .car_list_content .car_list_detail_link a {
        font-size: 1.8rem;
        margin: 0;
    }

    #categoryArea {
        /* margin-bottom: 30px; */
        margin: 0;
    }

    #categoryArea img {
        max-width: 50%;
    }

    #categoryArea .car_list {
        display: inherit;
    }

    #categoryArea .car_list .car_list_content:nth-of-type(2) {
        border-top: none;
    }

    #categoryArea .car_list_content {
        max-width: inherit;
        padding: 15px 0.5%;
        border-bottom: 1px dotted #ff8b99;
    }

    #categoryArea .car_background_wrap {
        margin-top: 20px;
    }

    #categoryArea .car_background_wrap .car_stock_wrap {
        font-size: 2em;
        margin: 8px 0 0;
    }

    #categoryArea .car_background_wrap .car_wrap {
        padding: 0 0 28px;
    }

    #categoryArea .car_background_wrap .car_wrap .appeal {
        text-align: center;
        font-size: 1.1em;
        margin: 0 12px -18px;
    }

    #categoryArea .car_background_wrap .car_stock_wrap .car_stock_now {
        text-align: center;
        max-width: 500px;
        width: 70%;
        margin: auto;
    }

    .car_list_content .list_detail_top {
        display: table;
        height: 100%;
        width: 49%;
        padding-left: 1%;
    }

    .car_list_content .car_list_car_year {
        width: 100%;
    }

    .car_list_content .car_color {
        position: absolute;
    }

    .car_list_content .car_list_car_price {
        top: 10px;
    }

    .sp_line {
        display: block;
    }

    .car_list_content .list_detail_bottom {
        display: inherit;
        position: relative;
        top: 8px;
    }

    .car_list_content .list_detail_bottom dt,
    .car_list_content .list_detail_bottom .right dt {
        margin-left: 1%;
        width: 19%;
    }

    .car_list_content .list_detail_bottom dd {
        width: 30%;
    }

    .car_list_content .car_list_detail_link a span {
        display: none;
    }

    .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;
    }
}

@media screen and (max-width: 928px) {
    #categoryArea .categoryTitle {
        font-size: 1.6rem;
    }
}

#categoryArea .car_list {
    margin-top: 15px;
}

/* ================================================= *
 *        	おすすめ情報
 * ================================================= */
.recommended_information {
    padding: 80px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f8f8f6;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .recommended_information {
        padding: 40px 0;
    }
}

.recommended_information__inner {
    max-width: 980px;
    width: 92%;
    margin: auto;
}

.recommended_information__title {
    color: #cd001b;
    font-size: 2.8rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .recommended_information__title {
        font-size: 2.4rem;
    }
}

.recommended_information_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

@media screen and (max-width: 480px) {
    .recommended_information_list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 30px;
    }
}

.recommended_information_list__item {
    width: calc((100% - 20px) / 3);
}

@media screen and (max-width: 480px) {
    .recommended_information_list__item {
        width: 100%;
    }
}

.recommended_information_list__link {
    display: block;
}

.recommended_information_list__img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* 20230518 トップメインヴィジュアルエリア改修 */
@media screen and (min-width: 769px) {
    .top_main_img--pc {
        width: 69.84375%;
        margin-right: 10px;
    }
    .top_main_information {
        width: 29.375%;
    }
    .top_main_information__list {
        justify-content: space-between;
        height: 100%;
    }
}

/* 20230717 モーダル調整 */
#find_car_tab {
    position: relative;
}
#find_car_tab .mfp-close {
    display: block;
}
.tab_content {
    padding-top: 45px;
}

/* ================================================= *
 *        	20230720 店舗別在庫検索
 * ================================================= */
.store_inventory {
  padding: min(5%, 60px) 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f0f0ee;
  text-align: center;
}
.store_inventory__inner {
  max-width: 980px;
  width: 92%;
  margin: auto;
}
.store_inventory__title {
  color: #cd001b;
  font-size: 2.8rem;
  font-weight: bold;
}
.store_inventory__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}

.store_inventory_item {
  width: 310px;
  padding: 18px;
  border: 1px solid #d8d8da;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .store_inventory_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.store_inventory_item__title {
  color: #cb162c;
  font-weight: bold;
}
.store_inventory_item__text {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: bold;
}
.store_inventory_item__img {
  max-width: 374px;
  width: 100%;
  height: 176px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.store_inventory_item__btn {
  position: relative;
  display: block;
  max-width: 374px;
  width: 100%;
  margin: 12px auto 0;
  padding: 10px;
  border-radius: 4px;
  background-color: #bd2827;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.store_inventory_item__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 24px;
  background: url(../img/top/search_icon@3x.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .store_inventory_item__btn::before {
    left: 20px;
    width: 14px;
    height: 18px;
  }
}

/* ================================================= *
 *        	20240207 トップKVバナースライド設置
 * ================================================= */
@media screen and (max-width: 768px) {
    .top_main_information__list {
        /*ロード時に一瞬縦並びになるのを解決*/
        opacity: 0;
        -webkit-transition: opacity 0.1s linear;
        transition: opacity 0.1s linear;
    }
    .top_main_information__list.slick-initialized {
        opacity: 1;
    }
    .top_main_information__list .slick-prev {
        left: -30px;
    }
    .top_main_information__list .slick-prev::before {
        content: "\f137";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }
    .top_main_information__list .slick-next {
        right: -30px;
    }
    .top_main_information__list .slick-next::before {
        content: "\f138";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }
    /* 20240507 */
    .top_main_information > .top_main_information__list > .slick-list {
        overflow: visible;
    }
    /* 20240507 */
    html, body {
        overflow-x: hidden;
    }
}

/* ================================================= *
 *        	202408028 トップKV下バナー設置
 * ================================================= */
.top_main {
    /* バナー上部のマージン調整 */
    margin-bottom: 10px;
}
.campaign_news_bnr {
    width: min(92%, 720px);
    margin: 30px auto;
}
@media screen and (max-width: 768px) {
    .campaign_news_bnr {
        margin: 0 auto 10px;
    }
}
.campaign_news_bnr__img {
    max-width: 100%;
    height: auto;
}
.campaign_news_bnr__link {
    display: block;
    width: min(100%, 420px);
    margin-inline: auto;
}
@media screen and (max-width: 768px) {
    .campaign_news_bnr__link {
        width: 100%;
    }
}
