@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
/*================================================ メニュー左寄せ ================================================*/
@media screen and (min-width: 768px) {
  .l-main-cont-wrap.car-single .l-side-menu nav.side-menu-inner .menu-btn-wrap {
    left: 28px;
    right: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .l-main-cont-wrap.car-single .l-side-menu nav.side-menu-inner .menu-btn-wrap {
    left: 0;
  }
}

/*================================================ 新車TOP ================================================*/
.car-top-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .car-top-slider-wrapper {
    margin-bottom: calc(58 / 1366 * 100vw);
  }
}
.car-top-slider-wrapper div.car-top-slider {
  display: flex;
  width: 500%;
}
@media screen and (min-width: 768px) {
  .car-top-slider-wrapper div.car-top-slider {
    width: 280%;
  }
}
.car-top-slider-wrapper .slider {
  animation: scroll-left 40s infinite linear 0.5s both;
  display: flex;
}
.car-top-slider-wrapper .slide {
  padding-right: calc(8 / 750 * 100vw);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .car-top-slider-wrapper .slide {
    padding-right: 8px;
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 768px) {
  section.sec-list {
    padding-bottom: 124px;
  }
}
section.sec-list div.sec-list-inner {
  position: relative;
  padding-top: 10vw;
}
@media screen and (min-width: 768px) {
  section.sec-list div.sec-list-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    -moz-column-gap: 38px;
         column-gap: 38px;
    position: relative;
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-list div.sec-list-inner {
    justify-content: flex-end;
  }
}
section.sec-list aside {
  position: sticky;
  top: calc(100 / 750 * 100vw);
  left: 0;
  z-index: 10;
  width: 100%;
  margin-bottom: calc(75 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside {
    width: 21%;
    margin-left: 5%;
    position: sticky;
    top: 50px;
    left: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-list aside {
    margin-left: 48px;
    width: 243px;
  }
}
section.sec-list aside button.open-btn {
  margin: 0;
  background: none;
  z-index: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(267 / 750 * 100vw);
  height: calc(72 / 750 * 100vw);
  padding: 0 1.4em;
}
@media screen and (min-width: 768px) {
  section.sec-list aside button.open-btn {
    width: auto;
    padding: 0;
    position: relative;
    font-size: 16px;
    height: auto;
    color: var(--color-main);
    margin-bottom: 50px;
    pointer-events: none;
  }
}
section.sec-list aside button.open-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: width 0.6s cubic-bezier(0.072, 0.88, 0.165, 1), height 0.6s cubic-bezier(0.072, 0.88, 0.165, 1), background-color 0.2s ease;
  transform-origin: right top;
  opacity: 1;
  z-index: -1;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside button.open-btn::after {
    content: none;
  }
}
section.sec-list aside button.open-btn span {
  transition: all 0.3s;
}
section.sec-list aside button.open-btn .txt {
  transform: translate(0, -0.05em);
}
@media screen and (min-width: 768px) {
  section.sec-list aside button.open-btn .txt {
    transform: translate(0);
  }
}
section.sec-list aside button.open-btn .arrow {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  section.sec-list aside button.open-btn .arrow {
    display: none;
  }
}
section.sec-list aside button.open-btn p {
  display: none;
}
@media screen and (min-width: 768px) {
  section.sec-list aside button.open-btn p {
    margin-left: 1em;
    color: var(--color-sub-txt-v02);
    font-family: var(--font-manrope);
    font-weight: 400;
    display: inline-block;
    font-size: 14px;
  }
}
section.sec-list aside button.open-btn.active .txt {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-list aside button.open-btn.active .txt {
    opacity: 1;
  }
}
section.sec-list aside button.open-btn.active .arrow {
  opacity: 0;
}
section.sec-list aside button.open-btn.active::after {
  opacity: 1;
  width: 100vw;
  height: 154vw;
  right: -2.63vw;
  border-radius: 0;
  background: var(--color-main);
}
section.sec-list aside div.conditions-wrap {
  box-sizing: border-box;
  z-index: 1;
  transition: all 0.3s;
  transform-origin: top right;
  margin: 0 0 0 auto;
  width: 0;
  height: 0;
  pointer-events: none;
  padding: calc(115 / 750 * 100vw) 0;
  top: 0;
  right: 4vw;
  position: absolute;
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-wrap {
    width: 100%;
    height: 100%;
    right: 0;
    padding: 0;
    position: relative;
    pointer-events: fill;
  }
}
section.sec-list aside div.conditions-wrap.active {
  transform: scale(1);
  pointer-events: fill;
  width: 85vw;
  height: auto;
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-wrap.active {
    width: auto;
  }
}
section.sec-list aside div.conditions-wrap.active::after {
  transform: scale(1);
}
section.sec-list aside div.conditions-wrap.active .conditions-inner {
  animation: conditions-inner 0.4s 0.5s ease forwards;
}
section.sec-list aside div.conditions-wrap.active form {
  display: block;
}
@keyframes conditions-inner {
  0% {
    opacity: 0;
    transform: translate(0, 3%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
section.sec-list aside div.conditions-wrap .conditions-inner {
  opacity: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-wrap .conditions-inner {
    opacity: 1;
  }
}
section.sec-list aside div.conditions-wrap .close-btn {
  position: absolute;
  top: -10vw;
  right: 0vw;
  width: calc(27 / 750 * 100vw);
  height: calc(27 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-wrap .close-btn {
    display: none;
  }
}
section.sec-list aside div.conditions-wrap .close-btn::after, section.sec-list aside div.conditions-wrap .close-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 50em;
  transition: 0.3s ease;
}
section.sec-list aside div.conditions-wrap .close-btn::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
section.sec-list aside div.conditions-wrap .close-btn::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
section.sec-list aside div.conditions-wrap form {
  display: none;
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-wrap form {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-number {
    margin-bottom: 50px;
  }
}
section.sec-list aside div.conditions-number h3 {
  font-weight: 500;
  display: inline-block;
  margin-right: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-number h3 {
    font-size: 16px;
  }
}
section.sec-list aside div.conditions-number p {
  display: none;
  color: var(--color-sub-txt-v02);
  font-family: var(--font-manrope);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  section.sec-list aside div.conditions-number p {
    display: inline-block;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset {
    margin-bottom: 25px;
  }
}
section.sec-list aside fieldset legend {
  color: #fff;
  font-size: calc(20 / 750 * 100vw);
  line-height: 1.2em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset legend {
    color: var(--color-sub-txt-v02);
    font-size: 11px;
  }
}
section.sec-list aside fieldset .chip-group.body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: calc(80 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset .chip-group.body {
    display: block;
    margin-bottom: 0;
  }
}
section.sec-list aside fieldset .chip-group.body label.chip {
  width: 48%;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset .chip-group.body label.chip {
    width: auto;
  }
}
section.sec-list aside fieldset .chip-group.price {
  font-family: var(--font-manrope);
  font-weight: 500;
}
section.sec-list aside fieldset .chip-group.price span {
  letter-spacing: 0em;
}
section.sec-list aside fieldset label.chip {
  display: block;
  position: relative;
  z-index: 0;
  padding: 0.6em 0.8em;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-size: calc(24 / 750 * 100vw);
  box-sizing: border-box;
  border-top: solid 1px var(--color-table);
  padding: 1em 0 1em 1em;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset label.chip {
    width: auto;
    display: inline-block;
    margin-bottom: 5px;
    padding: 0.6em 0.8em;
    border-top: none;
    font-size: clamp(10px, 14 / 1366 * 100vw, 14px);
  }
  section.sec-list aside fieldset label.chip:hover input::before {
    background: var(--color-main);
  }
  section.sec-list aside fieldset label.chip:hover span {
    color: #fff;
  }
}
section.sec-list aside fieldset input {
  width: 0;
  height: 0;
  text-align: center;
  line-height: 1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset input {
    color: var(--color-main);
  }
}
section.sec-list aside fieldset input::before {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: calc(8 / 750 * 100vw);
  height: calc(8 / 750 * 100vw);
  background: #666666;
  border-radius: 50em;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset input::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    z-index: -1;
    transform: translate(0);
    transition: all 0.3s;
  }
}
section.sec-list aside fieldset input::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%) scale(0);
  left: 0;
  width: calc(8 / 750 * 100vw);
  height: calc(8 / 750 * 100vw);
  background: var(--color-light-green);
  border-radius: 50em;
  z-index: -1;
  pointer-events: none;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset input::after {
    content: none;
  }
}
section.sec-list aside fieldset input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
section.sec-list aside fieldset input[type=checkbox]:checked {
  /*@include mq(pc) {
      color: #fff;
  }*/
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset input[type=checkbox]:checked::before {
    background: var(--color-main);
  }
}
section.sec-list aside fieldset input[type=checkbox]:checked::after {
  transform: translate(0, -50%) scale(1);
}
section.sec-list aside fieldset span {
  color: var(--color-light-gray);
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-list aside fieldset span {
    color: var(--color-main);
  }
}
section.sec-list aside fieldset input[type=checkbox]:checked + span {
  color: #fff;
}
section.sec-list aside .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: calc(78 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap {
    flex-direction: column;
    width: auto;
    margin: calc(40 / 1366 * 100vw) 0 0 auto;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap button {
    padding: 0 22px;
    margin: 0 0 1em;
  }
}
section.sec-list aside .btn-wrap .search {
  width: 58.8%;
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap .search {
    order: -1;
    background: var(--color-main);
    color: #fff;
    font-size: 11px;
    height: 3.8em;
    width: 100%;
  }
  section.sec-list aside .btn-wrap .search:hover {
    background-color: var(--color-light-green);
  }
  section.sec-list aside .btn-wrap .search svg path {
    stroke: #fff;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-list aside .btn-wrap .search {
    font-size: 13px;
    width: 100%;
    max-width: 216px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-list aside .btn-wrap .search {
    font-size: 13px;
    width: 16.6em;
  }
}
section.sec-list aside .btn-wrap .search .arrow {
  width: calc(18 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap .search .arrow {
    width: 1em;
  }
}
section.sec-list aside .btn-wrap .reset {
  border: solid 1px #fff;
  width: 38%;
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap .reset {
    border: solid 1px var(--color-main);
    width: 14em;
    height: 4em;
    background: none;
    font-size: clamp(10px, 11 / 1366 * 100vw, 11px);
    color: var(--color-main);
    margin-bottom: 0;
  }
  section.sec-list aside .btn-wrap .reset:hover {
    color: var(--color-light-green);
    border: solid 1px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  section.sec-list aside .btn-wrap .reset:hover path {
    stroke: var(--color-light-green);
  }
}
@media screen and (min-width: 1280px) {
  section.sec-list aside .btn-wrap .reset {
    width: 15em;
  }
}
section.sec-list aside .btn-wrap .reset .txt span {
  display: none;
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap .reset .txt span {
    display: inline-block;
  }
}
section.sec-list aside .btn-wrap .reset .arrow {
  width: calc(15 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap .reset .arrow {
    width: 1em;
  }
}
@media screen and (min-width: 768px) {
  section.sec-list aside .btn-wrap .reset path {
    stroke: var(--color-main);
  }
}
section.sec-list aside {
  /*.reset-btn{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      width: 69%;
      border-bottom: solid 1px var(--color-main);
      line-height: 1.2em;
      padding-bottom: 0.8em;
      @include mq(pc) {
          font-size: 13px;
      }
      .txt{
          display: block;
      }
      .arrow{
          display: block;
          width: 1em;
      }
  }*/
}
section.sec-list div.list-cont {
  margin-top: calc(135 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont {
    width: 68%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-list div.list-cont {
    width: calc(100% - 329px);
  }
}
section.sec-list div.list-cont .list-cont-inner {
  margin-bottom: calc(120 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont .list-cont-inner {
    margin-bottom: 55px;
  }
  section.sec-list div.list-cont .list-cont-inner:last-child {
    margin-bottom: 0;
  }
}
section.sec-list div.list-cont .list-index {
  line-height: 1.2em;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: calc(33 / 750 * 100vw);
  margin-left: calc(30 / 750 * 100vw);
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont .list-index {
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 1em;
  }
}
section.sec-list div.list-cont ul {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-montserrat);
  -moz-column-gap: 1.6%;
       column-gap: 1.6%;
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont ul {
    gap: 8px;
  }
}
section.sec-list div.list-cont ul li {
  background: #fff;
  border-radius: calc(10 / 750 * 100vw);
  width: 49.2%;
  margin-bottom: 1.6%;
  padding-top: calc(26 / 750 * 100vw);
  padding-bottom: calc(17 / 750 * 100vw);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont ul li {
    border-radius: 5px;
    width: calc(33.3333333333% - 6px);
    padding-top: calc(25 / 1366 * 100vw);
    padding-bottom: calc(8 / 1366 * 100vw);
    margin-bottom: 0;
  }
}
section.sec-list div.list-cont ul li h2 {
  line-height: 1.2em;
  width: 84%;
  margin: auto;
  font-size: calc(25 / 750 * 100vw);
  flex: 1;
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont ul li h2 {
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
  }
}
section.sec-list div.list-cont ul li .list-car-img {
  width: 84%;
  margin: auto;
  margin: calc(70 / 750 * 100vw) auto 0;
  display: block;
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont ul li .list-car-img {
    margin: calc(43 / 1366 * 100vw) auto 0;
  }
  section.sec-list div.list-cont ul li .list-car-img:hover img {
    transform: scale(0.92);
  }
}
section.sec-list div.list-cont ul li .list-car-img img {
  transition: all 0.3s;
}
section.sec-list div.list-cont ul li div.link-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: calc(20 / 750 * 100vw);
  margin-top: calc(45 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont ul li div.link-wrap {
    margin-top: calc(40 / 1366 * 100vw);
    font-size: clamp(10px, 14 / 1366 * 100vw, 1000px);
  }
}
section.sec-list div.list-cont ul li div.link-wrap a {
  display: block;
  width: 50%;
  text-align: center;
  color: var(--color-sub-txt-v02);
  position: relative;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-list div.list-cont ul li div.link-wrap a:hover {
    color: var(--color-light-green);
  }
}
section.sec-list div.list-cont ul li div.link-wrap a.is-none {
  color: #E8E8E8;
  pointer-events: none;
}
section.sec-list div.list-cont ul li div.link-wrap a::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-sub);
}
section.sec-list div.list-cont ul li div.link-wrap a:last-child::after {
  background: none;
}

div.note-area {
  box-sizing: border-box;
  color: var(--color-sub-txt-v02);
  border-top: solid 1px var(--color-sub);
  padding: calc(40 / 750 * 100vw) 0;
  font-size: calc(18 / 750 * 100vw);
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  div.note-area {
    padding: calc(35 / 1366 * 100vw) 0;
    margin: 0 38px;
    font-weight: 400;
    font-size: clamp(10px, 10 / 1366 * 100vw, 100px);
    line-height: 1.4em;
    letter-spacing: 0.02em;
  }
}

div.car-link-wrap {
  padding-bottom: calc(90 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.car-link-wrap {
    padding: 0 38px 14px;
    margin-bottom: 65px;
  }
}
div.car-link-wrap section {
  padding: calc(60 / 750 * 100vw) 0 0;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap section {
    padding: calc(60 / 1366 * 100vw) 0 0;
  }
}
div.car-link-wrap h2 {
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 1.4em;
  font-size: calc(22 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.car-link-wrap h2 {
    margin-bottom: 1.38em;
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
  }
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }
}
div.car-link-wrap .car-link-box {
  background: rgb(255, 255, 255);
  border: solid 1px #fff;
  box-sizing: border-box;
  position: relative;
  padding: calc(35 / 750 * 100vw) calc(33 / 750 * 100vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: calc(10 / 750 * 100vw);
  margin-bottom: calc(10 / 750 * 100vw);
  min-height: calc(261 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box {
    min-height: auto;
    border-radius: 5px;
    padding: calc(27 / 1366 * 100vw) 5px;
    width: calc(50% - 4px);
    transition: all 0.3s;
    margin-bottom: 0;
  }
  div.car-link-wrap .car-link-box:hover {
    background-color: var(--color-light-green);
    color: #fff;
  }
  div.car-link-wrap .car-link-box:hover .car-link-body-txt {
    color: #fff;
  }
  div.car-link-wrap .car-link-box:hover .service-box-img img {
    transform: scale(1.1);
  }
  div.car-link-wrap .car-link-box:hover .dots {
    background: #fff;
    transform: scale(0.7);
  }
  div.car-link-wrap .car-link-box:hover .dots::after {
    width: 230%;
    height: 230%;
    border: solid 0.15em #fff;
  }
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box.option:hover div.service-box-img img {
    transform: scale(1);
  }
  div.car-link-wrap .car-link-box.option:hover div.service-box-img img:nth-of-type(2) {
    opacity: 0;
  }
  div.car-link-wrap .car-link-box.option:hover div.service-box-img img:nth-of-type(2) {
    opacity: 1;
  }
}
div.car-link-wrap .car-link-box.option div.service-box-img {
  position: relative;
  width: 35%;
  margin-left: 3%;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box.option div.service-box-img {
    width: 23%;
    margin-left: 7%;
  }
}
div.car-link-wrap .car-link-box.option div.service-box-img img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box.large {
    width: 100%;
    padding: 5px;
  }
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box.large .service-box-img {
    width: 28%;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box.large .car-link-txt-box {
    width: 64%;
  }
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box.large .car-link-large-txt {
    font-size: clamp(10px, 24 / 1366 * 100vw, 1000px);
  }
}
div.car-link-wrap .car-link-box .dots {
  position: absolute;
  background-color: var(--color-light-green);
  border-radius: 50vw;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-box .dots {
    top: 10px;
    right: 10px;
    width: calc(8 / 1366 * 100vw);
    height: calc(8 / 1366 * 100vw);
  }
}
div.car-link-wrap .car-link-box .dots::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  border-radius: 50em;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  box-sizing: border-box;
  border: solid 0.15em var(--color-light-green);
}
div.car-link-wrap .service-box-img {
  overflow: hidden;
  isolation: isolate;
  width: 42%;
  border-radius: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .service-box-img {
    border-radius: 3px;
    width: 29%;
    margin-left: 3%;
  }
}
div.car-link-wrap .service-box-img img {
  transition: all 0.3s;
}
div.car-link-wrap .car-link-txt-box {
  width: 52%;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-txt-box {
    width: 63%;
  }
}
div.car-link-wrap .car-link-large-txt {
  font-weight: bold;
  margin-bottom: 0.4em;
  font-size: calc(30 / 750 * 100vw);
  line-height: 1.34em;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-large-txt {
    font-size: clamp(10px, 20 / 1366 * 100vw, 1000px);
  }
}
div.car-link-wrap .car-link-body-txt {
  color: var(--color-sub-txt-v02);
  transition: all 0.3s;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.8em;
}
@media screen and (min-width: 768px) {
  div.car-link-wrap .car-link-body-txt {
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 20px);
    line-height: 1.8em;
    letter-spacing: 0.02em;
  }
}
div.car-link-wrap section.sec-transfer a.m-media-cta {
  padding: calc(35 / 750 * 100vw) calc(33 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.car-link-wrap section.sec-transfer a.m-media-cta {
    padding: 10px;
  }
}
div.car-link-wrap section.sec-transfer div.media-cta-txt-wrap {
  font-size: calc(35 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.car-link-wrap section.sec-transfer div.media-cta-txt-wrap {
    font-size: clamp(10px, 30 / 1366 * 100vw, 1000px);
  }
}

/*================================================ 新車 詳細 ================================================*/
.l-main-cont.car-single .l-lower-title-area {
  padding-top: calc(182 / 750 * 100vw);
  padding-bottom: calc(38 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .l-lower-title-area {
    padding-top: 114px;
    padding-bottom: calc(20 / 1366 * 100vw);
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .l-lower-title-area h1 {
    padding: 0 56px;
    margin-bottom: calc(27 / 1366 * 100vw);
  }
}
.l-main-cont.car-single .l-lower-title-area h1 .large {
  font-size: calc(100 / 750 * 100vw);
  line-height: 0.9em;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .l-lower-title-area h1 .large {
    font-size: clamp(55px, 75 / 1366 * 100vw, 1000px);
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .l-lower-title-area .m-pan-nav {
    padding-right: 74px;
  }
}
.l-main-cont.car-single .car-single-fix-btn {
  display: flex;
  flex-wrap: nowrap;
  padding-left: calc(53 / 750 * 100vw);
  padding-right: calc(15 / 750 * 100vw);
  gap: calc(5 / 750 * 100vw);
  overflow-x: auto;
  box-sizing: border-box;
  width: calc(100% + 20 / 750 * 100vw);
  margin-bottom: calc(73 / 750 * 100vw);
  position: sticky;
  top: calc(100 / 750 * 100vw);
  width: 100vw;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .car-single-fix-btn {
    width: auto;
    position: fixed;
    flex-wrap: wrap;
    bottom: 0;
    right: 0;
    z-index: 5;
    justify-content: flex-end;
    top: auto;
    right: 28px;
    bottom: 28px;
    gap: 5px;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
}
.l-main-cont.car-single .car-single-fix-btn a.m-btn-base {
  margin: 0;
  line-height: 1em;
  font-size: calc(22 / 750 * 100vw);
  height: calc(60 / 750 * 100vw);
  padding: 0 1.4em;
  flex: 0 0 auto;
  width: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .car-single-fix-btn a.m-btn-base {
    width: auto;
    height: 3em;
    padding: 0 1.6em;
    font-size: 1.4vw;
  }
  .l-main-cont.car-single .car-single-fix-btn a.m-btn-base:hover {
    background-color: var(--color-light-green);
  }
}
@media screen and (min-width: 1000px) {
  .l-main-cont.car-single .car-single-fix-btn a.m-btn-base {
    height: 40px;
    padding: 0 22px;
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .car-single-fix-btn a.m-btn-base .txt {
    margin-right: 1.2em;
  }
}
.l-main-cont.car-single .car-single-fix-btn a.m-btn-base .arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single .car-single-fix-btn a.m-btn-base .arrow {
    display: block;
  }
}
.l-main-cont.car-single h2.car-single-cont-title {
  line-height: 1em;
  font-family: var(--font-montserrat);
  margin-bottom: 0.4em;
  font-size: calc(75 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single h2.car-single-cont-title {
    line-height: 0.54em;
    font-size: clamp(10px, 65 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single h2.car-single-cont-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single h2.car-single-cont-title span {
    display: inline-block;
  }
}
.l-main-cont.car-single h2.car-single-cont-title .ja {
  font-size: 0.3em;
  line-height: 1.2em;
  margin-top: 1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single h2.car-single-cont-title .ja {
    font-size: 0.22em;
  }
}
.l-main-cont.car-single h3.car-single-cont-subtitle {
  line-height: 1.2em;
  margin-bottom: 1.2em;
  font-weight: 500;
  font-size: calc(32 / 750 * 100vw);
  color: var(--color-hac-base);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single h3.car-single-cont-subtitle {
    font-size: clamp(10px, 22 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single h3.car-single-cont-subtitle span {
  display: inline-block;
}
.l-main-cont.car-single h3.car-single-cont-subtitle .icon {
  width: 1.2em;
  margin-right: 0.2em;
  transform: translate(0, 0.2em);
}
.l-main-cont.car-single h3.car-single-cont-subtitle .icon.buy {
  width: 1.6em;
}
.l-main-cont.car-single ul.testdrive-list {
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    font-size: clamp(10px, 15 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single ul.testdrive-list li {
  display: block;
  border-radius: calc(5 / 750 * 100vw);
  background: #fff;
  margin-bottom: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list li {
    border-radius: 5px;
    width: calc(25% - 6px);
    margin-bottom: 0;
  }
}
.l-main-cont.car-single ul.testdrive-list li button {
  width: 100%;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: calc(24 / 750 * 100vw);
  padding: 1.6em 2em;
  border-radius: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list li button {
    border-radius: 5px;
    padding: 1.8em 1.2em;
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
    transition: all 0.3s;
  }
  .l-main-cont.car-single ul.testdrive-list li button:hover {
    color: #fff;
    background-color: var(--color-light-green);
  }
  .l-main-cont.car-single ul.testdrive-list li button:hover .arrow::after, .l-main-cont.car-single ul.testdrive-list li button:hover .arrow::before {
    background: #fff;
  }
}
.l-main-cont.car-single ul.testdrive-list li button.is-active {
  color: var(--color-main);
  background: #fff;
}
.l-main-cont.car-single ul.testdrive-list li button.is-active .arrow {
  transform: rotate(270deg);
}
.l-main-cont.car-single ul.testdrive-list li button.is-active .arrow::after, .l-main-cont.car-single ul.testdrive-list li button.is-active .arrow::before {
  background: var(--color-main);
}
.l-main-cont.car-single ul.testdrive-list li button .arrow {
  display: block;
  position: relative;
  transform: rotate(90deg);
  width: 0.8em;
  transition: all 0.3s;
}
.l-main-cont.car-single ul.testdrive-list li button .arrow::before, .l-main-cont.car-single ul.testdrive-list li button .arrow::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.12em;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  right: 0.2em;
  border-radius: 10vw;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: calc(100% - 0.04em) 50%;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list li button .arrow::before, .l-main-cont.car-single ul.testdrive-list li button .arrow::after {
    width: 0.4em;
  }
}
.l-main-cont.car-single ul.testdrive-list li button .arrow::after {
  transform: rotate(-45deg);
}
.l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion {
  padding: 0 1.6em 1.2em;
}
.l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a {
  display: block;
  border-top: solid 1px var(--color-sub);
  font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: calc(26 / 750 * 100vw);
  padding: 4vw 0;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a {
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
    padding: 1vw 0;
    transition: all 0.3s;
  }
  .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a:hover {
    color: var(--color-light-green);
  }
  .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a:hover .arrow::before, .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a:hover .arrow::after {
    background-color: var(--color-light-green);
  }
}
.l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a.tel {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: calc(30 / 750 * 100vw);
  line-height: 1.2em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a.tel {
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a.tel .arrow {
    display: none;
  }
}
.l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a .arrow {
  display: block;
  position: relative;
}
.l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a .arrow::before, .l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a .arrow::after {
  content: "";
  display: block;
  width: 0.3em;
  height: 0.08em;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  right: 0.2em;
  border-radius: 10vw;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: calc(100% - 0.04em) 50%;
  transition: all 0.3s;
}
.l-main-cont.car-single ul.testdrive-list li div.testdrive-accordion a .arrow::after {
  transform: rotate(-45deg);
}
.l-main-cont.car-single ul.exhibition-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2em;
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.exhibition-list {
    gap: 8px;
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single ul.exhibition-list li {
  width: 100%;
  margin-bottom: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.exhibition-list li {
    width: calc(25% - 6px);
    margin-bottom: 0;
  }
}
.l-main-cont.car-single ul.exhibition-list li a {
  display: block;
  border-radius: calc(5 / 750 * 100vw);
  background: #fff;
  padding: 1.6em 2em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.exhibition-list li a {
    border-radius: 5px;
    transition: all 0.3s;
    padding: 1.8em 1.6em;
  }
  .l-main-cont.car-single ul.exhibition-list li a:hover {
    background-color: var(--color-light-green);
    color: #fff;
  }
  .l-main-cont.car-single ul.exhibition-list li a:hover .arrow svg:nth-of-type(1) {
    transform: translate(100%, 0);
  }
  .l-main-cont.car-single ul.exhibition-list li a:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  .l-main-cont.car-single ul.exhibition-list li a:hover .arrow svg path {
    stroke: #fff;
  }
}
.l-main-cont.car-single ul.exhibition-list li a span {
  display: block;
}
.l-main-cont.car-single ul.exhibition-list li a span.arrow {
  overflow: hidden;
  position: relative;
  width: 1em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single ul.exhibition-list li a span.arrow {
    width: 0.7em;
  }
}
.l-main-cont.car-single ul.exhibition-list li a span.arrow svg {
  transition: all 0.3s;
}
.l-main-cont.car-single ul.exhibition-list li a span.arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-120%, 0);
}
.l-main-cont.car-single section.sec-main-img {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-main-img {
    padding: 0 38px;
  }
}
.l-main-cont.car-single section.sec-main-img div.sec-main-img-inner {
  border-top: solid 1px var(--color-main);
  padding: calc(54 / 750 * 100vw) 0 0;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-main-img div.sec-main-img-inner {
    padding: calc(71 / 1366 * 100vw) 0 0;
  }
}
.l-main-cont.car-single section.sec-main-img h2 {
  line-height: 1.2em;
  margin-bottom: 1.6em;
  font-weight: 500;
  font-size: calc(34 / 750 * 100vw);
  padding-left: 1.3em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-main-img h2 {
    padding-left: 0;
    font-size: clamp(10px, 26 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single section.sec-main-img .main-img {
  position: relative;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-main-img .main-img {
    border-radius: 10px;
  }
}
.l-main-cont.car-single section.sec-main-img .main-img {
  overflow: hidden;
  isolation: isolate;
}
.l-main-cont.car-single section.sec-main-img .main-img {
  /*img{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
  }*/
  /*@include mq(pc) {
      aspect-ratio: 1029 / 557;
      display: grid;
      place-items: center;
  }
  img{
      display: block;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
  }*/
}
.l-main-cont.car-single section.sec-testdrive {
  box-sizing: border-box;
  padding: calc(137 / 750 * 100vw) calc(33 / 750 * 100vw) calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-testdrive {
    padding: calc(91 / 1366 * 100vw) 38px calc(65 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-testdrive ul {
  margin-bottom: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-testdrive ul {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-testdrive ul:last-child {
  margin-bottom: 0;
}
.l-main-cont.car-single section.sec-testdrive p {
  margin-bottom: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-testdrive p {
    font-size: calc(15 / 1366 * 100vw);
    margin-bottom: calc(50 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-bodycolor {
  box-sizing: border-box;
  background: #fff;
  position: relative;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor {
    border-radius: 10px;
  }
}
.l-main-cont.car-single section.sec-bodycolor {
  padding: calc(90 / 750 * 100vw) calc(58 / 750 * 100vw);
  margin-bottom: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor {
    padding: 2vw 38px calc(50 / 1366 * 100vw);
    margin-bottom: 18px;
  }
}
.l-main-cont.car-single section.sec-bodycolor h2 {
  margin-bottom: calc(30 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor h2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    top: calc(50 / 1366 * 100vw);
    left: 38px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-main-cont.car-single section.sec-bodycolor h2 {
    top: 50px;
  }
}
.l-main-cont.car-single section.sec-bodycolor h2 .en {
  display: block;
  font-weight: bold;
  font-family: var(--font-montserrat);
  line-height: 0.84em;
  font-size: calc(75 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor h2 .en {
    font-size: clamp(10px, 65 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single section.sec-bodycolor h2 .ja {
  display: block;
  line-height: 1.2em;
  margin-top: 1em;
  font-weight: 500;
  font-size: calc(22 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor h2 .ja {
    font-size: clamp(10px, 15 / 1366 * 100vw, 1000px);
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor div.splide__slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.l-main-cont.car-single section.sec-bodycolor .splide__track {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor div.bodycolor-img {
    width: 57%;
    min-height: 23vw;
    transform: translate(0, 20%);
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor .color-txt-wrap {
    width: 40%;
    order: -1;
  }
}
.l-main-cont.car-single section.sec-bodycolor p.color-txt {
  line-height: 1.2em;
  margin-top: calc(50 / 750 * 100vw);
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor p.color-txt {
    margin-top: 0;
  }
}
.l-main-cont.car-single section.sec-bodycolor p.color-txt .color {
  display: inline-block;
  padding-right: 1.2em;
  margin-right: 1.2em;
  border-right: solid 1px var(--color-sub);
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.2em;
  width: 26%;
  box-sizing: border-box;
  display: none;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor p.color-txt .color {
    font-weight: 400;
    font-size: clamp(10px, 13 / 1366 * 100vw, 18px);
    line-height: 1.76em;
    letter-spacing: 0.02em;
    line-height: 1.1em;
    width: 7em;
  }
}
.l-main-cont.car-single section.sec-bodycolor p.color-txt .colorname {
  display: inline-block;
  font-weight: 500;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.2em;
  width: 67%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor p.color-txt .colorname {
    font-size: clamp(10px, 14 / 1366 * 100vw, 18px);
    line-height: 1.1em;
    width: auto;
  }
}
.l-main-cont.car-single section.sec-bodycolor p.color-note {
  line-height: 1.2em;
  margin-top: 1em;
  color: var(--color-sub-txt-v02);
  font-weight: 400;
  font-size: calc(18 / 750 * 100vw);
  line-height: 1.5em;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor p.color-note {
    font-size: max(8px, 10 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  .l-main-cont.car-single section.sec-bodycolor p.color-note {
    font-size: calc(10 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel {
  margin-top: calc(60 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel {
    width: 40%;
    margin-top: 10px;
  }
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__list {
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: calc(48 / 750 * 100vw);
       column-gap: calc(48 / 750 * 100vw);
  row-gap: calc(38 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__list {
    -moz-column-gap: calc(16 / 1366 * 100vw);
         column-gap: calc(16 / 1366 * 100vw);
    row-gap: calc(10 / 1366 * 100vw);
    height: 4vw;
  }
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__track {
  overflow: visible;
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide {
  border: none;
  box-sizing: border-box;
  transition: all 0.2s;
  width: calc(73 / 750 * 100vw) !important;
  height: calc(73 / 750 * 100vw) !important;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide {
    width: calc(24 / 1366 * 100vw) !important;
    height: calc(24 / 1366 * 100vw) !important;
  }
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide img {
  border-radius: 50em;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide::after {
  content: "";
  display: block;
  width: calc(95 / 750 * 100vw);
  height: calc(95 / 750 * 100vw);
  position: absolute;
  border-radius: 50em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border: solid 1px var(--color-sub);
  z-index: 2;
  box-sizing: border-box;
  transition: all 0.1s;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide::after {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide.is-active {
    transform: scale(1);
    width: calc(36 / 1366 * 100vw) !important;
    height: calc(36 / 1366 * 100vw) !important;
  }
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide.is-active::after {
  transform: translate(-50%, -50%);
}
.l-main-cont.car-single section.sec-bodycolor #thumbnail-carousel .splide__slide.white img {
  border: solid 1px var(--color-light-gray);
}
.l-main-cont.car-single div.bk-bg-wrap {
  background-color: var(--color-main);
}
.l-main-cont.car-single section.sec-features {
  box-sizing: border-box;
  padding: calc(140 / 750 * 100vw) calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features {
    padding: calc(125 / 1366 * 100vw) 53px;
  }
}
.l-main-cont.car-single section.sec-features h2 {
  color: #fff;
  margin-bottom: 1em;
  margin-left: 0.4em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features h2 {
    margin-bottom: 1em;
    margin-left: 0;
  }
}
.l-main-cont.car-single section.sec-features li {
  margin-bottom: calc(120 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
}
.l-main-cont.car-single section.sec-features li:last-child {
  margin-bottom: 0;
}
.l-main-cont.car-single section.sec-features li .features-img {
  aspect-ratio: 710/474;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-img {
    width: 56%;
    aspect-ratio: 561/374;
    position: relative;
  }
}
.l-main-cont.car-single section.sec-features li .features-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-img img {
    border-radius: 10px;
  }
}
.l-main-cont.car-single section.sec-features li .features-img {
  /*img{
      display: block;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      @include radius-cont;
  }*/
}
.l-main-cont.car-single section.sec-features li .features-txt-box {
  width: 90.8%;
  margin: calc(65 / 750 * 100vw) auto 0;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-txt-box {
    width: 39.4%;
    margin: 0;
  }
}
.l-main-cont.car-single section.sec-features li .features-txt-box .cp-txt {
  line-height: 1.2em;
}
.l-main-cont.car-single section.sec-features li .features-txt-box .cp-txt span {
  display: inline-block;
  line-height: 0.8em;
}
.l-main-cont.car-single section.sec-features li .features-txt-box .cp-txt .number {
  color: var(--color-light-green);
  font-family: var(--font-montserrat);
  font-weight: bold;
  padding-right: 1em;
  margin-right: 1em;
  border-right: solid 1px var(--color-sub);
  font-size: calc(26 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-txt-box .cp-txt .number {
    font-size: clamp(10px, 22 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single section.sec-features li .features-txt-box .cp-txt .txt {
  color: #fff;
  vertical-align: 0.15em;
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.2em;
  vertical-align: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-txt-box .cp-txt .txt {
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 20px);
    line-height: 1.8em;
    letter-spacing: 0.02em;
    line-height: 1.2em;
    vertical-align: 0.1em;
  }
}
.l-main-cont.car-single section.sec-features li .features-txt-box h3 {
  color: #fff;
  margin-top: 1.4em;
  font-weight: 700;
  font-size: calc(34 / 750 * 100vw);
  line-height: 1.52em;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-txt-box h3 {
    font-weight: 700;
    font-size: clamp(17px, 26 / 1366 * 100vw, 35px);
    line-height: 1.46em;
    letter-spacing: 0.02em;
  }
}
.l-main-cont.car-single section.sec-features li .features-txt-box p.features-body-txt {
  color: var(--color-light-gray);
  margin-top: 1em;
  font-weight: 400;
  font-size: calc(24 / 750 * 100vw);
  line-height: 1.75em;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-features li .features-txt-box p.features-body-txt {
    margin-top: 2em;
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 20px);
    line-height: 1.8em;
    letter-spacing: 0.02em;
  }
}
.l-main-cont.car-single section.sec-features li .features-txt-box p.features-body-txt span.sup {
  font-size: 0.5em;
  vertical-align: 0.5em;
}
.l-main-cont.car-single section.sec-features li .features-txt-box p.features-body-txt span.small-txt {
  font-size: 0.8em;
  line-height: 1.4;
  display: inline-block;
}
.l-main-cont.car-single section.sec-features li .features-txt-box {
  /* p.features-body-txt{*/
}
.l-main-cont.car-single section.sec-specs {
  background: #fff;
  box-sizing: border-box;
  margin-top: calc(20 / 750 * 100vw);
  padding: calc(100 / 750 * 100vw) calc(60 / 750 * 100vw) calc(50 / 750 * 100vw);
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs {
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs {
    padding: calc(90 / 1366 * 100vw) 38px;
    margin-top: 18px;
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner h2 {
    width: 33%;
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner ul {
  margin-top: calc(80 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner ul {
    width: 67%;
    margin-top: 0;
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li {
  border-bottom: solid 1px var(--color-sub-line05);
  padding: calc(50 / 750 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner li {
    padding: 30px 0;
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li:first-child {
  padding-top: 0;
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dt {
  font-weight: 500;
  line-height: 1.4em;
  font-size: calc(24 / 750 * 100vw);
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dt {
    width: 40%;
    font-size: calc(17 / 1366 * 100vw);
    margin-bottom: 0;
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dt span.e-four {
  margin-left: 1em;
  font-weight: 400;
  font-size: calc(18 / 750 * 100vw);
  line-height: 1.5em;
  letter-spacing: 0.04em;
  color: var(--color-sub-txt-v02);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dt span.e-four {
    font-weight: 400;
    font-size: clamp(10px, 10 / 1366 * 100vw, 100px);
    line-height: 1.4em;
    letter-spacing: 0.02em;
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd {
  font-weight: 400;
  line-height: 1.4em;
  font-size: calc(37 / 750 * 100vw);
  font-family: var(--font-manrope);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd {
    width: 58%;
    font-size: calc(18 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd div.body-size-wrap {
  margin-top: 3%;
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd div.body-size-wrap:first-child {
  margin-top: 0;
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd div.body-size-wrap span {
  display: block;
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd span.sup {
  font-size: 0.5em;
  vertical-align: 0.5em;
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl dd span.small-txt {
  display: block;
  font-size: 0.6em;
  line-height: 1.6;
}
.l-main-cont.car-single section.sec-specs div.sec-specs-inner li dl {
  /* dd*/
}
.l-main-cont.car-single section.sec-guide {
  background: linear-gradient(102deg, rgba(214, 225, 234, 0.9) 15%, rgba(196, 216, 233, 0.9) 94%);
  box-sizing: border-box;
  padding: calc(100 / 750 * 100vw) calc(33 / 750 * 100vw);
  margin-top: calc(20 / 750 * 100vw);
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide {
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide {
    padding: calc(90 / 1366 * 100vw) 38px;
    margin-top: 18px;
  }
}
.l-main-cont.car-single section.sec-guide ul {
  margin-bottom: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide ul {
    margin-bottom: calc(50 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-guide ul:last-child {
  margin-bottom: 0;
}
.l-main-cont.car-single section.sec-guide ul.buy-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2em;
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide ul.buy-list {
    gap: 8px;
    font-size: clamp(10px, 18 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single section.sec-guide ul.buy-list li {
  width: 100%;
  margin-bottom: calc(5 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide ul.buy-list li {
    width: calc(33.3333333333% - 6px);
    margin-bottom: 0;
  }
}
.l-main-cont.car-single section.sec-guide ul.buy-list li a {
  display: block;
  border-radius: calc(5 / 750 * 100vw);
  background: #fff;
  padding: 1.6em 2em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide ul.buy-list li a {
    border-radius: 5px;
    transition: all 0.3s;
    padding: 1.8em 1.6em;
  }
  .l-main-cont.car-single section.sec-guide ul.buy-list li a:hover {
    background-color: var(--color-light-green);
    color: #fff;
  }
  .l-main-cont.car-single section.sec-guide ul.buy-list li a:hover .arrow svg:nth-of-type(1) {
    transform: translate(100%, 0);
  }
  .l-main-cont.car-single section.sec-guide ul.buy-list li a:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  .l-main-cont.car-single section.sec-guide ul.buy-list li a:hover .arrow svg path {
    stroke: #fff;
  }
}
.l-main-cont.car-single section.sec-guide ul.buy-list li a span {
  display: block;
}
.l-main-cont.car-single section.sec-guide ul.buy-list li a span.arrow {
  overflow: hidden;
  position: relative;
  width: 1em;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide ul.buy-list li a span.arrow {
    width: 0.7em;
  }
}
.l-main-cont.car-single section.sec-guide ul.buy-list li a span.arrow svg {
  transition: all 0.3s;
}
.l-main-cont.car-single section.sec-guide ul.buy-list li a span.arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-120%, 0);
}
.l-main-cont.car-single section.sec-guide p {
  margin-bottom: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-guide p {
    font-size: calc(15 / 1366 * 100vw);
    margin-bottom: calc(50 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-recommend {
  box-sizing: border-box;
  overflow: hidden;
  padding: calc(130 / 750 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend {
    padding: calc(114 / 1366 * 100vw) 0 calc(114 / 1366 * 100vw) 53px;
  }
}
.l-main-cont.car-single section.sec-recommend h2.car-single-cont-title {
  margin-left: calc(54 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend h2.car-single-cont-title {
    margin-left: 0;
  }
}
.l-main-cont.car-single section.sec-recommend .m-btn-square-slide-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .m-btn-square-slide-wrap {
    display: flex;
    margin: 0 56px 22px auto;
  }
}
.l-main-cont.car-single section.sec-recommend .recommend-slide-wrap {
  margin-top: calc(55 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .recommend-slide-wrap {
    margin-top: 0;
  }
}
.l-main-cont.car-single section.sec-recommend .recommend-slide {
  padding-right: 80px;
}
.l-main-cont.car-single section.sec-recommend .recommend-slide .slick-slide {
  margin: 0 4px;
}
.l-main-cont.car-single section.sec-recommend .recommend-slide .slick-list {
  margin: 0 -4px;
  overflow: visible;
}
.l-main-cont.car-single section.sec-recommend .splide__slide {
  background: #fff;
  border-radius: 5px;
  padding: calc(46 / 750 * 100vw) 0 calc(17 / 750 * 100vw);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .splide__slide {
    width: calc(33.3333333333% - 6px);
    padding-top: 25px;
    padding-bottom: calc(8 / 1366 * 100vw);
  }
}
.l-main-cont.car-single section.sec-recommend .splide__slide h3 {
  line-height: 1.2em;
  width: 84%;
  margin: auto;
  font-size: calc(25 / 750 * 100vw);
  flex: 1;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .splide__slide h3 {
    font-size: clamp(10px, 17 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single section.sec-recommend .splide__slide a.list-car-img {
  width: 84%;
  margin: calc(60 / 750 * 100vw) auto 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .splide__slide a.list-car-img {
    margin: 43px auto 0;
  }
  .l-main-cont.car-single section.sec-recommend .splide__slide a.list-car-img:hover img {
    transform: scale(0.92);
  }
}
.l-main-cont.car-single section.sec-recommend .splide__slide a.list-car-img img {
  transition: all 0.3s;
}
.l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: calc(45 / 750 * 100vw);
  font-size: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap {
    margin-top: 40px;
    font-size: clamp(10px, 14 / 1366 * 100vw, 1000px);
  }
}
.l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap a {
  display: block;
  width: 50%;
  text-align: center;
  color: var(--color-sub-txt-v02);
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap a {
    transition: all 0.3s;
  }
  .l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap a:hover {
    color: var(--color-light-green);
  }
}
.l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap a.is-none {
  color: #E8E8E8;
  pointer-events: none;
}
.l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap a::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-sub);
}
.l-main-cont.car-single section.sec-recommend .splide__slide div.link-wrap a:last-child::after {
  background: none;
}/*# sourceMappingURL=car.css.map */