@charset "UTF-8";

/* mv */
.p-mv {
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}
.p-mv .splide__track {
  height: 650px;
}
.p-mv .splide__slide {
  height: 650px;
  width: auto;
}
.p-mv .splide__slide img {
  height: 100%;
  width: auto;
  display: block;
  border-radius: 30px;
}
@media screen and (max-width: 1280px) {
  .p-mv .splide__track {
    height: 530px;
  }
  .p-mv .splide__slide {
    height: 530px;
  }
}
@media screen and (max-width: 1024px) {
  .p-mv .splide__track {
    height: 480px;
  }
  .p-mv .splide__slide {
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv .splide__track {
    height: 300px;
  }
  .p-mv .splide__slide {
    height: 300px;
  }
}

/* top-banner */
.p-top-banner .content img {
  border-radius: 30px;
}
@media screen and (max-width: 1280px) {
  .p-top-banner .content {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-banner .content {
    max-width: 100%;
  }
}

/* カーラインナップ　lineup */
.p-lineup {
  background-color: var(--bg-white);
}
.p-lineup .car-content {
  margin-bottom: 80px;
}
.p-lineup .car-item {
  margin-bottom: 20px;
  overflow: hidden;
}
.p-lineup .car-summary {
  list-style: none;
  cursor: pointer;
  padding: 15px;
  background-color: var(--bg-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-inner:has(.car-price-label) {
  padding: 0;
}
.p-lineup .car-price-label {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.p-lineup .car-price-label .price {
  font-size: 4.8rem;
  font-weight: bold;
  color: var(--accent-3);
}
.p-lineup .car-price-label .bonus {
  font-size: 1.8rem;
}
.p-lineup .car-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
}
.p-lineup .car-card {
  text-align: center;
  background: #fff;
  border-radius: 5px;
}
.p-lineup .car-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}
.p-lineup .maker-area .sub-lead {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.p-lineup .maker-logo-sp {
  display: none;
}
.p-lineup .car-summary .section-inner {
  position: relative;
  width: 100%;
  text-align: center;
}
.p-lineup .car-summary .section-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--accent-3);
  border-bottom: 3px solid var(--accent-3);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.p-lineup .car-item[open] .car-summary .section-inner::after {
  transform: translateY(-25%) rotate(-135deg);
}
@media screen and (min-width: 768px) {
  .js-accordion .car-answer {
    display: block;
  }
}
@media screen and (max-width: 1280px) {
  .p-lineup .maker-area .sub-lead {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-lineup .car-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup .car-grid {
    max-width: 100%;
  }
  .p-lineup .car-price-label {
    font-size: 2rem;
  }
  .p-lineup .car-price-label .price {
    font-size: 4rem;
  }
  .p-lineup .maker-area .sub-lead {
    font-size: 2.6rem;
  }
  .p-lineup .maker-area .img-area {
    max-width: 80%;
    margin: 0 auto;
  }
  .p-lineup .maker-logo-pc {
    display: none;
  }
  .p-lineup .maker-logo-sp {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .p-lineup .maker-area .sub-lead {
    font-size: 2.4rem;
  }
  .p-lineup .maker-area .img-area {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .p-lineup .car-grid {
    display: flex;
    flex-direction: column;
    max-width: 70%;
    gap: 8px;
  }
  .p-lineup .car-price-label .price {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  .p-lineup .car-price-label {
    font-size: 1.8rem;
  }
  .p-lineup .maker-area .sub-lead {
    font-size: 2rem;
  }
  .p-lineup .car-summary .section-inner::after {
    width: 12px;
    height: 12px;
  }
}

/* リース契約台数　badge */
.p-badge {
  background-color: var(--bg-sub);
}
.p-badge .c-t-main .number {
  font-size: 5.6rem;
  font-weight: 900;
}
.p-badge .content {
  max-width: 1000px;
  margin: 0 auto;
}
.p-badge .content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  margin-bottom: 20px;
}
.p-badge .kome {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .p-badge .content ul {
    column-gap: 25px;
  }
  .p-badge .c-t-main .number {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-badge .c-t-main .number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .p-badge .content ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    max-width: 360px;
    margin: 0 auto 20px;
  }
  .p-badge .content ul li {
    max-width: 160px;
    margin: 0 auto;
  }
  .p-badge .kome {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 430px) {
  .p-badge .content ul {
    max-width: 330px;
  }
  .p-badge .content ul li {
    max-width: 140px;
  }
}

/* ４つの選択肢　option */
.p-option {
  background-color: var(--accent-1);
}
.p-option .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
}
.p-option .content li {
  background-color: var(--bg-white);
  border-radius: 30px 30px 0 0;
  position: relative;
}
.p-option .c-circle {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-white);
  font-size: 4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-bottom: 5px;
}
.p-option .list01 .c-circle {
  border: 8px solid var(--accent-3);
  color: var(--accent-3);
}
.p-option .list02 .c-circle {
  border: 8px solid var(--sub-2);
  color: var(--sub-2);
}
.p-option .list03 .c-circle {
  border: 8px solid var(--accent-4);
  color: var(--accent-4);
}
.p-option .list04 .c-circle {
  border: 8px solid var(--text-main);
  color: var(--text-main);
}
.p-option .list01 .sub-t-area {
  background-color: var(--accent-3);
}
.p-option .list02 .sub-t-area {
  background-color: var(--sub-2);
}
.p-option .list03 .sub-t-area {
  background-color: var(--accent-4);
}
.p-option .list04 .sub-t-area {
  background-color: var(--text-main);
}
.p-option .sub-t-area {
  padding: 40px 20px 10px;
  border-radius: 30px 30px 0 0;
}
.p-option .sub-t-area h3 {
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
.p-option .sub-t-area h3 span {
  font-size: 3.6rem;
  display: block;
  color: var(--accent-1);
}
.p-option .c-t-main .red {
  color: var(--accent-3);
}
.p-option .c-t-main .number {
  font-size: 8rem;
  font-weight: bold;
}
.p-option .img-area {
  padding: 10px 20px 15px;
}
.p-option .img-area img {
  margin-bottom: 10px;
}
.p-option .img-area p {
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-option .sub-t-area h3 span {
    font-size: 3.2rem;
  }
  .p-option .img-area p {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .p-option .content {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
    column-gap: 20px;
    max-width: 600px;
    margin: 60px auto 0;
  }
  .p-option .c-title-area .c-t-main {
    line-height: 1;
  }
  .p-option .sub-t-area {
    padding: 40px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-option .c-t-main .number {
    font-size: 6rem;
  }
}
@media screen and (max-width: 500px) {
  .p-option .sub-t-area h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .p-option .sub-t-area h3 span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 430px) {
  .p-option .content {
    display: flex;
    flex-direction: column;
    max-width: 90%;
  }
  .p-option .c-t-main .number {
    font-size: 5rem;
  }
  .p-option .c-t-main .red {
    line-height: 1.4;
  }
  .p-option .sub-t-area {
    padding: 24px 20px 8px;
  }
  .p-option .c-circle {
    width: 60px;
    height: 60px;
    font-size: 3rem;
  }
  .p-option .img-box {
    display: flex;
    justify-content: center;
  }
  .p-option .img-area img {
    width: auto;
    height: 60px;
    margin: 0 auto 10px;
  }
}

/* こんな方にオススメ　recommend */
.p-recommend .c-dot {
  position: relative;
  display: inline-block;
}
.p-recommend .c-dot::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-3);
  border-radius: 50%;
}
.p-recommend .worry-area {
  position: relative;
  z-index: 2;
}
.p-recommend .worry-area .worry-sp {
  display: none;
}
.p-recommend .down-arrow {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  height: 650px;
  margin: -70px auto 0;
  background-color: var(--bg-white);
  clip-path: polygon(
    15.9% 0%,
    84.1% 0%,
    84.1% 38.5%,
    100% 38.5%,
    50% 100%,
    0% 38.5%,
    15.9% 38.5%
  );
  padding: 100px 20px 0;
  text-align: center;
  box-sizing: border-box;
}
.p-recommend .down-arrow h3 {
  max-width: 682px;
  margin: 0 auto;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 900;
}
.p-recommend .down-arrow h3 span:first-of-type {
  font-size: 5rem;
  color: var(--accent-1);
  -webkit-text-stroke: 10px var(--accent-3);
  stroke-linejoin: round;
  paint-order: stroke fill;
}
.p-recommend .down-arrow h3 span:last-of-type {
  font-size: 4.4rem;
  color: var(--accent-3);
}
.p-recommend .down-arrow p {
  margin: 20px auto 0;
  font-size: 2.2rem;
  font-weight: bold;
}
.p-recommend .down-arrow h3 .br-h3 {
  display: none;
}
.p-recommend .promise-area {
  background-color: var(--bg-accent);
  border-radius: 30px;
  position: relative;
  z-index: 3;
  margin-top: -250px;
  padding-right: 30px;
  padding-left: 30px;
}
.p-recommend .promise-area .c-t-sub {
  text-align: center;
  color: var(--text-white);
}
.p-recommend .promise-area .c-t-sub span {
  color: var(--accent-1);
}
.p-recommend .promise-area .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
  padding-top: 30px;
}
.p-recommend .promise-area .content li {
  background-color: var(--bg-white);
  border-radius: 30px;
  position: relative;
}
.p-recommend .promise-area .c-circle {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border: 3px solid var(--accent-2);
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-recommend .promise-area .c-circle p {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.p-recommend .promise-area .c-circle span {
  padding-right: 0rem;
  font-size: 3.6rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  padding-right: 0.5rem;
}
.p-recommend .promise-area .sub-t-area {
  background-color: var(--accent-2);
  padding: 60px 20px 20px;
  border-radius: 30px 30px 0 0;
}
.p-recommend .promise-area .sub-t-area h3 {
  font-size: 2.1rem;
  text-align: center;
  color: var(--accent-1);
}
.p-recommend .promise-area .img-area {
  padding: 0 20px 20px;
}
@media screen and (max-width: 1280px) {
  .p-recommend .down-arrow h3 {
    max-width: 682px;
    font-size: 3rem;
  }
  .p-recommend .down-arrow h3 span:first-of-type {
    font-size: 4rem;
  }
  .p-recommend .down-arrow p {
    font-size: 2rem;
  }
  .p-recommend .promise-area {
    padding-right: 0px;
    padding-left: 0px;
  }
  .p-recommend .promise-area .sub-t-area {
    padding: 50px 10px 10px;
  }
  .p-recommend .promise-area .sub-t-area h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-recommend .down-arrow {
    height: 600px;
  }
  .p-recommend .down-arrow h3 span:first-of-type {
    font-size: 3.6rem;
  }
  .p-recommend .down-arrow h3 span:last-of-type {
    font-size: 4rem;
  }
  .p-recommend .promise-area .content {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    max-width: 600px;
    margin: 0 auto;
  }
  .p-recommend .promise-area .img-box {
    display: flex;
    justify-content: center;
  }
  .p-recommend .promise-area .img-area img {
    height: 150px;
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend .down-arrow {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    height: 530px;
    margin: -5px auto 0;
    background-color: var(--bg-white);
    clip-path: polygon(
      15% 0%,
      /* 棒の左上（左端から10%内側） */ 85% 0%,
      /* 棒の右上（右端から10%内側） */ 85% 30%,
      /* 棒の右下（ここから三角形へ広がる） */ 100% 30%,
      /* 三角形の右端（画面端100%） */ 50% 100%,
      /* 三角形の頂点（中央最下部） */ 0% 30%,
      /* 三角形の左端（画面端0%） */ 15% 30% /* 棒の左下 */
    );
    padding: 35px 0 0 0;
    text-align: center;
    box-sizing: border-box;
  }
  .p-recommend .down-arrow h3 {
    font-size: 2rem;
  }
  .down-arrow h3 span:first-of-type {
    font-size: 2.6rem;
  }
  .p-recommend .down-arrow h3 span:first-of-type {
    font-size: 3rem;
    -webkit-text-stroke: 8px var(--accent-3);
  }
  .p-recommend .down-arrow h3 span:last-of-type {
    font-size: 3rem;
  }
  .down-arrow h3 span:last-of-type {
    font-size: 2.4rem;
  }
  .p-recommend .down-arrow p {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 600px) {
  .p-recommend .down-arrow {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: -5px auto 0;
    background-color: var(--bg-white);
    clip-path: polygon(
      12% 0%,
      /* 棒の左上（左端から10%内側） */ 88% 0%,
      /* 棒の右上（右端から10%内側） */ 88% 25%,
      /* 棒の右下（ここから三角形へ広がる） */ 100% 25%,
      /* 三角形の右端（画面端100%） */ 50% 100%,
      /* 三角形の頂点（中央最下部） */ 0% 25%,
      /* 三角形の左端（画面端0%） */ 12% 25% /* 棒の左下 */
    );
    padding: 40px 0 0 0;
    text-align: center;
    box-sizing: border-box;
  }
  .p-recommend .down-arrow h3 span:first-of-type {
    font-size: 2.4rem;
    -webkit-text-stroke: 6px var(--accent-3);
  }
  .p-recommend .down-arrow h3 span:last-of-type {
    font-size: 2.4rem;
  }
  .p-recommend .down-arrow p {
    font-size: 1.6rem;
  }
  .p-recommend .worry-area .worry-pc {
    display: none;
  }
  .p-recommend .worry-area .worry-sp {
    display: block;
  }
  .p-recommend .promise-area .img-area img {
    height: 100px;
  }
}
@media screen and (max-width: 460px) {
  .p-recommend .down-arrow {
    padding: 25px 0 0 0;
    clip-path: polygon(
      15% 0%,
      /* 棒の左上（左端から10%内側） */ 85% 0%,
      /* 棒の右上（右端から10%内側） */ 85% 25%,
      /* 棒の右下（ここから三角形へ広がる） */ 100% 25%,
      /* 三角形の右端（画面端100%） */ 50% 100%,
      /* 三角形の頂点（中央最下部） */ 0% 25%,
      /* 三角形の左端（画面端0%） */ 15% 25% /* 棒の左下 */
    );
  }
  .p-recommend .down-arrow h3 .br-h3 {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .p-recommend .down-arrow {
    padding: 20px 0 0 0;
  }
  .p-recommend .down-arrow h3 span:last-of-type {
    font-size: 2rem;
    line-height: 2;
  }
  .p-recommend .down-arrow p {
    font-size: 1.4rem;
  }
  .p-recommend .promise-area .c-circle span {
    font-size: 3rem;
  }
  .p-recommend .promise-area .sub-t-area h3 {
    font-size: 1.6rem;
  }
  .p-recommend .promise-area .img-area {
    padding: 0 15px 15px;
  }
}

/* お客様の声 voice */
.p-voice .content {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  column-gap: 20px;
  row-gap: 60px;
}
.p-voice .img-area {
  margin-bottom: 15px;
}
.p-voice .text-area h3 {
  font-size: 1.8rem;
  color: var(--accent-3);
  font-weight: 600;
  margin-bottom: 15px;
}
.p-voice .text-area .sub-t {
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .p-voice .splide {
    visibility: visible !important;
  }
  .p-voice .splide__track {
    overflow: visible !important;
    display: block !important;
  }
  .p-voice .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px 20px !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
  }
  .p-voice .splide__slide {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
    list-style: none;
  }
}
@media screen and (max-width: 1024px) {
  .p-voice .splide__track {
    overflow: visible;
  }
  .p-voice #voice-slider {
    overflow: hidden;
  }
  .p-voice .splide__list {
    display: flex;
    gap: 0;
  }
  .p-voice .splide__slide {
    flex-shrink: 0;
    opacity: 1;
  }
  .p-voice .img-area {
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .p-voice .img-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
  }
  .p-voice .text-area {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .p-voice .text-area h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .p-voice .text-box {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .p-voice .img-area {
    max-width: 280px;
  }
}
@media screen and (max-width: 430px) {
  .p-voice .img-area {
    max-width: 230px;
    margin: 0 auto 10px;
  }
  .p-voice .text-area h3 {
    margin-bottom: 5px;
  }
}

/* 選ばれる５つの理由 choose */
.p-choose {
  background-color: var(--bg-accent);
}
.p-choose .c-title-area .c-t-main,
.p-choose .c-title-area .c-t-en {
  color: var(--accent-1);
}
.p-choose .c-t-lead {
  color: var(--text-white);
}
.p-choose .content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
}
.p-choose .content li {
  background-color: var(--bg-white);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}
.p-choose .content li:nth-child(-n + 3) {
  grid-column: span 2;
}
.p-choose .content li:nth-child(n + 4) {
  grid-column: span 3;
}
.p-choose .img-area {
  padding: 30px 0 0;
  position: relative;
  z-index: 1;
}
.p-choose .img-area h4 {
  font-size: 2rem;
  color: var(--accent-4);
  margin-bottom: 10px;
  text-align: center;
}
.p-choose .img-area h4 span {
  font-size: 2.6rem;
  color: var(--accent-3);
}
.p-choose .img-box {
  display: flex;
  justify-content: center;
}
.p-choose .img-box img {
  height: 130px;
  width: auto;
}
.p-choose .text-area {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  background-color: var(--bg-sub);
  padding: 20px;
  border-radius: 0 0 30px 30px;
  flex-grow: 1;
}
.p-choose .c-btn--pink {
  width: 700px;
}
@media screen and (max-width: 1280px) {
  .p-choose .content {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-choose .img-area h4 {
    font-size: 1.5rem;
  }
  .p-choose .img-area h4 span {
    font-size: 2.2rem;
  }
  .p-choose .img-box img {
    height: 100px;
  }
  .p-choose .c-btn--pink {
    width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .p-choose .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .p-choose .content li:nth-child(-n + 3),
  .p-choose .content li:nth-child(n + 4) {
    grid-column: span 1;
  }
  .p-choose .img-area h4 {
    font-size: 1.8rem;
  }
  .p-choose .img-area h4 span {
    font-size: 2.2rem;
  }
  .p-choose .img-box img {
    height: 80px;
  }
  .p-choose .content li:last-child {
    grid-column: 1 / 3;
    justify-self: center;
    width: calc(50% - 10px);
  }
  .p-choose .c-btn--pink {
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .p-choose .img-area h4 {
    font-size: 1.4rem;
  }
  .p-choose .img-area h4 span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .p-choose .content {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
  }
  .p-choose .content li:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .p-choose .c-btn--pink {
    width: 90%;
  }
}

/* お得な理由 reason */
.p-reason {
  background-color: var(--bg-main);
}
.p-reason .content {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 80px;
  margin-bottom: 70px;
}
.p-reason .advisor-area {
  margin: 0 auto 40px;
  max-width: 1000px;
}
.p-reason .advisor-area .staff-sp {
  display: none;
}
.p-reason .compare-area {
  max-width: 80%;
  margin: 0 auto;
}
.p-reason .compare-area p {
  padding-top: 10px;
  font-weight: 600;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1280px) {
  .p-reason .content {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason .content {
    gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  .p-reason .content {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto 20px;
  }
  .p-reason .advisor-area .staff-pc {
    display: none;
  }
  .p-reason .advisor-area .staff-sp {
    display: block;
  }
  .p-reason .compare-area {
    max-width: 100%;
  }
  .p-reason .compare-area p {
    font-size: 1.4rem;
  }
}

/* 納車までの流れ flow */
.p-flow {
  background-color: var(--accent-1);
}
.p-flow .content {
  list-style: none;
  padding: 0;
}
.p-flow .content li {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  background-color: var(--bg-white);
  padding: 20px;
  padding-left: 150px;
  margin: 0 auto 80px;
  font-weight: bold;
  border-radius: 10px;
  min-height: 150px;
  max-width: 1000px;
}
.p-flow .content .text-area {
  width: 80%;
}
.p-flow .step-label {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  height: 100%;
  background-color: var(--bg-accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px 50% 50% 10px;
  line-height: 1.2;
  padding: 20px 20px 20px 10px;
}
.p-flow .step-label small {
  font-size: 2.2rem;
  font-weight: 800;
}
.p-flow .step-label b {
  font-size: 4.6rem;
}
.p-flow .content li::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
}
.p-flow .content .step01::after {
  background-image: url("..//images/top/flow01.png");
  right: 10px;
  bottom: -15px;
  width: 220px;
  height: 200px;
}
.p-flow .content .step02::after {
  background-image: url("..//images/top/flow02.png");
  right: 10px;
  bottom: 0px;
  width: 230px;
  height: 150px;
}
.p-flow .content .step03::after {
  background-image: url("..//images/top/flow03.png");
  right: 0px;
  bottom: 0px;
  width: 400px;
  height: 240px;
}
.p-flow .content .step04::after {
  background-image: url("..//images/top/flow04.png");
  right: 120px;
  bottom: 0px;
  width: 200px;
  height: 170px;
}
.p-flow .content .step05::after {
  background-image: url("..//images/top/flow05.png");
  right: 20px;
  bottom: 0px;
  width: 430px;
  height: 150px;
}
.p-flow .content li:not(:last-child) {
  margin-bottom: 100px;
}
.p-flow .content li:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 70px;
  background-color: #8b4513;
  z-index: 10;
}
.p-flow .content li:not(:last-child) h3::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 60px solid #8b4513;
  z-index: 11;
}
.p-flow .content h3 {
  font-size: 2.8rem;
  color: var(--text-sub);
  margin-bottom: 10px;
}
.p-flow .content .text {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-main);
}
@media screen and (max-width: 1280px) {
  .p-flow .content li {
    padding-left: 130px;
  }
  .p-flow .step-label {
    width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .p-flow .content .text-area {
    width: 70%;
  }
  .p-flow .content h3 {
    font-size: 2.4rem;
  }
  .p-flow .content .step01::after {
    width: 22vw;
    height: 20vw;
  }
  .p-flow .content .step02::after {
    width: 24vw;
    height: 20vw;
  }
  .p-flow .content .step03::after {
    width: 40vw;
    height: 22vw;
  }
  .p-flow .content .step04::after {
    width: 20vw;
    height: 18vw;
  }
  .p-flow .content .step05::after {
    width: 40vw;
    height: 22vw;
  }
  .p-flow .content li:not(:last-child) {
    margin-bottom: 70px;
  }
  .p-flow .content li:not(:last-child)::before {
    bottom: -50px;
    width: 18px;
    height: 50px;
  }
  .p-flow .content li:not(:last-child) h3::after {
    border-top: 30px solid #8b4513;
    bottom: -70px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow .step-label {
    position: relative;
    width: 100%;
    border-radius: 0;
    flex-direction: row;
    column-gap: 10px;
    padding: 10px;
    border-radius: 10px 10px 0 0;
  }
  .p-flow .content li {
    padding: 0;
  }
  .p-flow .step-label b {
    font-size: 3.6rem;
  }
  .p-flow .content h3 {
    font-size: 2.2rem;
  }
  .p-flow .content .text-area {
    padding: 20px;
  }
  .p-flow .content .text {
    font-size: 1.6rem;
  }
  .p-flow .content .step04::after {
    right: 30px;
  }
  .p-flow .content .step05::after {
    right: 8px;
  }
}
@media screen and (max-width: 600px) {
  .p-flow .content .text-area {
    width: 100%;
    padding: 15px 20px 60px;
  }
  .p-flow .content h3 {
    font-size: 2rem;
  }
  .p-flow .content .step02 h3 br {
    display: none;
  }
  .p-flow .content .step01::after {
    bottom: -40px;
  }
  .p-flow .content .step02::after {
    bottom: -45px;
  }
  .p-flow .content .step03::after {
    bottom: -10px;
    height: 33vw;
    width: 33vw;
    right: 0;
    background-image: url("..//images/top/flow03-sp.png");
  }
  .p-flow .content .step04::after {
    bottom: -10px;
  }
  .p-flow .content .step05::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 430px) {
  .p-flow .content .step01::after {
    width: 34vw;
    height: 25vw;
    bottom: -30px;
  }
  .p-flow .content .step02::after {
    width: 30vw;
    height: 30vw;
    bottom: -23px;
  }
  .p-flow .content .step03::after {
    width: 35vw;
    height: 35vw;
  }
  .p-flow .content .step04::after {
    width: 30vw;
    height: 18vw;
    right: 0px;
  }
  .p-flow .content .step05::after {
    width: 50vw;
    height: 22vw;
  }
}

/* お客様インタビュー interview */
.p-interview {
  background-color: var(--bg-sub);
}
.p-interview .lead-area {
  display: grid;
  grid-template-columns: 65% 35%;
  background-color: var(--bg-white);
  border-radius: 30px;
  padding: 60px;
  margin-bottom: 100px;
}
.p-interview .lead-area .text-area {
  padding-right: 20px;
}
.p-interview .lead-area .text {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .p-interview .lead-area {
    grid-template-columns: 75% 25%;
    padding: 40px;
  }
  .p-interview .lead-area .img-area {
    max-width: 200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-interview .lead-area {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 30px 20px;
  }
  .p-interview .lead-area .text-area {
    padding-right: 0;
  }
  .p-interview .lead-area .text {
    font-size: 1.6rem;
  }
  .p-interview .c-title-area .c-t-sub {
    text-align: center;
  }
}
@media screen and (max-width: 430px) {
  .p-interview .c-title-area .c-t-sub br {
    display: none;
  }
}

/* profile */
.p-interview .profile-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 50px;
}
.p-interview .profile-area .img-area {
  position: relative;
}
.p-interview .profile-area .img-area .bubble {
  position: absolute;
  top: -40px;
  left: -10px;
  width: 250px;
  height: auto;
  z-index: 2;
}
.p-interview .profile-area .text-area .inner {
  width: fit-content;
  margin: 30px auto 0;
}
.p-interview .profile-area h3 {
  font-size: 2.8rem;
  color: var(--accent-3);
  margin-bottom: 30px;
  text-align: left;
}
.p-interview .profile-area .car-info {
  font-size: 1.8rem;
  max-width: 360px;
  color: var(--text-sub);
}
.p-interview .profile-area .car-info p {
  margin-bottom: 10px;
  border-bottom: 2px dashed var(--accent-2);
  padding-bottom: 10px;
}
.p-interview .profile-area .car-info span {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 5px;
  min-width: 300px;
  display: inline-block;
  text-align: center;
  margin-left: 20px;
}
@media screen and (max-width: 1280px) {
  .p-interview .profile-area .img-area .bubble {
    top: -50px;
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .p-interview .profile-area .text-area .inner {
    margin: 0 auto;
  }
  .p-interview .profile-area h3 {
    margin-bottom: 10px;
  }
  .p-interview .profile-area .car-info {
    max-width: 400px;
    font-size: 1.5rem;
  }
  .p-interview .profile-area .car-info span {
    min-width: 250px;
    padding: 3px;
  }
}
@media screen and (max-width: 767px) {
  .p-interview .profile-area {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .p-interview .profile-area .img-area {
    max-width: 400px;
    margin: 0 auto;
  }
  .p-interview .profile-area .img-area .bubble {
    width: 160px;
  }
}
/* lead */
.p-interview .sub-t-area p {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-sub);
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .p-interview .sub-t-area p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview .sub-t-area p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-interview .sub-t-area p {
    font-size: 2rem;
    text-align: left;
  }
}
@media screen and (max-width: 430px) {
  .p-interview .sub-t-area p br {
    display: none;
  }
}
/* qa */
.p-interview .qa-area {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-bottom: 80px;
}
.p-interview .qa-area .column {
  display: grid;
  grid-template-columns: 60% 40%;
}
.p-interview .qa-area .column.bottom {
  display: grid;
  grid-template-columns: 40% 60%;
}
.p-interview .qa-area .text-area ul {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.p-interview .qa-area .text-area .q-area {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}
.p-interview .qa-area .text-area .a-area {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.p-interview .qa-area .text-area .icon {
  font-weight: bold;
  font-size: 3.2rem;
  margin-right: 10px;
  padding-bottom: 5px;
  flex-shrink: 0;
  width: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-interview .qa-area .text-area .q-area .icon {
  color: var(--accent-3);
}
.p-interview .qa-area .text-area .a-area .icon {
  color: var(--text-main);
}
.p-interview .qa-area .text-area h3 {
  font-size: 2.2rem;
  color: var(--text-sub);
}
.p-interview .qa-area .text-area .a-area p {
  font-size: 1.8rem;
}
.p-interview .qa-area .img-area {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.p-interview .qa-area .top .img-area {
  padding-left: 50px;
}
.p-interview .qa-area .bottom .img-area {
  padding-right: 50px;
  row-gap: 0;
}
.p-interview .qa-area .caption {
  padding-top: 10px;
}
.p-interview .qa-area .bottom .interview05-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-interview .qa-area .text-area h3 {
    font-size: 2rem;
  }
  .p-interview .qa-area .text-area .a-area p {
    font-size: 1.6rem;
  }
  .p-interview .qa-area .text-area .icon {
    font-size: 2.6rem;
    width: 40px;
    height: 40px;
  }
  .p-interview .qa-area .top .img-area {
    padding-left: 20px;
  }
  .p-interview .qa-area .bottom .img-area {
    padding-right: 20px;
  }
  .p-interview .qa-area .caption {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview .qa-area .column {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .p-interview .qa-area .text-area ul {
    row-gap: 30px;
  }
  .p-interview .qa-area .top .img-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    padding-left: 0;
  }
  .p-interview .qa-area .column.bottom {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .p-interview .qa-area .bottom .img-area {
    padding-right: 0;
  }
  .p-interview .qa-area .bottom .interview05-pc {
    display: none;
  }
  .p-interview .qa-area .bottom .interview05-sp {
    display: block;
  }
}
/* message */
.p-interview .message-area {
  background-color: var(--bg-white);
  border-radius: 30px;
  padding: 40px;
  position: relative;
}
.p-interview .message-area .title-img {
  position: absolute;
  width: 175px;
  height: auto;
  top: -20px;
  left: -10px;
}
.p-interview .message-area p {
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .p-interview .message-area p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview .message-area p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 600px) {
  .p-interview .message-area {
    padding: 30px;
    border-radius: 20px;
  }
  .p-interview .message-area p {
    font-size: 1.6rem;
  }
  .p-interview .message-area .title-img {
    width: 150px;
  }
  .p-interview .qa-area .text-area .q-area {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 430px) {
  .p-interview .qa-area .top .img-area {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
}

/* お客様スペース　lounge */
.p-lounge {
  background-color: var(--bg-accent);
}
.p-lounge .c-title-area h2 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 20px;
}
.p-lounge .c-title-area .title-en {
  max-width: 700px;
  margin: 0 auto;
}
.p-lounge .c-layout {
  margin-bottom: 50px;
}
.p-lounge .c-layout .img-area {
  height: 450px;
  overflow: hidden;
  border-radius: 0 100px 100px 0;
}
.p-lounge .c-layout .reverse .img-area {
  border-radius: 100px 0 0 100px;
}
.p-lounge .text-area h3 {
  font-size: 3.8rem;
  color: var(--accent-1);
  margin-bottom: 10px;
}
.p-lounge .text-area p {
  color: var(--text-white);
  line-height: 1.8;
}
@media screen and (max-width: 1280px) {
  .p-lounge .c-title-area .title-en {
    max-width: 600px;
  }
  .p-lounge .text-area h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-lounge .text-area h3 {
    font-size: 2.8rem;
  }
  .p-lounge .c-layout .img-area {
    height: 350px;
    border-radius: 0 50px 50px 0;
  }
  .p-lounge .c-layout .reverse .img-area {
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-lounge .c-title-area h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .p-lounge .c-title-area .title-en {
    max-width: 80%;
  }
  .p-lounge .text-area h3 {
    font-size: 2.6rem;
  }
  .p-lounge .c-layout .img-area {
    height: 300px;
  }
  .p-lounge .c-layout .img-area,
  .p-lounge .c-layout .reverse .img-area {
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .p-lounge .text-area h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 430px) {
  .p-lounge .c-title-area .title-en {
    max-width: 95%;
  }
  .p-lounge .c-layout .img-area {
    height: 250px;
  }
}

/* よくある質問　faq */
.p-faq {
  background-color: var(--bg-main);
}
.p-faq .content {
  padding: 0 50px;
}
.p-faq .c-qa-list {
  max-width: 800px;
  margin: 0 auto;
}
.p-faq .c-qa-item {
  border-bottom: 1px solid #fff;
}
.p-faq .c-qa-question {
  display: flex;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.p-faq .c-qa-question::-webkit-details-marker {
  display: none;
}
.p-faq .c-qa-icon {
  font-weight: bold;
  font-size: 3.8rem;
  margin-right: 15px;
  flex-shrink: 0;
  width: 40px;
}
.p-faq .c-qa-question .c-qa-icon {
  color: var(--accent-3);
}
.p-faq .c-qa-answer .c-qa-icon {
  color: var(--accent-2);
}
.p-faq .c-qa-text {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  padding-right: 30px;
  display: flex;
  align-items: center;
}
.p-faq .c-qa-arrow {
  position: absolute;
  right: 20px;
  width: 12px;
  height: 8px;
  background-color: var(--text-main);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s;
}
.p-faq .c-qa-item[open] .c-qa-arrow {
  transform: rotate(180deg);
}
.p-faq .c-qa-item[open] > .c-qa-answer {
  animation: none;
}
.p-faq .c-qa-answer {
  overflow: hidden;
}
.p-faq .c-qa-answer-inner {
  display: flex;
  align-items: flex-start;
  align-items: center;
  padding-bottom: 20px;
}
.p-faq .c-qa-item:not([open]) .c-qa-answer {
  height: 0;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .p-faq .content {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-faq .c-qa-icon {
    font-size: 3.2rem;
    margin-right: 10px;
    width: 36px;
  }
  .p-faq .c-qa-text {
    font-size: 1.6rem;
  }
}

/* ヒストリー　history */
.p-history {
  background-color: var(--bg-sub);
}
.p-history .lead-area {
  display: grid;
  grid-template-columns: 58% 42%;
  margin-bottom: 30px;
}
.p-history .text-area p {
  line-height: 2;
}
.p-history .name-area {
  padding-top: 40px;
  text-align: right;
  display: flex;
  justify-content: right;
}
.p-history .name-area p {
  text-align: left;
  line-height: 1.5;
}
.p-history .name-area span {
  font-size: 2.4rem;
}
@media screen and (max-width: 1120px) {
  .p-history .c-title-area .c-t-sub .br-1120 {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .p-history .lead-area {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 10px;
  }
  .p-history .lead-area .img-box {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-history .name-area span {
    font-size: 2rem;
  }
  .p-history .text-area p {
    line-height: 1.6;
  }
}

/* 店舗情報　Information */
.p-shopinfo .content {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
.p-shopinfo .info-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-shopinfo .img-area img {
  border-radius: 30px;
}
.p-shopinfo .info-area {
  padding-left: 40px;
}
.p-shopinfo .info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.p-shopinfo .info-table tr {
  margin-bottom: 30px;
}
.p-shopinfo .info-table th {
  width: 9em;
  vertical-align: middle;
  padding-right: 15px;
  color: var(--accent-2);
}
.p-shopinfo .info-table tr:last-child th,
.p-shopinfo .info-table tr:last-child td {
  border-bottom: none;
}
.p-shopinfo .address-br {
  display: none;
}
.p-shopinfo .c-link-tel {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
.p-shopinfo .info-table .space {
  margin-right: 2em;
}
.p-shopinfo .parking-area .text-area {
  padding-right: 40px;
}
.p-shopinfo .c-title-area .c-t-lead {
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .p-shopinfo .content {
    row-gap: 60px;
  }
  .p-shopinfo .info-area {
    padding-left: 20px;
  }
  .p-shopinfo .info-table th {
    width: 6em;
  }
}
@media screen and (max-width: 767px) {
  .p-shopinfo .info-box {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .p-shopinfo .info-area {
    padding-left: 0px;
  }
  .p-shopinfo .info-box .img-area {
    max-width: 450px;
    margin: 0 auto;
  }
  .c-link-tel {
    pointer-events: auto;
    cursor: pointer;
  }
}
