@charset "UTF-8";
/* ------------------------
  reset
------------------------ */
body {
  overflow-x: clip;
}

:where(.p-contents) *,
:where(.p-contents) *::after,
:where(.p-contents) *::before {
  box-sizing: border-box;
}
:where(.p-contents) * {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
:where(.p-contents) pre,
:where(.p-contents) textarea {
  overflow: auto;
}
:where(.p-contents) template {
  display: none;
}
:where(.p-contents) details,
:where(.p-contents) main,
:where(.p-contents) summary {
  display: block;
}
:where(.p-contents) input[type=number] {
  width: auto;
}
:where(.p-contents) input[type=search] {
  -webkit-appearance: textfield;
}
:where(.p-contents) input[type=search]::-webkit-search-cancel-button,
:where(.p-contents) input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
:where(.p-contents) progress {
  display: inline-block;
}
:where(.p-contents) small {
  font-size: 75%;
}
:where(.p-contents) sub,
:where(.p-contents) sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
:where(.p-contents) sup {
  top: -0.5em;
}
:where(.p-contents) sub {
  bottom: -0.25em;
}
:where(.p-contents) textarea {
  resize: vertical;
}
:where(.p-contents) audio,
:where(.p-contents) canvas,
:where(.p-contents) iframe,
:where(.p-contents) img,
:where(.p-contents) svg,
:where(.p-contents) video {
  vertical-align: middle;
}
:where(.p-contents) audio:not([controls]) {
  display: none;
}
:where(.p-contents) img {
  border: 0;
  max-width: 100%;
  height: auto;
}
:where(.p-contents) button,
:where(.p-contents) input,
:where(.p-contents) select,
:where(.p-contents) textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}
:where(.p-contents) button {
  overflow: visible;
}
:where(.p-contents) button,
:where(.p-contents) select {
  text-transform: none;
}
:where(.p-contents) input {
  line-height: normal;
}
:where(.p-contents) button,
:where(.p-contents) html input[type=button],
:where(.p-contents) input[type=reset],
:where(.p-contents) input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}
:where(.p-contents) button[disabled],
:where(.p-contents) html input[disabled] {
  cursor: default;
}
:where(.p-contents) button::-moz-focus-inner,
:where(.p-contents) input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:where(.p-contents) code,
:where(.p-contents) kbd,
:where(.p-contents) pre,
:where(.p-contents) samp {
  font-family: monospace;
}
:where(.p-contents) ol,
:where(.p-contents) ul {
  list-style: none;
}
:where(.p-contents) select {
     -moz-appearance: none;
  -webkit-appearance: none;
}
:where(.p-contents) table {
  border-spacing: 0;
  border-collapse: collapse;
}
:where(.p-contents) fieldset {
  border: 0;
}

/*
 * px 基本これを使う
 */
/*
 * pc
 * 第二引数にtrueを設定すると、$minが10pxになります。
 * font-sizeに使うときは設定してください。
 * font-size以外のときは第一引数のみでOKです。
 *
 * .xxxx {
 *   font-size: px(60, true);
 *   margin-top: px(14);
 * }
 */
/* ------------------------
  Base Settings
------------------------ */
:where(.p-contents) {
  word-wrap: break-word;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 * var(--base-font, 1) / 10);
  line-height: 1.6875;

  --base-font: 1.33333rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 767.98px) {
  :where(.p-contents) {
    font-size: calc(14 * var(--base-font, 1) / 10);

    --base-font: 2.777vw;
  }
}
@media (min-width: 1024px) and (max-width: 1920px) {
  :where(.p-contents) {
    --base-font: 0.694vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :where(.p-contents) {
    --base-font: 0.7rem;
  }
}
:where(.p-contents) a {
  text-decoration: none;
  color: #00f;
}
@media (min-width: 768px) {
  :where(.p-contents) a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}

.p-contents.-modal {
  position: relative;
  z-index: 8001;
  min-height: auto;
}

/* ------------------------
  Components
------------------------ */
.hoge {
  width: 100%;
  background: turquoise;
}
.hoge::after {
  content: "：SM";
}
@media (min-width: 768px) {
  .hoge {
    background: violet;
  }
  .hoge::after {
    content: "：MD";
  }
}
@media (min-width: 1280px) {
  .hoge {
    background: wheat;
  }
  .hoge::after {
    content: "：LG";
  }
}

/* 小コメント ------- */
.hoge_small {
  width: 100%;
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1279.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1280px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1280px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-down-lg {
  display: none !important;
  visibility: hidden;
}

.u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.rj-font {
  font-family: "NouvelR";
}

.u-text-normal {
  font-weight: 400;
}

.u-text-medium {
  font-weight: 500;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-right {
  text-align: right;
}

.u-bg-black {
  background-color: #000;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-gray-03 {
  background-color: #e1e1e1;
}

.u-bg-beige {
  background-color: #f1ece3;
}

.u-text-white {
  color: #fff;
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* --------------------------------
	CarMenu
-------------------------------- */
.cl-car-menu__item--features .font-space {
  display: inline-block;
  width: 12px;
}

@media (min-width: 1280px) {
  .car-menu--cl .car-menu__item > a {
    color: #000;
  }
}
/*
* top.css
*
*/
/* --------------------------------------------------------
　　トップに戻る ボタン
-------------------------------------------------------- */
.l-margin {
  background: #fff;
}

.cl-link-top {
  font-weight: bold;
}

.cl-link-top .text-link.arrow:after {
  top: 3px;
  margin-left: 2px;
  background-position: -1em -3em;
  font-size: 1em;
}

/* SP */
@media (max-width: 767px) {
  .cl-link-top {
    margin: 0 0 15px 0;
    text-align: center;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .cl-link-top {
    display: none;
  }
}
/* --------------------------------------------------------
　　ソーシャル
-------------------------------------------------------- */
.l-social {
  background: #fff;
}

.lut-tsr-mv {
  background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/mv_sp.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
  color: #f0f0f0;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .lut-tsr-mv {
    margin-top: 0;
    padding-top: calc(400 * var(--base-font, 1) / 10);
    height: min(128vh, 842 * var(--base-font, 1) / 10);
  }
}
@media (min-width: 768px) {
  .lut-tsr-mv {
    margin-top: 0;
    padding-top: 29.1666666667vw;
    height: 44.5833333333vw;
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/mv_pc.webp);
  }
}
@media (min-width: 1280px) {
  .lut-tsr-mv {
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/mv_ex.webp);
  }
}

@media (min-width: 768px) {
  .lut-tsr-mvTtl {
    position: relative;
    z-index: 1;
  }
}

.lut-tsr-mvTtl_name {
  display: grid;
  font-size: calc(25 * var(--base-font, 1) / 10);
  line-height: 0.95;
}
@media (min-width: 768px) {
  .lut-tsr-mvTtl_name {
    letter-spacing: 0;
    font-size: min(2.0833333333vw, 30 * var(--base-font, 1) / 10);
  }
}
.lut-tsr-mvTtl_name strong {
  font-size: calc(40 * var(--base-font, 1) / 10);
}
@media (min-width: 768px) {
  .lut-tsr-mvTtl_name strong {
    letter-spacing: -0.03em;
    font-size: min(3.5416666667vw, 51 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-mv_copy {
  font-size: calc(14 * var(--base-font, 1) / 10);
  line-height: 1.5;
}
@media (min-width: 768px) {
  .lut-tsr-mv_copy {
    font-size: min(1.1111111111vw, 16 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-mv_caption {
  margin-top: min(0.7638888889vw, 11 * var(--base-font, 1) / 10);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: min(1.6666666667vw, 24 * var(--base-font, 1) / 10);
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .lut-tsr-mv_caption {
    margin-top: calc(20 * var(--base-font, 1) / 10);
    font-size: calc(24 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-mvTtl_caption {
  opacity: 0.8;
  margin-top: calc(14 * var(--base-font, 1) / 10);
  letter-spacing: 0.1em;
  font-size: calc(16 * var(--base-font, 1) / 10);
  line-height: 1;
}
@media (min-width: 768px) {
  .lut-tsr-mvTtl_caption {
    margin-top: 1.3em;
    font-size: min(1.1111111111vw, 16 * var(--base-font, 1) / 10);
  }
}
.lut-tsr-mvTtl_caption .rj-font {
  font-size: calc(21 * var(--base-font, 1) / 10);
}
@media (min-width: 768px) {
  .lut-tsr-mvTtl_caption .rj-font {
    font-size: min(1.4583333333vw, 21 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-mvLine {
  display: inline-block;
  width: 1px;
  height: calc(30 * var(--base-font, 1) / 10);
  -webkit-animation: scrollDown 1.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: scrollDown 1.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  background-color: #fff;
}
@media (min-width: 768px) {
  .lut-tsr-mvLine {
    position: relative;
    z-index: 1;
    height: calc(32 * var(--base-font, 1) / 10);
    background-color: #afafae;
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-mvLine {
    margin-top: calc(17 * var(--base-font, 1) / 10);
  }
}
@-webkit-keyframes scrollDown {
  0% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  25% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  26% {
    transform: scaleY(0);
    transform-origin: top;
  }
  46% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes scrollDown {
  0% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  25% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  26% {
    transform: scaleY(0);
    transform-origin: top;
  }
  46% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

.lut-tsr-design {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .lut-tsr-design {
    background-color: #141428;
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/design_bg_01_sp.jpg);
    background-position: top center;
    background-size: 100% auto;
  }
}
@media (min-width: 768px) {
  .lut-tsr-design {
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/design_bg_01_pc.jpg);
  }
}
@media (min-width: 1280px) {
  .lut-tsr-design {
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/design_bg_01_ex.jpg);
  }
}

.lut-tsr-design_textArea {
  position: relative;
  margin: auto;
  margin-left: calc(50% + 130 * var(--base-font, 1) / 10);
  padding-right: calc(30 * var(--base-font, 1) / 10);
  width: calc(490 * var(--base-font, 1) / 10 + 30 * var(--base-font, 1) / 10);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;

  padding-block: calc(159 * var(--base-font, 1) / 10) calc(154 * var(--base-font, 1) / 10);
}
@media screen and (max-width: 1024px) {
  .lut-tsr-design_textArea {
    margin-left: 58.984375vw;
    padding-right: 2.9296875vw;
    width: 33.984375vw;
    min-width: 300px;

    padding-block: 7.8125vw;
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-design_textArea {
    margin: auto;
    padding: calc(64 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10) calc(80 * var(--base-font, 1) / 10);
    width: 100%;
    min-width: none;
  }
}

.lut-tsr-design_heading {
  text-transform: uppercase;
  font-size: calc(30 * var(--base-font, 1) / 10);
  font-weight: 600;
  line-height: 84%;
}
@media (max-width: 767.98px) {
  .lut-tsr-design_heading {
    font-size: calc(26 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-design_ttl {
  margin-top: calc(47 * var(--base-font, 1) / 10);
  letter-spacing: 0.05em;
  font-size: calc(30 * var(--base-font, 1) / 10);
  line-height: 140%;
}
@media (max-width: 767.98px) {
  .lut-tsr-design_ttl {
    margin-top: calc(378 * var(--base-font, 1) / 10);
    letter-spacing: 0.01em;
    font-size: calc(23 * var(--base-font, 1) / 10);
    line-height: 140%;
  }
}

.lut-tsr-design_txt {
  margin-top: calc(24 * var(--base-font, 1) / 10);
  font-size: calc(16 * var(--base-font, 1) / 10);
  line-height: 180%;
}
@media (max-width: 767.98px) {
  .lut-tsr-design_txt {
    margin-top: calc(10 * var(--base-font, 1) / 10);
    font-size: calc(16 * var(--base-font, 1) / 10);
    font-weight: 500;
    line-height: 160%;
  }
}
.lut-tsr-design_txt + .lut-tsr-design_txt {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .lut-tsr-design_txt + .lut-tsr-design_txt {
    margin-top: calc(27 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-hybrid {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid {
    background-color: #000;
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/hybrid_bg_01_sp.jpg);
    background-position: top center;
    background-size: 100% auto;
  }
}
@media (min-width: 768px) {
  .lut-tsr-hybrid {
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/hybrid_bg_01_pc.jpg);
  }
}
@media (min-width: 1280px) {
  .lut-tsr-hybrid {
    background-image: url(/car_lineup/lutecia/teaser/renewal2025/img/hybrid_bg_01_ex.jpg);
  }
}

.lut-tsr-hybrid_bg {
  width: 100%;
}
.lut-tsr-hybrid_bg img {
  width: 100%;
}

.lut-tsr-hybrid_textArea {
  position: relative;
  margin: auto;
  margin-right: calc(50% - 111 * var(--base-font, 1) / 10);
  padding-left: calc(30 * var(--base-font, 1) / 10);
  width: calc(730 * var(--base-font, 1) / 10 + 30 * var(--base-font, 1) / 10);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;

  padding-block: calc(90 * var(--base-font, 1) / 10) calc(84 * var(--base-font, 1) / 10);
}
@media screen and (max-width: 1024px) {
  .lut-tsr-hybrid_textArea {
    margin-right: auto;
    margin-left: 1.953125vw;
    width: 52.734375vw;

    padding-block: 2.1484375vw 1.5625vw;
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_textArea {
    margin: auto;
    padding: calc(63 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10) calc(80 * var(--base-font, 1) / 10);
    width: 100%;
  }
}

.lut-tsr-hybrid_heading {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: calc(30 * var(--base-font, 1) / 10);
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_heading {
    color: #082878;
    font-size: calc(26 * var(--base-font, 1) / 10);
    line-height: 86%;
  }
}

.lut-tsr-hybrid_ttl {
  margin-top: calc(26 * var(--base-font, 1) / 10);
  letter-spacing: 0.03em;
  font-size: calc(30 * var(--base-font, 1) / 10);
  line-height: 140%;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_ttl {
    margin-top: calc(332 * var(--base-font, 1) / 10);
    letter-spacing: 0.01em;
    font-size: calc(23 * var(--base-font, 1) / 10);
    line-height: 140%;
  }
}
.lut-tsr-hybrid_ttl sup {
  top: -1em;
  font-size: calc(14 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_ttl sup {
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-hybrid_txt {
  margin-top: calc(24 * var(--base-font, 1) / 10);
  font-size: calc(16 * var(--base-font, 1) / 10);
  line-height: 180%;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_txt {
    margin-top: calc(12 * var(--base-font, 1) / 10);
    font-size: calc(16 * var(--base-font, 1) / 10);
    font-weight: 500;
    line-height: 160%;
  }
}
@media (min-width: 768px) {
  .lut-tsr-hybrid_txt {
    max-width: calc(480 * var(--base-font, 1) / 10);
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_txt > .lut-tsr-hybrid_txtSpBlock {
    margin-top: calc(27 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-hybrid_data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: calc(24 * var(--base-font, 1) / 10);
  padding: calc(12 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10) calc(12 * var(--base-font, 1) / 10) calc(40 * var(--base-font, 1) / 10);
  width: calc(304 * var(--base-font, 1) / 10);
  background: rgba(255, 255, 255, 0.1);

  -moz-column-gap: calc(9 * var(--base-font, 1) / 10);

       column-gap: calc(9 * var(--base-font, 1) / 10);
  row-gap: calc(4 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_data {
    margin-top: calc(26 * var(--base-font, 1) / 10);
    padding: calc(16 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10) calc(12 * var(--base-font, 1) / 10) calc(45 * var(--base-font, 1) / 10);
    width: 100%;

    -moz-column-gap: calc(13 * var(--base-font, 1) / 10);

         column-gap: calc(13 * var(--base-font, 1) / 10);
    row-gap: calc(5 * var(--base-font, 1) / 10);
  }
}
@media (min-width: 768px) {
  .lut-tsr-hybrid_data {
    justify-content: flex-start;
  }
}

.lut-tsr-hybrid_dataTag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(4 * var(--base-font, 1) / 10) calc(5 * var(--base-font, 1) / 10) calc(4 * var(--base-font, 1) / 10) calc(7 * var(--base-font, 1) / 10);
  border: 1px solid #8e8e8e;
  font-size: calc(12 * var(--base-font, 1) / 10);
  line-height: 1;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_dataTag {
    padding: calc(4 * var(--base-font, 1) / 10) calc(5 * var(--base-font, 1) / 10) calc(5 * var(--base-font, 1) / 10) calc(5 * var(--base-font, 1) / 10);
    border: 2px solid #8e8e8e;
  }
}
.lut-tsr-hybrid_dataTag sup {
  top: -0.3em;
  font-size: 0.6em;
  font-weight: 400;
}

.lut-tsr-hybrid_dataResult {
  margin-top: calc(-4 * var(--base-font, 1) / 10);
  font-size: calc(18 * var(--base-font, 1) / 10);
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_dataResult {
    letter-spacing: 0.05em;
  }
}
.lut-tsr-hybrid_dataResult em {
  margin-right: calc(2 * var(--base-font, 1) / 10);
  font-size: calc(40 * var(--base-font, 1) / 10);
  font-style: normal;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_dataResult em {
    margin-right: calc(5 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-hybrid_dataCaption {
  margin-left: calc(-5 * var(--base-font, 1) / 10);
  letter-spacing: 0.03em;
  font-size: calc(12 * var(--base-font, 1) / 10);
  font-weight: 400;
  line-height: 137%;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybrid_dataCaption {
    margin-left: calc(-8 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-hybridCaptions {
  margin-top: calc(17 * var(--base-font, 1) / 10);
  padding: calc(8 * var(--base-font, 1) / 10) calc(8 * var(--base-font, 1) / 10) calc(8 * var(--base-font, 1) / 10) calc(24 * var(--base-font, 1) / 10);
  max-width: 490px;
  background: rgba(255, 255, 255, 0.1);
  text-indent: -1.7em;
  letter-spacing: 0.04em;
  color: #afafaf;
  font-size: calc(10 * var(--base-font, 1) / 10);
  line-height: 137%;
}
@media (max-width: 767.98px) {
  .lut-tsr-hybridCaptions {
    margin-top: calc(14 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-color {
  background-color: #000;

  padding-block: calc(150 * var(--base-font, 1) / 10) calc(75 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-color {
    padding-block: calc(43 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-color_heading {
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  font-size: calc(50 * var(--base-font, 1) / 10);
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 767.98px) {
  .lut-tsr-color_heading {
    font-size: calc(32 * var(--base-font, 1) / 10);
    line-height: 92%;
  }
}

.lut-tsr-color_carsList {
  display: grid;
  justify-content: center;
  margin-top: calc(60 * var(--base-font, 1) / 10);

  grid-template-columns: repeat(3, calc(328 * var(--base-font, 1) / 10));
  -moz-column-gap: calc(38 * var(--base-font, 1) / 10);
       column-gap: calc(38 * var(--base-font, 1) / 10);
  row-gap: calc(41 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carsList {
    margin-top: calc(30 * var(--base-font, 1) / 10);

    grid-template-columns: repeat(2, 50%);
    -moz-column-gap: calc(8 * var(--base-font, 1) / 10);
         column-gap: calc(8 * var(--base-font, 1) / 10);
    row-gap: calc(16 * var(--base-font, 1) / 10);
  }
}
.lut-tsr-color_carsList > li figcaption {
  margin-top: calc(8 * var(--base-font, 1) / 10);
  color: #fff;
  font-size: calc(16 * var(--base-font, 1) / 10);
  font-weight: 400;
  line-height: 180%;
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carsList > li figcaption {
    margin-top: calc(4 * var(--base-font, 1) / 10);
    text-align: center;
    font-size: calc(12 * var(--base-font, 1) / 10);
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carsList > li:last-of-type {
    grid-column: 1/3;
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carsList > li:last-of-type img {
    width: calc(50% - 4 * var(--base-font, 1) / 10);
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carsList > li:last-of-type figcaption {
    text-align: left;
  }
}

.lut-tsr-color_carsCaption {
  margin-top: calc(5 * var(--base-font, 1) / 10);
  padding-left: 1.3rem;
  text-indent: -1.3em;
  color: #fff;
  font-size: calc(12 * var(--base-font, 1) / 10);
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carsCaption {
    margin-top: calc(24 * var(--base-font, 1) / 10);
    padding-left: calc(24 * var(--base-font, 1) / 10);
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-color_carsNowrap {
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .lut-tsr-color_carsOrangeDetail {
    display: block;
    margin-top: calc(-6 * var(--base-font, 1) / 10);
    padding-left: calc(23 * var(--base-font, 1) / 10);
    text-align: left;
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}

@media (max-width: 767.98px) {
  .lut-tsr-color_carsRougeDetail {
    display: block;
    margin-top: calc(-6 * var(--base-font, 1) / 10);
    padding-left: calc(85 * var(--base-font, 1) / 10);
    text-align: left;
    font-size: calc(10 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-color_carTag {
  margin-right: calc(5 * var(--base-font, 1) / 10);
  padding: 0 calc(3 * var(--base-font, 1) / 10) calc(1 * var(--base-font, 1) / 10);
  border: 1px solid #fff;
}
@media (max-width: 767.98px) {
  .lut-tsr-color_carTag {
    margin-left: calc(8 * var(--base-font, 1) / 10);
    font-size: calc(10 * var(--base-font, 1) / 10);

    padding-inline: calc(2 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-interior {
  background-color: #000;

  padding-block: calc(75 * var(--base-font, 1) / 10) calc(150 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-interior {
    padding-block: calc(60 * var(--base-font, 1) / 10) calc(80 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-interior_heading {
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  font-size: calc(50 * var(--base-font, 1) / 10);
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 767.98px) {
  .lut-tsr-interior_heading {
    font-size: calc(32 * var(--base-font, 1) / 10);
    line-height: 92%;
  }
}

.lut-tsr-interior_imgWrapper {
  margin-top: calc(60 * var(--base-font, 1) / 10);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767.98px) {
  .lut-tsr-interior_imgWrapper {
    margin-top: calc(38 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-interior_img {
  margin: auto;
  width: calc(808 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-interior_img {
    width: 100%;
  }
}

.lut-tsr-specs {
  width: calc(1060 * var(--base-font, 1) / 10);
  color: #fff;

  margin-inline: auto;
  padding-block: calc(150 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-specs {
    width: calc(330 * var(--base-font, 1) / 10);

    padding-block: calc(80 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-specs_conts {
  display: grid;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;

  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767.98px) {
  .lut-tsr-specs_conts {
    grid-template-columns: 1fr;
  }
}
.lut-tsr-specs_conts dt {
  padding: calc(6 * var(--base-font, 1) / 10) calc(20 * var(--base-font, 1) / 10);
  background-color: rgba(255, 255, 255, 0.1);
  font-size: calc(18 * var(--base-font, 1) / 10);
  font-weight: 700;
}
@media (min-width: 768px) {
  .lut-tsr-specs_conts dt {
    grid-column: 1/3;
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-specs_conts dt {
    padding: calc(7 * var(--base-font, 1) / 10) calc(16 * var(--base-font, 1) / 10);
    font-size: calc(14 * var(--base-font, 1) / 10);
  }
}
.lut-tsr-specs_conts dd {
  padding: calc(16 * var(--base-font, 1) / 10) calc(24 * var(--base-font, 1) / 10);
  border-top: 1px solid #fff;
  font-size: calc(14 * var(--base-font, 1) / 10);
  line-height: 114.286%;
}
@media (max-width: 767.98px) {
  .lut-tsr-specs_conts dd {
    padding: calc(9 * var(--base-font, 1) / 10) calc(7 * var(--base-font, 1) / 10);
    font-size: calc(12 * var(--base-font, 1) / 10);
    line-height: 150%;
  }
}
@media (min-width: 768px) {
  .lut-tsr-specs_conts dd:nth-of-type(2n) {
    position: relative;
  }
  .lut-tsr-specs_conts dd:nth-of-type(2n)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 70%;
    background-color: #fff;
  }
}

.lut-tsr-specs_caption {
  margin-top: calc(31 * var(--base-font, 1) / 10);
  letter-spacing: 0.03em;
  font-size: calc(12 * var(--base-font, 1) / 10);
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .lut-tsr-specs_caption {
    margin-top: calc(16 * var(--base-font, 1) / 10);
    padding-left: 2rem;
    text-indent: -1.8em;
    font-size: calc(10 * var(--base-font, 1) / 10);
    line-height: 137%;
  }
}
.lut-tsr-specs_caption + .lut-tsr-specs_caption {
  margin-top: calc(8 * var(--base-font, 1) / 10);
}
@media (max-width: 767.98px) {
  .lut-tsr-specs_caption + .lut-tsr-specs_caption {
    margin-top: calc(16 * var(--base-font, 1) / 10);
  }
}

.lut-tsr-dealerLink {
  display: flex;
  align-items: center;
  position: relative;
  min-height: calc(65 * var(--base-font, 1) / 10);
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-position 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2211%22%20height%3D%2218%22%20viewBox%3D%220%200%2011%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L9%209L1%2017%22%20stroke%3D%22%23000%22%20stroke-width%3D%221.48571%22%2F%3E%3C%2Fsvg%3E") no-repeat right/calc(20 * var(--base-font, 1) / 10) calc(12 * var(--base-font, 1) / 10);
  background-color: #efdf00;
  color: #000;
  font-size: calc(18 * var(--base-font, 1) / 10);
  font-weight: bold;

  gap: calc(6 * var(--base-font, 1) / 10);
}
.lut-tsr-dealerLink:focus {
  background-color: #d8ca00;
  background-position: right calc(15 * var(--base-font, 1) / 10) center;
}
@media (hover: hover) and (pointer: fine) {
  .lut-tsr-dealerLink:hover {
    background-color: #d8ca00;
    background-position: right calc(15 * var(--base-font, 1) / 10) center;
  }
}
@media (min-width: 768px) {
  .lut-tsr-dealerLink {
    width: calc(490 * var(--base-font, 1) / 10);
    min-height: calc(90 * var(--base-font, 1) / 10);
    background-position: right calc(20 * var(--base-font, 1) / 10) center;
    background-size: calc(10 * var(--base-font, 1) / 10) calc(18 * var(--base-font, 1) / 10);
    font-size: calc(24 * var(--base-font, 1) / 10);

    gap: calc(25 * var(--base-font, 1) / 10);
    margin-inline: auto;
  }
}
@media (max-width: 767.98px) {
  .lut-tsr-dealerLink {
    width: calc(320 * var(--base-font, 1) / 10);

    margin-inline: auto;
  }
}

.lut-tsr-dealerIcon {
  display: grid;
  margin-left: calc(10 * var(--base-font, 1) / 10);
  width: calc(23 * var(--base-font, 1) / 10);
  height: calc(23 * var(--base-font, 1) / 10);

  place-items: center;
}
@media (min-width: 768px) {
  .lut-tsr-dealerIcon {
    margin-left: calc(26 * var(--base-font, 1) / 10);
    width: calc(36 * var(--base-font, 1) / 10);
    height: calc(36 * var(--base-font, 1) / 10);
  }
}
.lut-tsr-dealerIcon img {
  width: 100%;
}

.lut-tsr-footHeight {
  width: 100%;
  height: 50vh;
}

.lut-tsr-foot {
  position: fixed;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100vh;
}

.lut-tsr-foot_inner {
  width: 100%;
  height: 100vh;
}

.lut-tsr-foot_bg {
  width: 100%;
  height: 100%;
}
.lut-tsr-foot_bg img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.lut-tsr-foot_black {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);

  inset: 0;
}

.lut-tsr-foot_car {
  position: absolute;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;

  inset: 0;
}

.lut-tsr-foot_hgroup {
  position: absolute;
  z-index: 3;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;

  inset: 0;
}

.lut-tsr-foot_heading {
  text-align: center;
  font-size: calc(40 * var(--base-font, 1) / 10);
  line-height: 100%;
}

.lut-tsr-foot_coming {
  text-align: center;
  color: #f0f0f0;
  font-size: calc(21 * var(--base-font, 1) / 10);
  line-height: 140%;
}