@charset "UTF-8";
/*
 * px 基本これを使う
 */
/*
 * pc
 * 第二引数にtrueを設定すると、$minが10pxになります。
 * font-sizeに使うときは設定してください。
 * font-size以外のときは第一引数のみでOKです。
 *
 * .xxxx {
 *   font-size: px(60, true);
 *   margin-top: px(14);
 * }
 */
.p-btnList {
  display: grid;
  margin-top: 15px;

  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767.98px) {
  .p-btnList {
    margin-top: calc(6 * var(--base-font, 1) / 10);

    gap: calc(20 * var(--base-font, 1) / 10);
  }
}

.p-btnItem {
  position: relative;
}
.p-btnItem button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 50px;
  border: 1px solid #000;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 46px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .p-btnItem button {
    justify-content: flex-start;
    padding: calc(10 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10) calc(10 * var(--base-font, 1) / 10) calc(10 * var(--base-font, 1) / 10);
    min-height: calc(46 * var(--base-font, 1) / 10);
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}
.p-btnItem button .rj-font {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .p-btnItem button .rj-font {
    font-size: calc(12 * var(--base-font, 1) / 10);
  }
}
.p-btnItem button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 9px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: url("/car_lineup/common2025/img/icon_arw_under.svg") no-repeat center/cover;
}
@media (max-width: 767.98px) {
  .p-btnItem button:before {
    right: calc(10 * var(--base-font, 1) / 10);
    width: calc(8 * var(--base-font, 1) / 10);
    height: calc(5 * var(--base-font, 1) / 10);
  }
}
.p-btnItem button[aria-expanded=true]:before {
  transform: rotateX(180deg);
}

.p-select {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  left: 0;
  border: 1px solid #000;
  border-top: 0;
  width: 100%;
  height: 0;
}

.p-select_item {
  background-color: #fff;
}
.p-select_item:not(:first-child) {
  border-top: 1px solid #d9d9d9;
}
.p-select_item:first-child {
  border-top: 1px solid #000;
}

.p-select_label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 50px;
  width: 100%;
  height: 46px;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .p-select_label {
    justify-content: flex-start;
    padding: calc(10 * var(--base-font, 1) / 10);
    height: calc(46 * var(--base-font, 1) / 10);
    text-align: left;
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}
.p-select_label.is-inactive {
  background-color: #f0f0f0;
  pointer-events: none;
  color: #8e8e8e;
}
.p-select_label .rj-font {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .p-select_label .rj-font {
    font-size: calc(12 * var(--base-font, 1) / 10);
  }
}
.p-select_label input[type=radio] {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  cursor: pointer;

  -webkit-appearance: none;

     -moz-appearance: none;

          appearance: none;
}
.p-select_label input[type=radio]:focus {
  opacity: 1;
}

#app {
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}
#app[v-cloak] {
  visibility: hidden;
  opacity: 0;
  transition-delay: 0.3s;
}

.p-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1140px;

  padding-inline: 20px;
}
@media (max-width: 767.98px) {
  .p-inner {
    padding-inline: calc(20 * var(--base-font, 1) / 10);
  }
}

.p-spec {
  padding-block: 50px 115px;
}
@media (max-width: 767.98px) {
  .p-spec {
    padding-block: calc(60 * var(--base-font, 1) / 10) calc(200 * var(--base-font, 1) / 10);
  }
}

.p-spec_body {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .p-spec_body {
    margin-bottom: calc(20 * var(--base-font, 1) / 10);
  }
}

.p-backLink {
  text-align: right;
}
.p-backLink a {
  display: inline-flex;
  justify-content: flex-end;
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;

  -moz-column-gap: 9px;

       column-gap: 9px;
}
.p-backLink a:focus img {
  transform: translateX(-5px);
}
@media (hover: hover) and (pointer: fine) {
  .p-backLink a:hover img {
    transform: translateX(-5px);
  }
}
.p-backLink a img {
  width: 7px;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.p-backLink.-bottom {
  margin-top: 60px;
  text-align: center;
}

.p-heading {
  font-size: 40px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-heading {
    margin-top: 30px;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 767.98px) {
  .p-heading {
    font-size: calc(20 * var(--base-font, 1) / 10);
  }
}

.p-lead {
  margin-top: 35px;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .p-lead {
    margin-top: calc(32 * var(--base-font, 1) / 10);
    font-size: calc(12 * var(--base-font, 1) / 10);
  }
}

.p-layout {
  display: grid;

  -moz-column-gap: 40px;

       column-gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767.98px) {
  .p-layout {
    -moz-column-gap: calc(20 * var(--base-font, 1) / 10);
         column-gap: calc(20 * var(--base-font, 1) / 10);
  }
}
.p-layout.-blue {
  background-color: #f0f5fc;
}
.p-layout.-gap0 {
  position: relative;

  -moz-column-gap: 0;

       column-gap: 0;
}
.p-layout.-gap0:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: calc(100% - 30px);
  background-color: #d9d9d9;
}
@media (max-width: 767.98px) {
  .p-layout.-gap0:before {
    height: calc(100% - 28 * var(--base-font, 1) / 10);
  }
}

.p-specBody {
  display: grid;
}
.p-specBody > div {
  grid-column: 1/2;
  grid-row: 1/2;
}

.p-specText {
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .p-specText {
    font-size: calc(13 * var(--base-font, 1) / 10);
  }
}

.p-specList {
  width: 100%;
  text-align: left;
}
.p-specList > li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
  line-height: 145%;
}
.p-specList > li:not(:first-child) {
  padding-top: 10px;
}
.p-specList > li:last-child {
  border-bottom: none;
}

.p-accordion {
  overflow: hidden;
  position: relative;
  height: 180px;
}
@media (max-width: 767.98px) {
  .p-accordion {
    height: calc(80 * var(--base-font, 1) / 10);
  }
}
.p-accordion:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(rgba(255, 255, 255, 0), white);
  pointer-events: none;
}
.p-accordion[aria-hidden=false]:before {
  opacity: 0;
}

.p-moreBtn {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .p-moreBtn {
    margin-top: calc(30 * var(--base-font, 1) / 10);
  }
}
.p-moreBtn button {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;

  -moz-column-gap: 4px;

       column-gap: 4px;
}
@media (max-width: 767.98px) {
  .p-moreBtn button {
    font-size: calc(11 * var(--base-font, 1) / 10);

    -moz-column-gap: calc(4 * var(--base-font, 1) / 10);

         column-gap: calc(4 * var(--base-font, 1) / 10);
  }
}
.p-moreBtn button > i {
  display: block;
  position: relative;
  width: 10px;
  height: 10px;
}
@media (max-width: 767.98px) {
  .p-moreBtn button > i {
    width: calc(10 * var(--base-font, 1) / 10);
    height: calc(10 * var(--base-font, 1) / 10);
  }
}
.p-moreBtn button > i:before,
.p-moreBtn button > i:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #000;
}
@media (max-width: 767.98px) {
  .p-moreBtn button > i:before,
  .p-moreBtn button > i:after {
    height: calc(2 * var(--base-font, 1) / 10);
  }
}
.p-moreBtn button > i:after {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: rotate(90deg);
}
.p-moreBtn button[aria-expanded=true] > i:after {
  transform: rotate(0);
}

.p-fixBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1;
  top: auto;
  right: 0;
  bottom: 72px;
  left: 0;
  width: 100%;
  height: calc(50 * var(--base-font, 1) / 10);
  background-color: #fff;
  box-shadow: 0 calc(-15 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10) calc(-15 * var(--base-font, 1) / 10) rgba(0, 0, 0, 0.1);
}
.p-fixBtn a {
  display: block;
  position: relative;
  width: calc(30 * var(--base-font, 1) / 10);
  height: calc(30 * var(--base-font, 1) / 10);
  background-color: #303030;
}
.p-fixBtn a:before,
.p-fixBtn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: calc(18 * var(--base-font, 1) / 10);
  height: calc(2 * var(--base-font, 1) / 10);
  background-color: #fff;
}
.p-fixBtn a:before {
  transform: rotate(45deg);
}
.p-fixBtn a:after {
  transform: rotate(-45deg);
}

.p-notes {
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .p-notes {
    margin-bottom: calc(20 * var(--base-font, 1) / 10);
  }
}
.p-notes > li {
  display: flex;
  align-items: baseline;
  letter-spacing: 0.003em;
  color: #4b4b4b;
  font-size: 1.2rem;
  line-height: 137%;

  -moz-column-gap: 10px;

       column-gap: 10px;
}
@media (max-width: 767.98px) {
  .p-notes > li {
    font-size: 1rem;
  }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.fade-enter-from,
.fade-leave-to {
  visibility: hidden;
  opacity: 0;
}

/* --------------------------------
  hero
-------------------------------- */
.p-specHero {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .p-specHero {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .p-specHero {
    margin-bottom: calc(33 * var(--base-font, 1) / 10);
  }
}

.p-specHero_inner {
  display: grid;
  align-items: flex-start;

  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .p-specHero_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .p-specHero_inner.-kangoo {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .p-specHero_body {
    padding-left: 10px;
  }
}
@media (max-width: 1024px) {
  .p-specHero_body {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;

    row-gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .p-specHero_body {
    row-gap: calc(9 * var(--base-font, 1) / 10);
  }
}

@media (max-width: 767.98px) {
  .p-specHero_img {
    width: 100%;
  }
}
.p-specHero_img img {
  width: 100%;
}

.p-specHero_title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .p-specHero_title {
    font-size: calc(16 * var(--base-font, 1) / 10);
  }
}

.p-specHero_label {
  display: inline-flex;
  margin-top: 15px;
  padding: 5px 10px;
  background-color: #000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1024px) {
  .p-specHero_label {
    margin-top: auto;
  }
}
@media (max-width: 767.98px) {
  .p-specHero_label {
    padding: calc(4 * var(--base-font, 1) / 10) calc(8 * var(--base-font, 1) / 10);
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}

/* --------------------------------
  price
-------------------------------- */
.p-specPrice {
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .p-specPrice {
    font-size: calc(14 * var(--base-font, 1) / 10);
  }
}
.p-specPrice .rj-font {
  font-size: 2.9rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .p-specPrice .rj-font {
    font-size: calc(18 * var(--base-font, 1) / 10);
  }
}

.p-specPrice_list {
  display: grid;

  row-gap: calc(5 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .p-specPrice_list {
    row-gap: calc(7 * var(--base-font, 1) / 10);
  }
}
.p-specPrice_list dl {
  display: grid;
  align-items: center;

  grid-template-columns: 90px 1fr;
}
@media (max-width: 767.98px) {
  .p-specPrice_list dl {
    grid-template-columns: 1fr;
  }
}
.p-specPrice_list dl dt {
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .p-specPrice_list dl dt {
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}
.p-specPrice_list dl dd {
  margin-left: auto;
}

/* --------------------------------
  color
-------------------------------- */
.p-specColor_inner {
  display: flex;
  justify-content: center;

  -moz-column-gap: 18px;

       column-gap: 18px;
}
@media (max-width: 767.98px) {
  .p-specColor_inner {
    -moz-column-gap: calc(8 * var(--base-font, 1) / 10);
         column-gap: calc(8 * var(--base-font, 1) / 10);
  }
}

.p-specColor_block {
  width: 40px;
  height: 40px;
}
@media (max-width: 767.98px) {
  .p-specColor_block {
    width: calc(20 * var(--base-font, 1) / 10);
    height: calc(20 * var(--base-font, 1) / 10);
  }
}
.p-specColor_block.-color1 {
  background-color: #e1e1dd;
}
.p-specColor_block.-color2 {
  background-color: #626262;
}
.p-specColor_block.-color3 {
  background-color: #000;
}
.p-specColor_block.-color4 {
  background-color: #336c97;
}
.p-specColor_block.-color5 {
  background-color: #e03f25;
}
.p-specColor_block.-border {
  border: 1px solid #c8c8c8;
}

.p-table.-main {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .p-table.-main {
    margin-top: calc(40 * var(--base-font, 1) / 10);
  }
}

.p-table_title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  width: 100%;
  min-height: 60px;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .p-table_title {
    min-height: calc(32 * var(--base-font, 1) / 10);
    font-size: calc(12 * var(--base-font, 1) / 10);
  }
}

.p-table_subTitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  background-color: #f7f7f7;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .p-table_subTitle {
    min-height: calc(32 * var(--base-font, 1) / 10);
    font-size: calc(12 * var(--base-font, 1) / 10);
  }
}
.p-table_subTitle.-blue {
  background-color: #e7eff9;
}

.p-table_body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  min-height: 85px;
}
@media (max-width: 767.98px) {
  .p-table_body {
    padding: calc(14 * var(--base-font, 1) / 10);
    min-height: calc(60 * var(--base-font, 1) / 10);
  }
}

/*
* spec.css
*
*/