@charset "UTF-8";
.mb {
  margin-bottom: min(25/768*100vw,25px);
}

/*======================
base
====================== */
* {
  min-inline-size: 0;
}

@media screen and (max-width: 834px) {
  div > p {
    font-size: inherit;
  }
}
ul {
  list-style-type: none;
}

picture {
  display: block;
  line-height: 0;
}

footer {
  margin-top: 0;
}

/*======================
汎用クラス
====================== */
.pcView {
  display: block;
}
@media screen and (max-width: 768px) {
  .pcView {
    display: none;
  }
}

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

.dib {
  display: inline-block;
}

/*======================
メイン
====================== */
.main {
  margin-bottom: 0;
}

/*======================
メインビジュアル
====================== */
.mainvl {
  aspect-ratio: 2428/1100;
  margin: 0;
  line-height: 0;
}
.mainvl picture {
  display: block;
}
@media screen and (max-width:480px) {
  .mainvl {
    aspect-ratio: 1/1;
  }
}

/*======================
セクション・コンテンツ
====================== */
.section {
  width: min(90%, 1250px);
  margin: 0 auto;
}
.section:not(:first-child) {
  margin-top: 4em;
}
.mainvl ~ .section:not(:first-child) {
  margin-top: 0;
}
.section:not(:last-child) {
  margin-bottom: 4em;
}
.section:not(:last-child).--mgb0 {
  margin-bottom: 0;
}
.section.--w100 {
  width: 100%;
}
.section.--mgb0 {
  margin-bottom: 0;
}

.block:not(:last-child) {
  margin-bottom: 4em;
}
.block picture {
  display: block;
}
.block picture img {
  display: block;
}

/*======================
リンク・ボタン
====================== */
/* 赤・青ボタンの親要素 */
.btnRedWrap,
.btnBlueWrap,
.btnGoldWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5333333333em;
  width: min(100%, 1125px);
  margin: 0 auto;
  font-weight: normal;
}
.--w100 .btnRedWrap,
.--w100 .btnBlueWrap,
.--w100 .btnGoldWrap {
  width: 90%;
}
.btnRedWrap:not(:first-child),
.btnBlueWrap:not(:first-child),
.btnGoldWrap:not(:first-child) {
  margin-top: min(60/768*100vw,60px);
}
.btnRedWrap:not(:last-child),
.btnBlueWrap:not(:last-child),
.btnGoldWrap:not(:last-child) {
  margin-bottom: min(60/768*100vw,60px);
}
@media screen and (max-width:1080px) {
  .btnRedWrap,
  .btnBlueWrap,
  .btnGoldWrap {
    -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;
    gap: 1.5em;
    font-size: inherit;
  }
  .--w100 .btnRedWrap,
  .--w100 .btnBlueWrap,
  .--w100 .btnGoldWrap {
    width: 80%;
  }
  .btnRedWrap .btnRed,
  .btnRedWrap .btnBlue,
  .btnBlueWrap .btnRed,
  .btnBlueWrap .btnBlue,
  .btnGoldWrap .btnRed,
  .btnGoldWrap .btnBlue {
    width: 100%;
  }
}

/* 赤・青ボタン */
.btnRed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(90%, 575px);
  padding: 0.85em 3em;
  border-radius: 3em;
  background: #b00;
  font-size: clamp(1.1em, 2vw, 20px);
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  position: relative;
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.btnRed:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.btnRed:hover picture, .btnRed:hover img {
  opacity: 1;
}
.btnRed > span {
  font-size: inherit;
}
.btnRed.--shop > span, .btnRed.--car > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6em;
}
.btnRed.--shop > span::before, .btnRed.--car > span::before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 20/22;
  background: url(../btn-shop.png) center no-repeat;
  background-size: contain;
}
.btnRed.--car > span::before {
  width: 1.4em;
  aspect-ratio: 28/14;
  margin-top: 0.2em;
  background-image: url(../btn-sijo.png);
}
.btnRed.--more::after {
  content: "";
  width: 13px;
  aspect-ratio: 13/20;
  background: url(img/arrow_more.webp) center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 50%;
  right: 1.3866666667em;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btnRed.--more:hover::after {
  right: calc(1.3866666667em - 5px);
}
@media screen and (max-width:768px) {
  .btnRed.--more::after {
    width: 10px;
  }
}

.btnBlue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(90%, 552px);
  padding: 19px 1.8666666667em 24px;
  border-radius: 3em;
  background: #014e98;
  font-size: clamp(1.1em, 2.4vw, 27.5px);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.btnBlue > span {
  font-size: inherit;
}
.btnBlue.--more {
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.btnBlue.--more:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.btnBlue.--more:hover picture, .btnBlue.--more:hover img {
  opacity: 1;
}
.btnBlue.--more::after {
  content: "";
  width: 13px;
  height: 20px;
  background: url(img/arrow_more.webp) center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: calc(50% - 10px);
  right: 1.6em;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btnBlue.--more:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.btnGold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(90%, 750px);
  padding: 19px 1.8666666667em 24px;
  border-radius: 3em;
  background: #9a815b;
  font-size: clamp(1.1em, 2.4vw, 27.5px);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.btnGold > span {
  font-size: inherit;
}
.btnGold.--more {
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.btnGold.--more:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.btnGold.--more:hover picture, .btnGold.--more:hover img {
  opacity: 1;
}
.btnGold.--more::after {
  content: "";
  width: 13px;
  height: 20px;
  background: url(img/arrow_more.webp) center no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: calc(50% - 10px);
  right: 1.6em;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btnGold.--more:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media screen and (max-width:768px) {
  .btnGold {
    width: 100%;
  }
}

/* 乗用車はこちら・軽自動車はこちら */
.carLineupList__item:not(:last-child) {
  margin-bottom: 4em;
}

/* リンク付きバナー */
.bannerLink {
  display: block;
  -webkit-filter: opacity(1);
          filter: opacity(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.bannerLink:hover {
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.bannerLink:hover picture, .bannerLink:hover img {
  opacity: 1;
}
.bannerLink.pcView {
  display: block;
}
@media screen and (max-width: 768px) {
  .bannerLink.pcView {
    display: none;
  }
}
.bannerLink.spView {
  display: none;
}
@media screen and (max-width: 768px) {
  .bannerLink.spView {
    display: block;
  }
}
.bannerLink img {
  display: block;
}

/*======================
CTA
====================== */
.cta {
  width: min(90%, 1300px);
}
.cta__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width:1080px) {
  .cta__list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(4em * 0.5);
  }
}

/*======================
ページ固有CSS
====================== */
.event250127.main {
  margin-bottom: 4em;
}
.event250127 .read img {
  display: block;
}
.event250127 .chocolate {
  background: url(./img/chocolate_bg.webp) top center no-repeat;
  background-size: cover;
  padding: min(60/768*100vw,60px) 0;
}
.event250127 .chocolate_inner {
  width: min(90%, 1250px);
  margin: auto;
}

.event250127 .svu {
  background: url(./img/suv_bg.webp) center center no-repeat;
  background-size: cover;
}
.event250127 .svu .suv_inner {
  width: min(90%, 1250px);
  margin: auto;
  padding: min(60/768*100vw,60px) 0;
}
.event250127 .svu .suv_ttl {
  padding-bottom: min(40/768*100vw,40px);
}
.event250127 .suv_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  justify-content: space-between;
  column-gap: min(30/768*100vw,30px);
  margin-bottom: min(40/768*100vw,40px);
  padding: min(30/768*100vw,30px) min(40/768*100vw,40px);
  background-color: rgb(255 255 255/ 50%);
  border-radius: min(20/768*100vw,20px) 0px min(20/768*100vw,20px) 0px;
  text-align: center;
}
.event250127 .suv_box:last-of-type {
  margin-bottom: 0;
}
.event250127 .suv_box .car_ttl {
  grid-column: 1 / 3;
  margin-bottom: min(30/768*100vw,30px);
}
.event250127 .suv_box .car_img {
  grid-column: 1 / 2;
}
.event250127 .suv_box .car_movie {
  grid-column: 2 / 3;
  aspect-ratio: 16 / 9;
}
.event250127 .suv_box .car_movie iframe {
  border-radius: min(20/768*100vw,20px);
}
.event250127 .suv_box .car_txt {
  grid-column: 2 / 3;
}

.event250127 .info {
  background: url(./img/info_bg.webp);
  background-size: cover;
}
.event250127 .info__inner {
  width: min(90%, 1250px);
  margin: auto;
}
.event250127 .info__title {
  width: min(90%, 1250px);
  margin: 0 auto min(40/768*100vw,40px);
}

@media screen and (max-width:768px) {
  .event250127 .suv_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  .event250127 .suv_box .car_ttl {
    grid-column: 1 / 2;
  }
  .event250127 .suv_box .car_img {
    grid-column: 1 / 2;
    margin-bottom: min(30/768*100vw,30px);
  }
  .event250127 .suv_box .car_movie {
    grid-column: 1 / 2;
  }
  .event250127 .suv_box .car_txt {
    grid-column: 1 / 2;
  }
}

.info {
  padding: min(60/768*100vw,60px) 0;
  background: url(./img/info_bg.webp) top center no-repeat;
  background-size: cover;
}
.info__inner {
  width: min(90%, 1250px);
  margin: 0 auto;
}
.info__title {
  height: min(70px, 4.375vw);
  text-align: center;
}
.info__title img {
  width: auto;
  height: 100%;
}
.info__list > *:not(:last-child) {
  margin-bottom: min(40/768*100vw,40px);
}