@charset "UTF-8";
:root {
  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --header-height: 65px;
  --inner-width: 800;
  --inner-width-px: calc(var(--inner-width) * 1px);
  --inner-padding: calc(15px + var(--slope-1px) * 10);
}

/* =============================================================

Base

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

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  font-family: Lato, "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#feffde), to(#ffffff));
  background-image: linear-gradient(180deg, #feffde, #ffffff);
  background-attachment: fixed;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

img[src$=".svg"] {
  opacity: 0;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a.js-tel {
  text-decoration: none;
}

a.js-tel._active {
  text-decoration: underline;
}

a.js-tel._inactive {
  color: inherit;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}

*[data-toggle-id] {
  display: none;
}

*[data-intersection] {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

*[data-intersection][data-intersecting=true] {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out 0.2s;
  transition: all 0.4s ease-out 0.2s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*.js-itrsec-right[data-intersection] {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

*.js-itrsec-right[data-intersection][data-intersecting=true] {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out 0.2s;
  transition: all 0.4s ease-out 0.2s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

*.js-itrsec-left[data-intersection] {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

*.js-itrsec-left[data-intersection][data-intersecting=true] {
  opacity: 1;
  -webkit-transition: all 0.4s ease-out 0.2s;
  transition: all 0.4s ease-out 0.2s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* =============================================================

l-wrapper

* ============================================================= */
.l-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 3px rgba(99, 99, 99, 0.2);
          box-shadow: 0 0 10px 3px rgba(99, 99, 99, 0.2);
}

/* =============================================================

Header

* ============================================================= */
.l-header {
  z-index: 100;
  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: 100%;
  height: 65px;
  margin: 0 auto;
  background: #fff;
}

.l-header__logo {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80%;
  margin: auto 0;
}

.l-header__logo a {
  position: relative;
  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;
  height: 38px;
  max-width: 100%;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.l-header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 560px) {
  .l-header__logo a {
    height: 28px;
  }
}
/* =============================================================

Footer

* ============================================================= */
/* l-footer
============================== */
.l-footer {
  padding: 36px var(--inner-padding);
  background: #333;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: calc(10px + var(--slope-1px) * 2);
  line-height: 1.5;
}

/* =============================================================

Sticky

* ============================================================= */
/* l-sticky-nav
============================== */
.l-sticky-nav {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 200;
  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;
  gap: calc(15px + var(--slope-1px) * 15);
  width: 100%;
  padding: calc(10px + var(--slope-1px) * 10) var(--inner-padding);
  background: #333;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}

.l-sticky-nav.is-show {
  opacity: 1;
  pointer-events: auto;
}

/* l-sticky-button-container
============================== */
.l-sticky-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(10px + var(--slope-1px) * 10);
  margin: 0 auto;
}

/* l-sticky-button
============================== */
.l-sticky-button {
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (hover: hover) {
  .l-sticky-button:hover {
    opacity: 0.7;
  }
}
/* l-sticky-pagetop
============================== */
.l-sticky-pagetop {
  position: fixed;
  right: 3%;
  bottom: 0;
  z-index: 2;
  display: block;
  margin-bottom: 1.5em;
  font-size: calc(8px + var(--slope-1px) * 8);
}

@media screen and (max-width: 1080px) {
  .l-sticky-pagetop {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
  }
}
.l-sticky-pagetop__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0.8em 1em;
  border-radius: 5px;
  border: 1px solid #fff;
  background: #333;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .l-sticky-pagetop__button:hover {
    opacity: 0.7;
  }
}
.l-sticky-pagetop__button:before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.25em;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =============================================================

Slick

* ============================================================= */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.slick-slider.slick-initialized {
  max-height: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.slick-vertical .slick-track {
  display: block;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
}

.slick-slide a {
  outline: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  outline: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

/* Arrows */
.slick-arrow {
  position: absolute;
  top: calc(240px + var(--slope-1px) * 180);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
  width: 50px;
  height: 110px;
  margin: auto 0;
  padding: 0;
  outline: none;
  outline: none;
  border: 0;
  border-radius: 0;
  color: currentColor;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (hover: hover) {
  .slick-arrow:hover {
    opacity: 0.7;
  }
}
.slick-arrow.slick-prev {
  left: 0;
  background: url(../img/slide_arrow_left.png) 50% 50%/contain no-repeat;
  -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

.slick-arrow.slick-next {
  right: 0;
  background: url(../img/slide_arrow_right.png) 50% 50%/contain no-repeat;
}

@media screen and (max-width: 560px) {
  .slick-arrow {
    width: 7vw;
    height: 25.5vw;
  }
}
/* Dots */
.slick-slider.slick-dotted {
  margin-bottom: 65px;
}

.slick-dots {
  position: absolute;
  top: 100%;
  left: 0;
  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;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
}

.slick-dots > li {
  display: block;
  opacity: 1;
}

.slick-dots > li button {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  width: 15px;
  height: 15px;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: 100%;
  background: #fff;
  font-size: 0;
  opacity: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slick-dots > li.slick-active button {
  background: #E60012;
}

/* thumbs */
.slick-thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 4px);
  margin-top: 12px;
  margin-right: -4px;
}

.slick-thumbs > li {
  min-width: 0%;
  max-width: 50%;
  padding-right: 4px;
}

/* =============================================================

mv

* ============================================================= */
.mvWrap {
  position: relative;
  padding-bottom: 262px;
}
@media all and (max-width: 800px) {
  .mvWrap {
    padding-bottom: 32.625vw;
  }
}
.mvWrap .bingoWrap {
  position: absolute;
  bottom: 0;
  left: 0;
}
.mvWrap .bingoWrap .btn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin-inline: auto;
  -webkit-filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.25));
  width: 75.25vw;
  max-width: 460px;
}
@media all and (max-width: 800px) {
  .mvWrap .bingoWrap .btn {
    bottom: 2.75vw;
    width: 55%;
  }
}

/* ============================================================

c-car-slide

============================================================ */
/* p-newcar
============================== */
.p-newcar {
  padding-bottom: 60px;
}

.p-newcar__head {
  margin-bottom: 33px;
}

/* c-car-slide-nav-grid
============================== */
.c-car-slide-nav-grid {
  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;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5px 10px;
  margin-bottom: 5px;
}
.c-car-slide-nav-grid > * {
  width: calc((100% - 30px) / 4);
}

/* c-car-slide-nav
============================== */
.c-car-slide-nav {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
}
.c-car-slide-nav .c-car-slide-nav__icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 52px;
}
@media all and (max-width: 800px) {
  .c-car-slide-nav .c-car-slide-nav__icon {
    top: -1.25vw;
    left: -1.25vw;
    width: 6.5vw;
  }
}

@media (hover: hover) {
  .c-car-slide-nav:hover {
    opacity: 0.7;
  }
}
.c-car-slide-nav img {
  max-width: 100%;
}

/* c-car-slide
============================== */
.c-car-slide__body {
  position: relative;
}

.c-car-slide__item {
  padding: 0 20px 30px;
  margin-inline: 5px;
  border: 3px solid #BD9F57;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#059790), to(#0F975C));
  background: linear-gradient(180deg, #059790 0%, #0F975C 100%);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 560px) {
  .c-car-slide__item {
    padding: 0 10px 30px;
  }
}

.c-car-slide__arrow {
  top: calc(79.6875px + var(--slope-1px) * 90.3125);
}
.c-car-slide__arrow img {
  width: auto;
  margin: 0 auto;
}

.c-car-slide__sub {
  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;
  margin-top: 30px;
  text-align: justify;
  text-justify: auto;
}

.c-car-slide__sub__img02 {
  margin-top: 25px;
}

.c-car-slide-notes {
  background-color: #f1f1f1;
  border-radius: 5px;
  font-size: 13px;
  padding: 1.5rem;
  margin-top: 10px;
}

.c-car-slide-notes__txt01 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}

.c-car-slide-notes__txt02 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
}

.slick-slide img.c-car-slide__sub__arrow01 {
  width: 23.25vw;
  max-width: 186px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.c-car-slide__button {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 15px;
}

@media screen and (max-width: 560px) {
  .c-car-slide-notes__txt01 {
    font-size: 1rem;
  }
  .c-car-slide-notes__txt02 {
    font-size: 1rem;
  }
  .c-car-slide__button + .c-car-slide__button {
    margin-top: 15px;
  }
}
/* p-newcar-toggle
============================== */
.p-newcar-toggle__head {
  position: relative;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (hover: hover) {
  .p-newcar-toggle__head:hover {
    opacity: 0.7;
  }
}
.p-newcar-toggle__head:before, .p-newcar-toggle__head:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: block;
  width: 18px;
  height: 3px;
  margin: auto 0;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-newcar-toggle__head:not(.is-open):after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-newcar-toggle__body {
  display: none;
  margin-top: 11px;
  padding: 1em;
  border-radius: 5px;
  background: #f2f2f2;
  font-size: 13px;
  line-height: 1.53846;
}

.p-newcar-toggle__body > p {
  text-align: justify;
  text-justify: auto;
}

.p-newcar-toggle__body > p + p {
  margin-top: 1em;
}

/* ============================================================

usedcar

============================================================ */
/* p-usedcar
============================== */
.p-usedcar__body {
  padding: 0 var(--inner-padding);
}

@media screen and (max-width: 560px) {
  .p-usedcar__body {
    padding: 0;
  }
}
/* p-usedcar-slider
============================== */
.p-usedcar-slider {
  padding: 0;
}

.p-usedcar-slider__arrow.slick-prev {
  left: 0;
}

.p-usedcar-slider__arrow.slick-next {
  right: 0;
}

/* p-usedcar-nav
============================== */
.p-usedcar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: calc(100% - var(--inner-padding) * 2);
  margin: 0 auto;
  border-radius: calc(6px + var(--slope-1px) * 4);
  background: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (hover: hover) {
  .p-usedcar-nav:hover {
    opacity: 0.7;
  }
}
.p-usedcar-nav__image {
  width: 100%;
  aspect-ratio: 650/400;
  overflow: hidden;
}

.p-usedcar-nav__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-usedcar-nav__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: calc(12px + var(--slope-1px) * 18);
}

.p-usedcar-nav__head {
  margin-bottom: 21px;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  font-size: calc(18px + var(--slope-1px) * 12);
  line-height: 1.5;
}

.p-usedcar-nav__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.p-usedcar-nav__data dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(5px + var(--slope-1px) * 15);
  font-weight: bold;
  font-size: calc(12px + var(--slope-1px) * 8);
  min-width: calc(50% - 5px);
}

.p-usedcar-nav__data dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  width: 5.5em;
  background: #f0f0f0;
  color: #333;
}

.p-usedcar-nav__price {
  margin-top: calc(18px + var(--slope-1px) * 12);
}

.p-usedcar-nav__price dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: calc(9px + var(--slope-1px) * 6);
  font-weight: bold;
  font-size: calc(15px + var(--slope-1px) * 10);
  line-height: 1;
}

.p-usedcar-nav__price dd {
  color: #c00;
  font-size: calc(24px + var(--slope-1px) * 16);
  font-family: var(--en-font-family);
}

.p-usedcar-nav__price dd em {
  font-size: 2em;
}

.p-usedcar-nav__price dd span {
  font-size: 0.75em;
  font-family: var(--base-font-family);
}

.p-usedcar-nav__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
  height: calc(34.2px + var(--slope-1px) * 22.8);
  padding-top: calc(7.8px + var(--slope-1px) * 5.2);
  background: #000;
  color: #fff;
  font-weight: bold;
  font-size: calc(13.8px + var(--slope-1px) * 9.2);
  line-height: 1;
}

.p-usedcar-nav__foot em {
  font-size: calc(16.8px + var(--slope-1px) * 11.2);
}

.p-usedcar-nav__foot:after {
  content: "";
  display: block;
  width: calc(12.6px + var(--slope-1px) * 8.4);
  height: calc(12.6px + var(--slope-1px) * 8.4);
  margin-left: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 560px) {
  .p-usedcar-nav {
    width: calc(100% - var(--inner-padding) * 1);
  }
  .p-usedcar-nav__data dt {
    height: 1.75em;
  }
}
/* p-usedcar-button
============================== */
.p-usedcar-button {
  max-width: 600px;
  margin: 30px auto 0;
  padding: 0 var(--inner-padding);
}

/* p-usedcar-notes
============================== */
.p-usedcar-notesWrap {
  padding-left: 50px;
  padding-right: 50px;
}
@media all and (max-width: 560px) {
  .p-usedcar-notesWrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-usedcar-notes {
  margin: 40px auto 0;
  padding: 1.2em;
  background: #fff;
  text-align: center;
  font-size: calc(9px + var(--slope-1px) * 5);
  border-radius: 10px;
  width: calc(100% - var(--inner-padding) * 2);
}

/* p-usedcar-hot
============================== */
.p-usedcar-hot {
  margin-top: 30px;
}

/* =============================================================
   Component: More Block (メインの開閉ブロック)
   ============================================================= */
.c-more-block-wrapper:not(:first-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: calc(20px + var(--slope-1px) * 10);
  border-radius: 10px;
}

@media screen and (max-width: 560px) {
  .c-more-block-wrapper:not(:first-child) {
    gap: 0;
  }
}
.c-more-block {
  position: relative;
  overflow: hidden;
  height: calc(260px + var(--slope-1px) * 140);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}

.c-more-block__head {
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: calc(13px + var(--slope-1px) * 17);
  padding: 5px;
  border-radius: 10px 10px 0px 0px;
}

.c-more-block.is-open {
  height: var(--open-height);
}

.c-more-block__contents {
  padding-bottom: calc(56.25px + var(--slope-1px) * 18.75);
}

/* More Block Button */
.c-more-block__button {
  position: absolute;
  bottom: 0;
  left: 0;
  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;
  overflow: visible;
  width: 100%;
  padding: calc(22.5px + var(--slope-1px) * 7.5);
  outline: none;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 500;
  font-size: calc(18.75px + var(--slope-1px) * 6.25);
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-more-block__button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(180px + var(--slope-1px) * 60);
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(50%, rgba(255, 255, 255, 0.86)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.86) 50%, rgba(255, 255, 255, 0) 100%);
}

.c-more-block.is-open .c-more-block__button {
  background: #fff;
}

.c-more-block.is-open .c-more-block__button:after {
  display: none;
}

.c-more-block__button span {
  position: relative;
  z-index: 1;
  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;
  gap: 7px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #fff;
}

.c-more-block__button span:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>') 50% 50%/contain no-repeat;
}

.c-more-block__button span._close {
  display: none;
  color: #000;
}

.c-more-block__button span._close:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000" viewBox="0 -960 960 960"><path d="M280-440h400v-80H280v80ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>');
}

@media (hover: hover) {
  .c-more-block__button:hover span {
    opacity: 0.7;
  }
}
.c-more-block.is-open .c-more-block__button span._open {
  display: none;
}

.c-more-block.is-open .c-more-block__button span._close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* =============================================================
   Specific Styles for p-style (各プランの色分け設定)
   ============================================================= */
/* 楽まる (Green) */
.p-style .c-more-block#rakumaru .c-more-block__head {
  background: #4ca535;
}

.p-style .c-more-block#rakumaru .c-more-block__button:after {
  background: -webkit-gradient(linear, left bottom, left top, from(#4ca535), color-stop(24%, rgb(76, 165, 53)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #4ca535 0%, rgb(76, 165, 53) 24%, rgba(255, 255, 255, 0) 100%);
}

/* 残クレ (Blue) */
.p-style .c-more-block#zankure .c-more-block__head {
  background: #0088d3;
}

.p-style .c-more-block#zankure .c-more-block__button:after {
  background: -webkit-gradient(linear, left bottom, left top, from(#0088d3), color-stop(24%, rgb(0, 136, 211)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #0088d3 0%, rgb(0, 136, 211) 24%, rgba(255, 255, 255, 0) 100%);
}

/* バリ保 (Orange) */
.p-style .c-more-block#valiho .c-more-block__head {
  background: #f18d00;
}

.p-style .c-more-block#valiho .c-more-block__button:after {
  background: -webkit-gradient(linear, left bottom, left top, from(#f18d00), color-stop(24%, rgb(241, 141, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #f18d00 0%, rgb(241, 141, 0) 24%, rgba(255, 255, 255, 0) 100%);
}

/* =============================================================
   Utility: Border (画像の下線)
   ============================================================= */
.u-border {
  position: relative;
}

.u-border:after {
  content: "";
  display: block;
  width: 91%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

/* =============================================================
   Component: Section Inner
   ============================================================= */
/* =============================================================
   Project: Showroom Grid (一覧レイアウト)
   ============================================================= */
.showroom-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media screen and (max-width: 580px) {
  .showroom-grid {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.showroom-grid__item {
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 10px 3px rgba(99, 99, 99, 0.2);
          box-shadow: 0 0 10px 3px rgba(99, 99, 99, 0.2);
}

/* =============================================================
   Project: Showroom Panel (店舗パネル詳細)
   ============================================================= */
.showroom-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  text-decoration: none !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.showroom-panel:hover {
  opacity: 0.7;
}

.showroom-panel > * {
  -webkit-transition: inherit;
  transition: inherit;
  min-height: 0%;
}

/* Panel Header */
.showroom-panel__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  width: 100%;
  padding: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}

@media screen and (max-width: 580px) {
  .showroom-panel__head {
    font-size: 1.4rem;
  }
}
/* Panel Image */
.showroom-panel__img img {
  display: block;
  width: 100%;
}

/* Panel Info Body */
.showroom-panel__info {
  padding: 2em 1.2em 1em;
  font-size: 1.3rem;
  position: relative;
}

@media screen and (max-width: 580px) {
  .showroom-panel__info {
    font-size: 1rem;
  }
}
/* Definition List (DL) inside Info */
.showroom-panel__info > dl {
  overflow: hidden;
}

.showroom-panel__info > dl dt {
  float: left;
}

.showroom-panel__info > dl dt:after {
  content: "／"; /* 全角スラッシュ */
}

.showroom-panel__info > dl dd {
  overflow: hidden;
}

/* Badge (新車/中古車取扱) */
.showroom-panel__badge {
  display: inline-block;
  position: absolute;
  font-size: 1.3rem;
  top: 0;
  right: 0;
  background: #FFEDC3;
  color: #333;
  padding: 0.5em 1em;
  border-radius: 0 0 0 10px;
}

@media screen and (max-width: 580px) {
  .showroom-panel__badge {
    font-size: 1rem;
  }
}
.showroom-panel._at .showroom-panel__badge {
  background: #f0f0f0;
}

/* Address & Contact Info */
.showroom-panel__zip {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.showroom-panel__address {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}

@media screen and (max-width: 580px) {
  .showroom-panel__address {
    font-size: 1rem;
  }
}
.showroom-panel__tel {
  font-size: 1.5rem;
  margin-bottom: 0.8em;
  font-weight: bold;
}

@media screen and (max-width: 580px) {
  .showroom-panel__tel {
    font-size: 1.2rem;
  }
}
.showroom-panel__close {
  margin-bottom: 0.4em;
}

/* Panel Button */
.p-showroom__btn {
  position: relative;
  background: #DC0707;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0 0 15px 15px;
}

.p-showroom__btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  display: block;
  width: 15px;
  height: 15px;
  margin: auto 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 -960 960 960"><path d="m480-340 180-180-57-56-123 123-123-123-57 56 180 180Zm0 260q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z"/></svg>') 50% 50%/contain no-repeat;
  -webkit-transform: translateX(56px) rotate(-90deg);
          transform: translateX(56px) rotate(-90deg);
}

@media screen and (max-width: 560px) {
  .p-showroom__btn {
    font-size: 15px;
    padding: 0.5em 1.5em 0.5em 0.5em;
  }
  .p-showroom__btn:after {
    right: 3em;
  }
}
/* =============================================================

Accordion

* ============================================================= */
/* ボタンのスタイルリセット */
.accordion-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: inline-block;
  font-size: 0;
}

.accordion-trigger .img-active {
  display: none;
}

.accordion-trigger.is-open .img-default {
  display: none;
}

.accordion-trigger.is-open .img-active {
  display: block;
}

.accordion-content {
  display: none;
}

.accordion-inner {
  padding-top: 25px;
}

/* =============================================================

c-toggle-block / c-toggle-note (折りたたみ構造)

* ============================================================= */
.c-toggle-block__button {
  position: relative;
  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: 100%;
  padding: 0.3em 2em;
  outline: none;
  border-radius: 35px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: calc(18px + var(--slope-1px) * 6);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-toggle-block__button:hover {
  opacity: 0.7;
}

/* ボタン右側の「＋」アイコン表現 */
.c-toggle-block__button:before,
.c-toggle-block__button:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(12px + var(--slope-1px) * 4);
  bottom: 0;
  width: calc(12px + var(--slope-1px) * 4);
  height: 2px;
  margin: auto 0;
  background: currentColor;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-toggle-block__button:not(.is-open):after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-toggle-block__contents {
  display: none;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 5px;
}

/* 注意事項専用のボタンスタイル（枠線あり・背景なし） */
.c-toggle-note .c-toggle-block__button {
  width: 50%;
  max-width: 300px;
  margin-inline: auto;
  font-size: calc(13px + var(--slope-1px) * 3);
  border: 1px solid #fff;
  padding: 0.6em;
  background: none;
  color: #fff;
}

.c-toggle-note .c-toggle-block__button:before,
.c-toggle-note .c-toggle-block__button:after {
  height: 1px;
}

/* =============================================================
c-notes (中のテキストコンテンツ)
============================================================= */
.c-notes {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  text-align: justify;
  text-justify: auto;
}

.c-notes:not(:first-child) {
  margin-top: 30px;
}

.c-notes p + p {
  margin-top: 10px;
}

.c-notes__normal {
  font-size: calc(8px + var(--slope-1px) * 2);
  line-height: 1.5;
}
.c-notes__normal strong {
  font-weight: 700;
}

.c-notes__important {
  font-weight: bold;
  font-size: calc(11px + var(--slope-1px) * 3);
}

.c-notes__kei {
  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;
  padding: 0.25em;
  border: 1px solid;
  background: #e9f6fe;
  text-align: center;
  font-weight: 500;
  font-size: calc(12px + var(--slope-1px) * 2);
}

.c-notes__kei:not(:first-child) {
  margin-top: 12px;
}

@media all and (max-width: 580px) {
  .c-toggle-block__button {
    font-size: 1.2rem;
    padding-block: 0.6em;
  }
  .c-toggle-note {
    margin-top: 20px;
  }
}
/* =============================================================

Add-Sass

* ============================================================= */
.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.t-right {
  text-align: right !important;
  font-size: 11px;
  margin-top: 5px;
}

.color01 {
  color: #333;
}

/* =============================================================

Common

* ============================================================= */
.inner01 {
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (max-width: 800px) {
  .inner01 {
    padding-left: 3.125vw;
    padding-right: 3.125vw;
  }
}

@media all and (min-width: 801px) {
  .hoverImg {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .hoverImg:hover {
    opacity: 0.6;
  }
}

.c-btnWrap {
  text-align: center;
}

.c-btn01 {
  display: inline-block;
  width: 75vw;
  max-width: 600px;
  -webkit-filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.25));
}

.p-anchor {
  padding: 25px;
}
@media all and (max-width: 800px) {
  .p-anchor {
    padding: 3.125vw;
  }
}
.p-anchor .p-anchor-body {
  display: -ms-grid;
  display: grid;
  gap: 22px;
  -ms-grid-columns: 1fr 22px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media all and (max-width: 800px) {
  .p-anchor .p-anchor-body {
    gap: 2.75vw;
  }
}

.c-section__body {
  margin-top: 30px;
}

.c-more-block-wrapper {
  padding-left: 50px;
  padding-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media all and (max-width: 800px) {
  .c-more-block-wrapper {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}

/* =============================================================

Contents

* ============================================================= */
.event01 {
  background-image: url("../img/bg05.png");
  background-repeat: repeat;
  background-size: 40px;
  padding-top: 50px;
  padding-bottom: 60px;
}
.event01 .event01__wrap01 {
  padding-top: 40px;
}
@media all and (max-width: 800px) {
  .event01 {
    padding-top: 20px;
  }
  .event01 .event01__wrap01 {
    padding-top: 5vw;
  }
}
.event01 .event01__wrap01 .inner {
  background: linear-gradient(180deg, #FFF5B7 0%, #FFF 430px);
  border-radius: 10px;
  position: relative;
}
.event01 .event01__wrap01 .inner .img01 img {
  width: 100%;
  height: auto;
}
.event01 .event01__wrap02 {
  margin-top: 20px;
}
.event01 .event01__wrap02 .ttl01 {
  background: #DC0707;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  padding: 6px;
}
.event01 .event01__wrap02 .ttl01 + * {
  margin-top: 15px;
}
@media screen and (max-width: 560px) {
  .event01 .event01__wrap02 .ttl01 {
    font-size: 14px;
  }
}

.event01 .event01__wrap02 .txt01 {
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 560px) {
  .event01 .event01__wrap02 .txt01 {
    font-size: 10px;
  }
}

.accordion-wrap {
  margin-top: 30px;
}
@media screen and (max-width: 560px) {
  .accordion-wrap {
    margin-top: 15px;
  }
}

.c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01,
.c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 {
  background: #FFF;
}
.c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01 .txtWrap__inner01,
.c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 .txtWrap__inner01 {
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}
.c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01 .txtWrap__inner02,
.c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 .txtWrap__inner02 {
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 560px) {
  .c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01 .txtWrap__inner01,
  .c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 .txtWrap__inner01,
  .c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01 .txtWrap__inner02,
  .c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 .txtWrap__inner02 {
    font-size: 11px;
  }
}
.c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01 {
  border-right: 4px solid #008CD6;
  border-bottom: 4px solid #008CD6;
  border-left: 4px solid #008CD6;
}
.c-car-slide__sub .c-car-slide__sub__wrap01 .txtWrap01 .txtWrap__inner01 {
  background: #BDDCF4;
  color: #008CD6;
}
.c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 {
  border-right: 4px solid #666;
  border-bottom: 4px solid #666;
  border-left: 4px solid #666;
}
.c-car-slide__sub .c-car-slide__sub__wrap02 .txtWrap01 .txtWrap__inner01 {
  background: #DDD;
  color: #666;
}

.p-hondaNBox {
  background: -webkit-gradient(linear, left top, left bottom, from(#FCCA00), to(#E86202));
  background: linear-gradient(180deg, #FCCA00 0%, #E86202 100%);
  position: relative;
  padding-bottom: 60px;
}
.p-hondaNBox .bg03 {
  display: block;
  width: 188px;
  height: 140px;
  background-image: url("../img/bg03.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.p-hondaNBox > * {
  position: relative;
  z-index: 10;
}
.p-hondaNBox::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg08.png");
  opacity: 0.25;
  background-repeat: repeat;
  background-size: 40px;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5%, transparent), to(black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, black 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, transparent), to(black));
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, black 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.p-hondaNBox::before {
  content: "";
  display: block;
  width: 100%;
  height: 328px;
  background-image: url("../img/bg02.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.p-hondaNBox .p-hondaNBox__wrap01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 25px;
}

.p-stepWgn {
  background: linear-gradient(180deg, #A8CD27 0%, #0FA921 100%);
  position: relative;
  padding-bottom: 60px;
}
.p-stepWgn > * {
  position: relative;
  z-index: 10;
}
.p-stepWgn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg08.png");
  opacity: 0.25;
  background-repeat: repeat;
  background-size: 40px;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5%, transparent), to(black));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, black 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5%, transparent), to(black));
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 5%, black 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.p-stepWgn::before {
  content: "";
  display: block;
  width: 100%;
  height: 380px;
  background-image: url("../img/bg09.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.p-stepWgn .p-stepWgn__wrap01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 0 25px 25px;
}

.p-newcar {
  background-color: #FAF2CD;
  background-repeat: repeat;
  background-size: 40px;
  position: relative;
}
.p-newcar::after {
  content: "";
  display: block;
  width: 233px;
  height: 322px;
  background-image: url("../img/bg01.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.p-newcar > * {
  position: relative;
  z-index: 1;
}
.p-newcar .c-car-slide-nav-grid {
  margin-top: 50px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (max-width: 800px) {
  .p-newcar .c-car-slide-nav-grid {
    margin-top: 20px;
    padding-left: 3.125vw;
    padding-right: 3.125vw;
  }
}
.p-newcar .c-car-slide__body {
  margin-top: 40px;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (max-width: 800px) {
  .p-newcar .c-car-slide__body {
    padding-left: 3.125vw;
    padding-right: 3.125vw;
    margin-top: 20px;
  }
}
.p-newcar .c-car-slide__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-newcar .c-car-slide__item .arrow01 {
  width: 20vw;
  max-width: 160px;
  margin: 0 auto;
}

.p-norikae {
  background-image: url("../img/bg07.png");
  background-repeat: repeat;
  background-size: 40px;
  padding-bottom: 60px;
}

.p-usedcar02 {
  position: relative;
}
.p-usedcar02 .btn {
  position: absolute;
  bottom: 50px;
  left: 75px;
  -webkit-filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.25));
  width: 81.5vw;
  max-width: 652px;
}
@media all and (max-width: 800px) {
  .p-usedcar02 .btn {
    bottom: 6.25vw;
    left: 9.375vw;
  }
}

.p-prelude-nOne {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  background-image: url("../img/bg06.png");
  background-repeat: repeat;
  background-size: 40px;
  padding: 25px;
}
@media all and (max-width: 800px) {
  .p-prelude-nOne {
    padding: 3.125vw;
  }
}
@media all and (max-width: 800px) {
  .p-prelude-nOne {
    gap: 3.125vw;
  }
}

.p-caution02 {
  background-image: url("../img/bg07.png");
  background-repeat: repeat;
  background-size: 40px;
  padding: 25px;
}
@media all and (max-width: 800px) {
  .p-caution02 {
    padding: 3.125vw;
  }
}

.c-section__head.ttl01 {
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (max-width: 800px) {
  .c-section__head.ttl01 {
    padding-left: 3.125vw;
    padding-right: 3.125vw;
  }
}
.c-section__head.ttl01 + * {
  margin-top: 30px;
}
@media all and (max-width: 800px) {
  .c-section__head.ttl01 + * {
    margin-top: 3.75vw;
  }
}
.c-section__head.ttl05 {
  width: 100%;
  height: 384px;
  position: relative;
}
@media all and (max-width: 800px) {
  .c-section__head.ttl05 {
    height: 48vw;
  }
}
.c-section__head.ttl05::after {
  content: "";
  display: block;
  width: 298px;
  height: 262px;
  background-image: url("../img/bg04.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  position: absolute;
  bottom: -184px;
  right: 0;
}
@media all and (max-width: 800px) {
  .c-section__head.ttl05::after {
    width: 37.25vw;
    height: 32.75vw;
    bottom: -23vw;
  }
}
/*# sourceMappingURL=style.css.map */