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

guide-testdrive

* ============================================================= */
/* CMN-guide-testdrive-base
============================== */
.CMN-guide-testdrive-base {
  display: contents;
  font-size: calc(15px + var(--slope-1px) * 1);

  --slope-1px: clamp(0px, -.95663px + .2551vw, 1px);
  --leading-trim: calc((1em - 1lh) / 2);
  --icon-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.78 10.25"><path fill="%23333" fill-rule="evenodd" d="M.7 10.242a.72.72 0 0 1-.51-.215.744.744 0 0 1 0-1.036l3.82-3.876L.19 1.239a.745.745 0 0 1 0-1.037.715.715 0 0 1 1.02 0l4.34 4.395a.744.744 0 0 1 0 1.036l-4.34 4.394a.7.7 0 0 1-.51.215Z"/></svg>');
  --icon-arrow-white: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5.78 10.25"><path fill="%23fff" fill-rule="evenodd" d="M.7 10.242a.72.72 0 0 1-.51-.215.744.744 0 0 1 0-1.036l3.82-3.876L.19 1.239a.745.745 0 0 1 0-1.037.715.715 0 0 1 1.02 0l4.34 4.395a.744.744 0 0 1 0 1.036l-4.34 4.394a.7.7 0 0 1-.51.215Z"/></svg>');
  --icon-minus: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 18"><path fill="%23333" fill-rule="evenodd" d="M2.0459 9.2998a.9545.9545 0 0 1 .9545-.9546h11.6214a.9545.9545 0 0 1 .9545.9546.9545.9545 0 0 1-.9545.9545H3.0004a.9545.9545 0 0 1-.9545-.9545Z" clip-rule="evenodd"/></svg>');
  --icon-plus: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 40 40"><path fill="%23333" fill-rule="evenodd" d="M20.0003 5.0007c.9205 0 1.6667.7462 1.6667 1.6667v11.6659h11.666c.9204 0 1.6666.7462 1.6666 1.6667 0 .9205-.7462 1.6667-1.6666 1.6667H21.667v11.6659c0 .9205-.7462 1.6667-1.6667 1.6667-.9204 0-1.6666-.7462-1.6666-1.6667V21.6667H6.6677c-.9204 0-1.6666-.7462-1.6666-1.6667 0-.9205.7462-1.6667 1.6666-1.6667h11.666V6.6673c0-.9204.7462-1.6666 1.6666-1.6666Z" clip-rule="evenodd"/></svg>');
}

/* CMN-guide-testdrive-title
============================== */
.CMN-guide-testdrive-title {
  margin-block: var(--leading-trim);
  text-align: center;
  letter-spacing: -.02em;
  font-weight: 500;
  font-size: calc(24px + var(--slope-1px) * 6);
}

/* CMN-guide-testdrive-subtitle
============================== */
.CMN-guide-testdrive-subtitle {
  margin-block: var(--leading-trim);
  padding-bottom: calc(24px + var(--slope-1px) * 8);
  text-align: center;
  font-weight: 500;
  font-size: calc(20px + var(--slope-1px) * 2);
}

/* CMN-guide-testdrive-text
============================== */
.CMN-guide-testdrive-text {
  margin-top: calc(2em + var(--leading-trim));
  margin-bottom: var(--leading-trim);
  text-align: center;
}

/* CMN-guide-testdrive-button
============================== */
.CMN-guide-testdrive-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 9px calc(20px + var(--slope-1px) * 20);
  border: 1px solid var(--base-color, #333);
  border-radius: 60px;
  color: var(--base-color, #333);
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: calc(14px + var(--slope-1px) * 1);
  line-height: 1.1;
  transition: all .1s ease-out;
}

.CMN-guide-testdrive-button:hover {
  background: var(--base-color, #333);
  color: #fff;
}

.CMN-guide-testdrive-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(8px + var(--slope-1px) * 6);
  bottom: 0;
  display: block;
  width: .75em;
  height: .75em;
  margin-block: auto;
  background: var(--icon-arrow) 50% 50%/contain no-repeat;
  transition: all .1s ease-out;
}

.CMN-guide-testdrive-button[href^="#"]:after {
  transform: rotate(90deg);
}

.CMN-guide-testdrive-button:hover:after {
  background-image: var(--icon-arrow-white);
}

.CMN-guide-testdrive-button > span {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* CMN-guide-testdrive-about
============================== */
.CMN-guide-testdrive-about__body {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 47.11538%;
  gap: calc(24px + var(--slope-1px) * 6);
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-about__body {
    grid-template-columns: 100%;
  }
}

.CMN-guide-testdrive-about__title {
  margin-block: var(--leading-trim);
  padding-bottom: 32px;
  font-weight: 500;
  font-size: calc(24px + var(--slope-1px) * 6);
}

.CMN-guide-testdrive-about__lead {
  margin-block: var(--leading-trim);
  padding-bottom: calc(24px + var(--slope-1px) * 8);
  font-weight: 500;
  font-size: calc(18px + var(--slope-1px) * 2);
}

@media screen and (min-width: 768px) {
  .CMN-guide-testdrive-about__lead {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.CMN-guide-testdrive-about__text {
  margin-block: var(--leading-trim);
}

.CMN-guide-testdrive-about__image img {
  border-radius: 10px;
}

.CMN-guide-testdrive-about__foot {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: calc(24px + var(--slope-1px) * 10);
}

@media screen and (min-width: 768px) {
  .CMN-guide-testdrive-about__foot {
    grid-template-columns: repeat(2, 270px);
  }
}

.CMN-guide-testdrive-about__foot .CMN-guide-testdrive-button {
  width: auto;
}

.CMN-guide-testdrive-about-example {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(26px + var(--slope-1px) * 8);
  margin-top: calc(56px + var(--slope-1px) * 8);
  padding-block: 31px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-about-example {
    flex-direction: column;
    padding-block: 27px 32px;
  }
}

.CMN-guide-testdrive-about-example__image {
  width: 85px;
}

.CMN-guide-testdrive-about-example__list {
  display: grid;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-weight: 500;
  font-size: calc(16px + var(--slope-1px) * 2);
  line-height: 1.6;
}

.CMN-guide-testdrive-about-example__list > li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block: var(--leading-trim);
}

.CMN-guide-testdrive-about-example__list > li:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background: url(/common/guide-testdrive/img/icon/check.svg) 50% 50%/contain no-repeat;
}

/* CMN-guide-testdrive-reservation
============================== */
.CMN-guide-testdrive-reservation {
  padding: calc(40px + var(--slope-1px) * 16) calc(20px + var(--slope-1px) * 20);
  border-radius: 12px;
  background: #f2f2f2;
}

.CMN-guide-testdrive-reservation__head {
  margin-bottom: 32px;
}

.CMN-guide-testdrive-reservation__contents {
  display: grid;
  grid-template-columns: 100%;
  gap: 18px;
  padding: calc(24px + var(--slope-1px) * 11) calc(24px + var(--slope-1px) * 15);
  border-radius: 12px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-reservation__contents {
    gap: 40px;
  }
}

.CMN-guide-testdrive-reservation__notes {
  width: fit-content;
  max-width: 100%;
  margin-block: var(--leading-trim);
  margin-inline: auto;
  padding-top: 24px;
}

.CMN-guide-testdrive-reservation__foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: calc(32px + var(--slope-1px) * 8);
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-reservation__foot {
    flex-direction: column;
  }
}

.CMN-guide-testdrive-reservation__foot > * {
  width: 294px;
  max-width: 100%;
}

.CMN-guide-testdrive-reservation-item {
  display: grid;
  align-items: center;
  grid-template-columns: 210px 1fr;
  gap: 18px;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-reservation-item {
    grid-template-columns: 100%;
  }
}

.CMN-guide-testdrive-reservation-item__head {
  display: flex;
  align-items: center;
  gap: calc(10px + var(--slope-1px) * 2);
  font-weight: 500;
  font-size: calc(18px + var(--slope-1px) * 2);
}

.CMN-guide-testdrive-reservation-item__head > i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50px + var(--slope-1px) * 6);
  padding: calc(10px + var(--slope-1px) * 2);
  border-radius: 50%;
  background: #f2f2f2;
}

.CMN-guide-testdrive-reservation-item__head > i._tel {
  padding: calc(13px + var(--slope-1px) * 2);
}

.CMN-guide-testdrive-reservation-item__head > i svg {
  width: 100%;
}

.CMN-guide-testdrive-reservation-item__body {
  margin-block: var(--leading-trim);
}

@media screen and (min-width: 768px) {
  .CMN-guide-testdrive-reservation-item__body {
    padding-left: 17px;
    border-left: 1px solid var(--border-color, #ccc);
  }
}

/* CMN-guide-testdrive-flow
============================== */
.CMN-guide-testdrive-flow {
  display: grid;
  grid-template-columns: 100%;
  gap: calc(30px + var(--slope-1px) * 12);
}

.CMN-guide-testdrive-flow__item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 64px 1fr;
  min-height: 64px;
  border: 1px solid var(--border-color, #ccc);
  border-radius: 8px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-flow__item {
    grid-template-columns: 100%;
  }
}

.CMN-guide-testdrive-flow__item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  width: calc(38px + var(--slope-1px) * 16);
  height: calc(14px + var(--slope-1px) * 4);
  margin-inline: auto;
  background: #ccc;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.CMN-guide-testdrive-flow__number {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: 10px;
  border-radius: 7px 0 0 7px;
  background: var(--bg-dark-color, #444);
  color: #fff;
  font-size: calc(20px + var(--slope-1px) * 4);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-flow__number {
    border-radius: 7px 7px 0 0;
  }
}

.CMN-guide-testdrive-flow__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(20px + var(--slope-1px) * 20);
  padding: calc(20px + var(--slope-1px) * 12);
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-flow__contents {
    flex-direction: column;
    align-items: flex-start;
  }
}

.CMN-guide-testdrive-flow__image {
  flex-shrink: 0;
  max-width: 45%;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-flow__image {
    align-self: center;
    max-width: 100%;
  }
}

.CMN-guide-testdrive-flow__image img {
  width: 330px;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 8px;
}

.CMN-guide-testdrive-flow__text {
  display: grid;
  flex-grow: 1;
  grid-template-columns: 100%;
  gap: calc(20px + var(--slope-1px) * 4);
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-flow__text {
    align-self: stretch;
  }
}

.CMN-guide-testdrive-flow__head {
  margin-block: var(--leading-trim);
  font-weight: 500;
  font-size: calc(20px + var(--slope-1px) * 2);
}

.CMN-guide-testdrive-flow__body {
  margin-block: var(--leading-trim);
}

.CMN-guide-testdrive-flow__body > ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.CMN-guide-testdrive-flow__body > ul > li:before {
  content: "\30fb";
}

.CMN-guide-testdrive-flow__foot {
  display: flex;
  gap: calc(8px + var(--slope-1px) * 4);
}

@media screen and (max-width: 767px) {
  .CMN-guide-testdrive-flow__foot {
    flex-direction: column;
  }
}

/* CMN-guide-testdrive-faq
============================== */
.CMN-guide-testdrive-faq {
  border-top: 1px solid var(--border-color, #ccc);
  line-height: 1.6;
}

.CMN-guide-testdrive-faq:last-child {
  border-bottom: 1px solid var(--border-color, #ccc);
}

.CMN-guide-testdrive-faq__head {
  display: flex;
  align-items: center;
  gap: calc(16px + var(--slope-1px) * 8);
  width: 100%;
  padding-block: calc(20px + var(--slope-1px) * 6);
  padding-inline: calc(12px + var(--slope-1px) * 8);
  outline: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font-size: calc(16px + var(--slope-1px) * 2);
  appearance: none;
}

@media screen and (min-width: 768px) {
  .CMN-guide-testdrive-faq__head {
    transition: opacity .2s;
  }
  .CMN-guide-testdrive-faq__head:hover {
    opacity: .7;
  }
}

.CMN-guide-testdrive-faq__head:before {
  content: "Q.";
  color: var(--key-color, #da1316);
  font-size: calc(18px + var(--slope-1px) * 2);
}

.CMN-guide-testdrive-faq__head:after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-left: auto;
  background: var(--icon-plus) 50% 50%/contain no-repeat;
}

.CMN-guide-testdrive-faq__head.is-open:after {
  background-image: var(--icon-minus);
}

.CMN-guide-testdrive-faq__body {
  overflow: hidden;
  max-height: 0;
  font-size: calc(15px + var(--slope-1px) * 1);
  transition: max-height .3s;
}

.CMN-guide-testdrive-faq__body > p {
  margin-bottom: calc(24px + var(--slope-1px) * 8);
  padding: calc(12px + var(--slope-1px) * 8) calc(16px + var(--slope-1px) * 8);
  border-radius: 8px;
  background: #f2f2f2;
}