@charset "UTF-8";
:root {
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  --color-base: #222;
  --color-placeholder: #BABABA;
  --color-green: #22CCBB;
  --color-blue: #009DFF;
  --color-red: #EE4499;
  --width-base-pc: 1080px;
  --width-base-sp: calc(345 / 375 * 100%);
}

*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, figure, picture, form {
  font-family: var(--font-jp);
  font-style: normal;
  font-weight: normal;
  color: var(--color-base);
  line-height: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  outline: none;
}

input, button, textarea, select {
  font-family: var(--font-jp);
  color: var(--color-base);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  display: block;
  resize: none;
}

select::-ms-expand {
  display: none;
}

picture {
  display: block;
}

button {
  text-align: left;
  display: block;
  cursor: pointer;
}

::placeholder {
  color: var(--color-placeholder);
}

select:invalid {
  color: var(--color-placeholder);
}

[type=checkbox], [type=radio] {
  position: absolute;
  visibility: hidden;
  width: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

img, svg {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  background-clip: padding-box;
}

small {
  font-size: inherit;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* -----------------
 * responsive base
 * -------------------- */
@media screen and (min-width: 768px) {
  body {
    min-width: var(--width-base-pc);
  }

  a,
button {
    transition: 0.3s;
  }

  a:hover,
button:hover {
    opacity: 0.5;
  }

  a[href*="tel:"] {
    pointer-events: none;
  }

  .m_sp {
    display: none !important;
  }
}
@media screen and (max-width: 1079px) {
  a:active,
button:active {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .m_pc {
    display: none !important;
  }
}
/* -----------------
 * common
 * -------------------- */
@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
  }
}

p,
span,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  p,
span,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
    font-size: 1.6rem;
  }
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.m_fw_medium {
  font-weight: 500;
}

.m_fw_bold {
  font-weight: 700;
}

.m_fw_exbold {
  font-weight: 800;
}

.m_fw_black {
  font-weight: 900;
}

.m_txt_clr_green {
  color: var(--color-green);
}

.m_txt_clr_blue {
  color: var(--color-blue);
}

.m_txt_clr_red {
  color: var(--color-red);
}

.m_tal {
  text-align: left !important;
}

.m_tar {
  text-align: right !important;
}

.m_tac {
  text-align: center !important;
}

.m_full {
  width: 100%;
}

.m_half {
  width: 50%;
}

.m_wrap {
  margin-inline: auto;
  max-width: var(--width-base-pc);
}
@media screen and (max-width: 767px) {
  .m_wrap {
    width: var(--width-base-sp);
  }
}

.m_btn01 a {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 316px;
  height: 60px;
  border: 2px solid #202020;
  border-radius: 5px;
  background: linear-gradient(#fdf161 0%, #fbe404 100%);
  box-shadow: 0 4px 0 #202020;
  transition: 0s;
}
@media screen and (max-width: 767px) {
  .m_btn01 a {
    max-width: 84.2666666667vw;
    height: 16vw;
    border-radius: 1.3333333333vw;
    box-shadow: 0 1.0666666667vw 0 #202020;
  }
}
@media screen and (min-width: 768px) {
  .m_btn01 a:hover {
    background: #FF8E05;
    box-shadow: 0 3px 0 #202020;
    transform: translateY(1px);
    opacity: 1;
  }
}
@media screen and (max-width: 1079px) {
  .m_btn01 a:active {
    background: #FF8E05;
    box-shadow: 0 3px 0 #202020;
    transform: translateY(1px);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .m_btn01 a:active {
    background: #FF8E05;
    box-shadow: 0 0.8vw 0 #202020;
    transform: translateY(0.2666666667vw);
    opacity: 1;
  }
}
.m_btn01 a::before, .m_btn01 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m_btn01 a::before {
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #202020;
}
@media screen and (max-width: 767px) {
  .m_btn01 a::before {
    right: 2.1333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.m_btn01 a::after {
  right: 14px;
  z-index: 1;
  width: 12px;
  height: 10px;
  background: url(../img/icn_arrow_white.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .m_btn01 a::after {
    right: 3.7333333333vw;
    width: 3.2vw;
    height: 2.6666666667vw;
  }
}
.m_btn01 .sml {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
@media screen and (max-width: 767px) {
  .m_btn01 .sml {
    font-size: 3.7333333333vw;
  }
}
.m_btn01 .lg {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .m_btn01 .lg {
    font-size: 4.2666666667vw;
  }
}

/* -----------------
 * fv_wrap
 * -------------------- */
.fv_wrap {
  padding-bottom: 54px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .fv_wrap {
    padding-bottom: 10.4vw;
  }
}
.fv_wrap .box {
  position: relative;
  z-index: 2;
}
.fv_wrap .box::before, .fv_wrap .box::after {
  content: "";
  display: block;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv_wrap .box::before {
    bottom: 80px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 378px;
    background: url(../img/fv_bg_triangle.svg) center no-repeat;
  }
}
.fv_wrap .box::after {
  left: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: calc(100% - 225px);
  background: linear-gradient(#fff 0%, #ebebeb 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), calc(50% + 540px) calc(100% - 80px), 50% 100%, calc(50% - 540px) calc(100% - 80px), 0 calc(100% - 80px));
}
@media screen and (max-width: 767px) {
  .fv_wrap .box::after {
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 50% 100%, 0 calc(100% - 8vw));
  }
}
.fv_wrap .inner {
  position: relative;
  z-index: 1;
  padding: 165px 0 110px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .inner {
    padding: 26.9333333333vw 0 20vw;
  }
}
.fv_wrap .inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 225px;
  background: url(../img/fv_bg_illust_pc.svg) center top repeat-x #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .fv_wrap .inner::before {
    height: 37.6vw;
    background: url(../img/fv_bg_illust_sp.svg) center top/100% auto #fff;
  }
}
@media screen and (min-width: 768px) {
  .fv_wrap .m_wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0 28px;
  }
}
@media screen and (min-width: 768px) {
  .fv_wrap .img {
    width: 486px;
  }
}
.fv_wrap .txt_box {
  width: 566px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .txt_box {
    margin: 5.3333333333vw auto 0;
    width: 91.3043478261%;
  }
}
@media screen and (min-width: 768px) {
  .fv_wrap .txt_box .title {
    margin-inline: auto;
    width: 511px;
  }
}
.fv_wrap .txt_box .txt {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  text-align: center;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .txt_box .txt {
    font-size: 4vw;
    line-height: 1.8666666667;
    text-align: left;
    margin-top: 3.4666666667vw;
  }
}
.fv_wrap .m_btn01 {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .m_btn01 {
    margin-top: 5.0666666667vw;
  }
}
.fv_wrap .list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 19px;
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .list {
    gap: 0 0.8vw;
    margin-top: 8vw;
  }
}
.fv_wrap .list li {
  position: relative;
  width: 172px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .list li {
    width: 29.3333333333vw;
  }
}
.fv_wrap .list li:nth-child(3) .ttl {
  letter-spacing: 0;
  text-indent: 0;
  width: 100%;
}
.fv_wrap .list .icn {
  margin-inline: auto;
  width: 82.5581395349%;
}
@media screen and (max-width: 767px) {
  .fv_wrap .list .icn {
    width: 81.8181818182%;
  }
}
.fv_wrap .list .ttl {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-indent: -0.04em;
  text-align: center;
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  z-index: 1;
  padding: 10.5px 13px;
  width: 82.5581395349%;
  border: 2px solid #202020;
  border-radius: 5px;
  background: #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .fv_wrap .list .ttl {
    font-size: 4vw;
    top: calc(100% - 2px);
    padding: 1.4666666667vw 0;
    width: 81.8181818182%;
    border-radius: 1.3333333333vw;
    border-width: 0.5333333333vw;
  }
}
.fv_wrap .list .ttl::before, .fv_wrap .list .ttl::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 26px;
  height: 15px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .fv_wrap .list .ttl::before, .fv_wrap .list .ttl::after {
    width: 5.3333333333vw;
    height: 2.6666666667vw;
  }
}
.fv_wrap .list .ttl::before {
  top: -15px;
  z-index: -1;
  background: #202020;
}
@media screen and (max-width: 767px) {
  .fv_wrap .list .ttl::before {
    top: -2.6666666667vw;
  }
}
.fv_wrap .list .ttl::after {
  top: -12px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .fv_wrap .list .ttl::after {
    top: -1.8666666667vw;
  }
}
.fv_wrap .sttl {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .fv_wrap .sttl {
    font-size: 5.6vw;
    line-height: 1.4761904762;
    margin-top: 10.9333333333vw;
  }
}
.fv_wrap .sttl .m_txt_clr_blue {
  font-size: inherit;
  display: inline-block;
  background: linear-gradient(transparent calc(100% - 16px), #FDF161 0%);
}
@media screen and (max-width: 767px) {
  .fv_wrap .sttl .m_txt_clr_blue {
    background: linear-gradient(transparent calc(100% - 3.2vw), #FDF161 0%);
  }
}
.fv_wrap .sttl .lg {
  font-size: 3.6rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .fv_wrap .sttl .lg {
    font-size: 6.6666666667vw;
    line-height: 1.24;
  }
}

/* -----------------
 * used_and_new_cars_wrap
 * -------------------- */
.used_and_new_cars_wrap .ttl {
  font-weight: 900;
  font-size: 3.8rem;
  line-height: 1.4736842105;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 60px 0 233px;
}
@media screen and (min-width: 768px) {
  .used_and_new_cars_wrap .ttl {
    background: url(../img/used_and_new_cars_bg_illust.svg) center no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .ttl {
    font-size: 6.4vw;
    line-height: 1.5;
    padding: 10.6666666667vw 0 49.0666666667vw;
  }
}
.used_and_new_cars_wrap .ttl .txt {
  font-size: inherit;
  line-height: inherit;
  text-align: center;
  display: block;
  width: 100%;
}
.used_and_new_cars_wrap .ttl [class^=m_txt_clr] {
  font-size: inherit;
  line-height: inherit;
}
.used_and_new_cars_wrap .ttl .lg {
  font-size: 4.3rem;
  line-height: 1.488372093;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .ttl .lg {
    font-size: 8vw;
    line-height: 1.5;
  }
}
.used_and_new_cars_wrap .ttl .md {
  font-size: inherit;
  line-height: inherit;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .ttl .md {
    font-size: 7.4666666667vw;
    line-height: 1.4642857143;
  }
}
.used_and_new_cars_wrap .ttl .img {
  position: absolute;
  top: 187px;
  left: 50%;
  z-index: 2;
  width: 473px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .ttl .img {
    top: 33.0666666667vw;
    width: 86.9333333333vw;
  }
}
.used_and_new_cars_wrap .row_box {
  display: flex;
  justify-content: center;
  gap: 0 36px;
  position: relative;
  z-index: 1;
  padding: 45px 0 60px;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .row_box {
    gap: 0 5.6vw;
    padding: 12.5333333333vw 0 8vw;
    border-bottom: 0.5333333333vw solid #202020;
  }
}
.used_and_new_cars_wrap .row_box::before, .used_and_new_cars_wrap .row_box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
}
.used_and_new_cars_wrap .row_box::before {
  left: 0;
  background: linear-gradient(#2cb 0%, #22cc8c 100%);
}
.used_and_new_cars_wrap .row_box::after {
  right: 0;
  background: linear-gradient(#009dff 0%, #08f 100%);
}
.used_and_new_cars_wrap .row_box > li {
  width: 522px;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .row_box > li {
    width: 43.2vw;
  }
}
.used_and_new_cars_wrap .row_box .sttl {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.1071428571;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .row_box .sttl {
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
}
.used_and_new_cars_wrap .list {
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .used_and_new_cars_wrap .list {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .list {
    margin-top: 6.9333333333vw;
  }
}
.used_and_new_cars_wrap .list li {
  position: relative;
  padding: 21px 0 13px;
  width: 162px;
  border: 2px solid #202020;
  border-radius: 8px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .list li {
    padding: 5.6vw 0 3.4666666667vw;
    width: 100%;
    border-width: 0.5333333333vw;
    border-radius: 2.1333333333vw;
  }
  .used_and_new_cars_wrap .list li:nth-child(n+2) {
    margin-top: 6.9333333333vw;
  }
}
.used_and_new_cars_wrap .list .icn {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 80px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .list .icn {
    top: -3.4666666667vw;
    width: 21.3333333333vw;
  }
}
.used_and_new_cars_wrap .list .ssttl {
  font-feature-settings: "palt";
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-inline: auto;
  width: fit-content;
  background: linear-gradient(transparent calc(100% - 8px), #FDF161 0%);
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .list .ssttl {
    font-size: 3.7333333333vw;
    background: linear-gradient(transparent calc(100% - 2.1333333333vw), #FDF161 0%);
  }
}
.used_and_new_cars_wrap .list .txt {
  font-feature-settings: "palt";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 2px;
  padding: 0 11px;
}
@media screen and (max-width: 767px) {
  .used_and_new_cars_wrap .list .txt {
    font-size: 3.7333333333vw;
    margin-top: 2.1333333333vw;
    padding: 0 2.4vw;
  }
}

/* -----------------
 * used_choice_wrap
 * -------------------- */
.used_choice_wrap {
  padding: 60px 0 64px;
  background: url(../img/used_choice_bg_illust_pc.svg) center no-repeat;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap {
    padding: 10.1333333333vw 0 15.2vw;
    background: url(../img/used_choice_bg_illust_sp.svg) center top/100% auto no-repeat;
  }
}
.used_choice_wrap .ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.used_choice_wrap .ttl span {
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.4761904762;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl span {
    font-size: 7.4666666667vw;
    line-height: 1.2857142857;
  }
}
.used_choice_wrap .ttl .label {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  padding: 9px 0;
  width: 230px;
  border: 2px solid #202020;
  border-radius: 5px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .label {
    font-size: 4.2666666667vw;
    padding: 1.3333333333vw 0 1.8666666667vw;
    width: 46.9333333333vw;
    border-width: 0.5333333333vw;
    border-radius: 1.3333333333vw;
  }
}
.used_choice_wrap .ttl .label::before, .used_choice_wrap .ttl .label::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 23px;
  height: 11px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .label::before, .used_choice_wrap .ttl .label::after {
    width: 5.3333333333vw;
    height: 2.6666666667vw;
  }
}
.used_choice_wrap .ttl .label::before {
  bottom: -11px;
  z-index: -1;
  background: #202020;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .label::before {
    bottom: -2.6666666667vw;
  }
}
.used_choice_wrap .ttl .label::after {
  bottom: -8px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .label::after {
    bottom: -1.8666666667vw;
  }
}
.used_choice_wrap .ttl .txt {
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .txt {
    margin-top: 2.1333333333vw;
  }
}
.used_choice_wrap .ttl .txt .sml {
  font-size: 3.8rem;
  line-height: 1.6315789474;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .txt .sml {
    font-size: 6.4vw;
    line-height: 1.5;
  }
}
.used_choice_wrap .ttl .m_txt_clr_red {
  display: flex;
  align-items: center;
  gap: 0 6px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .m_txt_clr_red {
    gap: 0 0.5333333333vw;
  }
}
.used_choice_wrap .ttl .m_txt_clr_red svg {
  width: 15px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .ttl .m_txt_clr_red svg {
    position: relative;
    top: 0.5333333333vw;
    width: 2.6666666667vw;
  }
}
.used_choice_wrap .list {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .used_choice_wrap .list {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list {
    margin-top: 6.4vw;
  }
}
.used_choice_wrap .list li {
  padding: 8px 8px 12px 12px;
  border: 2px solid #202020;
  border-radius: 5px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .used_choice_wrap .list li {
    width: 345px;
  }
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list li {
    padding: 2.1333333333vw 2.1333333333vw 2.9333333333vw 3.4666666667vw;
    border-width: 0.5333333333vw;
    border-radius: 1.3333333333vw;
  }
  .used_choice_wrap .list li:nth-child(n+2) {
    margin-top: 4vw;
  }
}
.used_choice_wrap .list .row_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.used_choice_wrap .list .sttl {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  position: relative;
  padding: 5px 0 15px;
  width: 234px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list .sttl {
    font-size: 4.8vw;
    padding: 1.3333333333vw 0 4vw;
    width: 62.4vw;
  }
}
.used_choice_wrap .list .sttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../img/doted_line.svg) left center;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list .sttl::after {
    height: 0.5333333333vw;
    background-size: 100% auto;
  }
}
.used_choice_wrap .list .sttl sup {
  font-size: 1.2rem;
  line-height: 1.8333333333;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list .sttl sup {
    font-size: max(1rem, 3.2vw);
  }
}
.used_choice_wrap .list .icn {
  width: 84px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list .icn {
    width: 22.4vw;
  }
}
.used_choice_wrap .list [class^=txt] {
  font-weight: 500;
  width: 100%;
}
.used_choice_wrap .list .txt {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list .txt {
    font-size: 3.7333333333vw;
    margin-top: 0.5333333333vw;
  }
}
.used_choice_wrap .list .txt_sml {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .list .txt_sml {
    font-size: max(1rem, 2.6666666667vw);
    margin-top: 1.6vw;
  }
}
.used_choice_wrap .m_btn01 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .used_choice_wrap .m_btn01 {
    margin-top: 8vw;
  }
}

/* -----------------
 * used_awareness_wrap
 * -------------------- */
.used_awareness_wrap {
  padding: 60px 0 64px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap {
    padding: 10.6666666667vw 0 11.7333333333vw;
  }
}
.used_awareness_wrap .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.used_awareness_wrap .ttl .txt {
  font-weight: 900;
  font-size: 3.8rem;
  line-height: 1.6315789474;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .ttl .txt {
    font-size: 6.4vw;
    line-height: 1.7083333333;
  }
  .used_awareness_wrap .ttl .txt.m_txt_clr_blue {
    font-size: 8.5333333333vw;
    line-height: 1.46875;
  }
  .used_awareness_wrap .ttl .txt.m_txt_clr_blue .lg {
    font-size: inherit;
    line-height: inherit;
  }
}
.used_awareness_wrap .ttl .lg {
  font-size: 4.2rem;
  line-height: 1.4761904762;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .ttl .lg {
    font-size: 7.4666666667vw;
    line-height: 1.4642857143;
  }
}
.used_awareness_wrap .ttl .ex {
  position: relative;
  bottom: 9px;
  margin-left: 3px;
  width: 16px;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .ttl .ex {
    bottom: 1.8666666667vw;
    margin-left: 0.8vw;
    width: 3.2vw;
  }
}
.used_awareness_wrap .list {
  display: flex;
  justify-content: space-between;
  margin-top: 29px;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .list {
    flex-wrap: wrap;
    margin-top: 5.0666666667vw;
  }
}
.used_awareness_wrap .list li {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .list li {
    width: 42.6666666667vw;
  }
  .used_awareness_wrap .list li:nth-child(n+3) {
    margin-top: 5.3333333333vw;
  }
}
.used_awareness_wrap .note_list {
  counter-reset: number 0;
  margin: 30px auto 0;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .note_list {
    margin-top: 3.2vw;
  }
}
.used_awareness_wrap .note_list li {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .note_list li {
    font-size: max(1rem, 3.2vw);
    padding-left: 8.176vw;
  }
  .used_awareness_wrap .note_list li:nth-child(n+2) {
    margin-top: 2.6666666667vw;
  }
}
.used_awareness_wrap .note_list li::before {
  content: "※" counter(number) "：";
  counter-increment: number 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.used_awareness_wrap .m_btn01 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .used_awareness_wrap .m_btn01 {
    margin-top: 8vw;
  }
}

/* -----------------
 * used_match_wrap
 * -------------------- */
.used_match_wrap {
  position: relative;
  z-index: 2;
  padding: 60px 0 92px;
}
@media screen and (max-width: 767px) {
  .used_match_wrap {
    padding: 9.3333333333vw 0 21.3333333333vw;
  }
}
.used_match_wrap::before, .used_match_wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .used_match_wrap::before {
    z-index: -1;
    background: url(../img/used_match_bg_illust.svg) center no-repeat;
  }
}
.used_match_wrap::after {
  z-index: -2;
  background: linear-gradient(#fff 0%, #e9e9e9 100%);
}
.used_match_wrap .m_wrap {
  max-width: 1100px;
}
.used_match_wrap .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.used_match_wrap .ttl .txt {
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.4761904762;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .ttl .txt {
    font-size: 8.5333333333vw;
    line-height: 1.46875;
  }
}
.used_match_wrap .ttl .txt + .txt .sml {
  letter-spacing: -0.2em;
}
.used_match_wrap .ttl .sml {
  font-size: 3.8rem;
  line-height: 1.6315789474;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .ttl .sml {
    font-size: 7.4666666667vw;
    line-height: 1.6785714286;
  }
}
.used_match_wrap .used_car_list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .used_match_wrap .used_car_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 22px;
  }
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list {
    margin-top: 9.0666666667vw;
  }
}
.used_match_wrap .used_car_list > li {
  text-align: center;
  position: relative;
  padding: 25px 0 22px;
  border-width: 2px;
  border-style: solid;
  border-radius: 5px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .used_match_wrap .used_car_list > li {
    width: 345px;
  }
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list > li {
    padding: 6.6666666667vw 0 5.8666666667vw;
    border-width: 0.5333333333vw;
    border-radius: 1.3333333333vw;
  }
  .used_match_wrap .used_car_list > li:nth-child(n+2) {
    margin-top: 8.5333333333vw;
  }
}
.used_match_wrap .used_car_list > li:nth-child(1) {
  border-color: #22CCBB;
}
.used_match_wrap .used_car_list > li:nth-child(1) .label {
  background: #22CCBB;
}
.used_match_wrap .used_car_list > li:nth-child(1) .sttl::before {
  width: 273px;
  background: url(../img/used_match_kei_car_txt.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list > li:nth-child(1) .sttl::before {
    width: 72.8vw;
  }
}
.used_match_wrap .used_car_list > li:nth-child(2) {
  border-color: #009DFF;
}
.used_match_wrap .used_car_list > li:nth-child(2) .label {
  background: #009DFF;
}
.used_match_wrap .used_car_list > li:nth-child(2) .sttl::before {
  width: 144px;
  background: url(../img/used_match_suv_txt.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list > li:nth-child(2) .sttl::before {
    width: 38.4vw;
  }
}
.used_match_wrap .used_car_list > li:nth-child(3) {
  border-color: #EE4499;
}
.used_match_wrap .used_car_list > li:nth-child(3) .label {
  background: #EE4499;
}
.used_match_wrap .used_car_list > li:nth-child(3) .sttl::before {
  width: 369px;
  background: url(../img/used_match_compact_txt.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list > li:nth-child(3) .sttl::before {
    width: 98.4vw;
  }
}
.used_match_wrap .used_car_list > li:nth-child(4) {
  border-color: #A62DD8;
}
.used_match_wrap .used_car_list > li:nth-child(4) .label {
  background: #A62DD8;
}
.used_match_wrap .used_car_list > li:nth-child(4) .sttl::before {
  width: 552px;
  background: url(../img/used_match_minivan_1box_txt.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list > li:nth-child(4) .sttl::before {
    width: 147.2vw;
  }
}
.used_match_wrap .used_car_list > li:nth-child(5) {
  border-color: #FF8E05;
}
.used_match_wrap .used_car_list > li:nth-child(5) .label {
  background: #FF8E05;
}
.used_match_wrap .used_car_list > li:nth-child(5) .sttl::before {
  width: 240px;
  background: url(../img/used_match_coupe_txt.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list > li:nth-child(5) .sttl::before {
    width: 64vw;
  }
}
.used_match_wrap .used_car_list .label {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 5.5px 0;
  width: 126px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .label {
    font-size: max(1rem, 3.4666666667vw);
    top: -3.7333333333vw;
    padding: 1.4666666667vw 0;
    width: 33.6vw;
    clip-path: polygon(2.6666666667vw 0, 100% 0, calc(100% - 2.6666666667vw) 100%, 0 100%);
  }
}
.used_match_wrap .used_car_list .sttl {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .sttl {
    font-size: 8vw;
    margin-bottom: 2.4vw;
  }
}
.used_match_wrap .used_car_list .sttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.used_match_wrap .used_car_list .intro_txt {
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  display: inline;
  background: linear-gradient(transparent calc(100% - 8px), #FDF161 0%);
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .intro_txt {
    font-size: 5.6vw;
    background: linear-gradient(transparent calc(100% - 2.1333333333vw), #FDF161 0%);
  }
}
.used_match_wrap .used_car_list .img {
  margin: 29px auto 0;
  width: 315px;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .img {
    margin-top: 7.7333333333vw;
    width: 84vw;
  }
}
.used_match_wrap .used_car_list .list {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  padding: 0 13px;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .list {
    margin-top: 11.7333333333vw;
    padding: 0 3.4666666667vw;
  }
}
.used_match_wrap .used_car_list .list li {
  position: relative;
  padding: 19px 0 13px;
  width: 150px;
  border: 2px solid #202020;
  border-radius: 8px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .list li {
    padding: 5.0666666667vw 0 3.4666666667vw;
    width: 40vw;
    border-width: 0.5333333333vw;
    border-radius: 2.1333333333vw;
  }
}
.used_match_wrap .used_car_list .list .icn {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 70px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .list .icn {
    top: -3.4666666667vw;
    width: 18.6666666667vw;
  }
}
.used_match_wrap .used_car_list .list .txt {
  font-feature-settings: "palt";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .list .txt {
    font-size: 3.7333333333vw;
    padding: 0 2.1333333333vw;
  }
}
.used_match_wrap .used_car_list .m_btn01 {
  margin-top: 15px;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .used_match_wrap .used_car_list .m_btn01 {
    margin-top: 4vw;
    padding: 0 4vw;
  }
}
.used_match_wrap .used_car_list .m_btn01 a {
  width: 100%;
}

/* -----------------
 * footer
 * -------------------- */
footer {
  position: relative;
  z-index: 1;
  padding: 69px 0 23px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 22.1333333333vw 0 6.1333333333vw;
  }
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 145px;
  background: url(../img/enjoy_my_car_life_cloud_pc.svg) center top repeat-x #E9E9E9;
}
@media screen and (max-width: 767px) {
  footer::before {
    height: 38.6666666667vw;
    background: url(../img/enjoy_my_car_life_cloud_sp.svg) center top/100% auto no-repeat #E9E9E9;
  }
}
footer .ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .ttl .txt {
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.4761904762;
}
@media screen and (max-width: 767px) {
  footer .ttl .txt {
    font-size: 9.6vw;
    line-height: 1.1666666667;
  }
}
footer .ttl .sml {
  font-size: 3.8rem;
  line-height: 1.6315789474;
}
@media screen and (max-width: 767px) {
  footer .ttl .sml {
    font-size: 8vw;
    line-height: 1.4;
  }
}
footer .ttl .txt_red {
  font-size: inherit;
  line-height: inherit;
  color: #E60012;
}
@media screen and (min-width: 768px) {
  footer .img_box {
    position: relative;
    z-index: 1;
  }
  footer .img_box::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/enjoy_my_car_life_illust_02.svg) center bottom repeat-x;
  }
}
footer .img_box .img {
  margin: 29px auto 0;
  width: 1080px;
}
@media screen and (max-width: 767px) {
  footer .img_box .img {
    margin-top: 3.4666666667vw;
    width: 84.2666666667%;
  }
}
footer .sttl {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  footer .sttl {
    flex-direction: column;
    margin-top: 4vw;
  }
}
footer .sttl .txt {
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  footer .sttl .txt {
    font-size: 7.4666666667vw;
  }
}
footer .sttl .sml {
  font-size: 2.4rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  footer .sttl .sml {
    font-size: 6.4vw;
  }
}
footer .sttl .txt_red {
  font-size: inherit;
  line-height: inherit;
  color: #E60012;
}
footer .sttl .ex {
  position: relative;
  bottom: 4px;
  margin-left: 3px;
  width: 14px;
}
@media screen and (max-width: 767px) {
  footer .sttl .ex {
    bottom: 1.0666666667vw;
    margin-left: 0.8vw;
    width: 3.7333333333vw;
  }
}
footer .list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  footer .list {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  footer .list {
    margin-top: 8vw;
  }
}
footer .list + .m_btn01 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  footer .list + .m_btn01 {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  footer .list li {
    width: 315px;
  }
}
@media screen and (max-width: 767px) {
  footer .list li:nth-child(n+2) {
    margin-top: 8vw;
  }
  footer .list li:nth-child(3) .label {
    height: 22.1333333333vw;
  }
}
footer .list .label {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 15px;
  height: 83px;
  border: 2px solid #202020;
  border-radius: 5px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  footer .list .label {
    margin: 6.1333333333vw auto 0;
    width: 84vw;
    height: 13.3333333333vw;
    border-width: 0.5333333333vw;
    border-radius: 1.3333333333vw;
  }
}
footer .list .label::before, footer .list .label::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 22px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  footer .list .label::before, footer .list .label::after {
    width: 5.3333333333vw;
    height: 2.6666666667vw;
  }
}
footer .list .label::before {
  top: -10px;
  z-index: -1;
  background: #202020;
}
@media screen and (max-width: 767px) {
  footer .list .label::before {
    top: -2.6666666667vw;
  }
}
footer .list .label::after {
  top: -7px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  footer .list .label::after {
    top: -1.8666666667vw;
  }
}
footer .list .label .txt {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.5238095238;
}
@media screen and (max-width: 767px) {
  footer .list .label .txt {
    font-size: 5.6vw;
  }
}
footer .list .label .lg {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  color: #E60012;
}
@media screen and (max-width: 767px) {
  footer .list .label .lg {
    font-size: 6.4vw;
  }
}
footer .other_list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 40px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  footer .other_list {
    flex-direction: column;
    align-items: center;
    gap: 10.6666666667vw 0;
    margin-top: 9.6vw;
  }
}
footer .other_list .app {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  footer .other_list .app {
    width: 404px;
  }
}
@media screen and (max-width: 767px) {
  footer .other_list .app {
    justify-content: center;
    gap: 0 2.9333333333vw;
  }
}
footer .other_list .app .other_sttl {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2857142857;
  color: #E60012;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .other_list .app .other_sttl {
    font-size: 7.4666666667vw;
  }
}
footer .other_list .app .txt {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  text-align: center;
  margin: 4px 0 15px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .other_list .app .txt {
    font-size: 6.4vw;
    margin: 1.0666666667vw 0 5.3333333333vw;
  }
}
footer .other_list .app .google_play {
  width: 216px;
}
footer .other_list .app .google_play a {
  display: block;
}
@media screen and (max-width: 767px) {
  footer .other_list .app .google_play {
    width: 44.8vw;
  }
}
footer .other_list .app .app_store {
  width: 174px;
}
footer .other_list .app .app_store a {
  display: block;
}
@media screen and (max-width: 767px) {
  footer .other_list .app .app_store {
    width: 35.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  footer .other_list .magazine {
    padding-bottom: 4px;
    width: 316px;
  }
}
footer .other_list .magazine .other_sttl {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0 4px;
}
@media screen and (max-width: 767px) {
  footer .other_list .magazine .other_sttl {
    gap: 0 1.0666666667vw;
  }
}
footer .other_list .magazine .other_sttl .logo {
  width: 211px;
}
@media screen and (max-width: 767px) {
  footer .other_list .magazine .other_sttl .logo {
    width: 56.2666666667vw;
  }
}
footer .other_list .magazine .other_sttl .sml {
  font-weight: 700;
  font-size: 2.1rem;
  position: relative;
  bottom: 2px;
}
@media screen and (max-width: 767px) {
  footer .other_list .magazine .other_sttl .sml {
    font-size: 5.6vw;
    bottom: 0.5333333333vw;
  }
}
footer .other_list .magazine .other_sttl .txt {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  margin-top: 5px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .other_list .magazine .other_sttl .txt {
    font-size: 6.4vw;
    margin-top: 1.6vw;
  }
}
footer .other_list .magazine .m_btn01 {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  footer .other_list .magazine .m_btn01 {
    margin-top: 5.3333333333vw;
  }
}
footer .copy {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  text-align: center;
  margin-top: 60px;
  padding-top: 161px;
  background: url(../img/enjoy_my_car_life_bill_pc.svg) center top repeat-x;
}
@media screen and (max-width: 767px) {
  footer .copy {
    font-size: max(1rem, 3.2vw);
    margin-top: 11.7333333333vw;
    padding-top: 24.8vw;
    background: url(../img/enjoy_my_car_life_bill_sp.svg) center top/92vw auto no-repeat;
  }
}

/*# sourceMappingURL=style.css.map */

