@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,500&display=swap');

.main-stage * {
  margin: 0;
  color: inherit;
}

@media not all and (max-width: 960px) {
  .kv .forSP,
  .main-stage .forSP {
    display: none;
  }
}

@media (max-width: 960px) {
  .kv .forPC,
  .main-stage .forPC {
    display: none;
  }
}

.main-stage {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", "Hiragino sans", sans-serif;
  font-weight: 400;
  color: #1C1C1C;
}

@-webkit-keyframes line_extend {
  0% {
    -webkit-transform: scaleX(0);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

@keyframes line_extend {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes line_shrink {
  0% {
    -webkit-transform: scaleX(1);
  }

  100% {
    -webkit-transform: scaleX(0);
  }
}

@keyframes line_shrink {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

/*--------------------
  PC
--------------------*/
@media not all and (max-width: 960px) {
  html,
  body {
    min-width: 1480px;
  }

  .main-stage {
    margin-top: 0;
  }

  .main-stage .inner {
    position: relative;
    margin: 0 auto;
    max-width: 1360px;
  }
  
  .roboto {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
  }
  
  /*---------------------
  loading
  ---------------------*/
  .loadnow #stage {
    height: 101vh;
    overflow: hidden;
  }
  
  .loadingWrap {
    width: 100%;
    height: calc(100% - 100px);
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: #FFF;
    display: none;
  }
  
  .loadingWrap__progress {
    width: 100%;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    margin-top: -3px;
    background-color: #BA103E;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: transform 0.3s linear;
  }
  /*---------------------
  red line txt
  ---------------------*/
  .lineTxt {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 120px;
    line-height: 1.05;
    letter-spacing: 7.7px;
    color: #BA103E;
    white-space: nowrap;
  }
  
  .lineTxt__inner {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0s 0.6s linear;
  }
  
  .lineTxt::before,
  .lineTxt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #BA103E;
    transform: scaleX(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .lineTxt::before {
    transform-origin: left top;
  }
  
  .lineTxt::after {
    transform-origin: right top;
  }
  
  /* アニメーション実行 */
  .multipleLines.is-show .lineTxt__inner,
  .lineTxt.is-show .lineTxt__inner {
    opacity: 1;
  }
  
  .multipleLines.is-show .lineTxt::before,
  .lineTxt.is-show::before {
    animation: line_extend 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  }
  
  .multipleLines.is-show .lineTxt::after,
  .lineTxt.is-show::after {
    animation: line_shrink 0.6s 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  }
  
  /* 複数行遅延 */
  .multipleLines.is-show .lineTxt--02::before,
  .lineTxt--02.is-show::before {
    animation-delay: 0.1s;
  }
  .multipleLines.is-show .lineTxt--02::after,
  .lineTxt--02.is-show::after {
    animation-delay: 0.7s;
  }
  .lineTxt--02 .lineTxt__inner {
    transition-delay: 0.7s;
    margin-left: -9px;
  }
  
  .multipleLines.is-show .lineTxt--03::before,
  .lineTxt--03.is-show::before {
    animation-delay: 0.2s;
  }
  .multipleLines.is-show .lineTxt--03::after,
  .lineTxt--03.is-show::after {
    animation-delay: 0.8s;
  }
  .lineTxt--03 .lineTxt__inner {
    transition-delay: 0.8s;
    margin-left: -3px;
  }
  
  .multipleLines.is-show .lineTxt--04::before,
  .lineTxt--04.is-show::before {
    animation-delay: 0.3s;
  }
  .multipleLines.is-show .lineTxt--04::after,
  .lineTxt--04.is-show::after {
    animation-delay: 0.9s;
  }
  .lineTxt--04 .lineTxt__inner {
    transition-delay: 0.9s;
    margin-left: -5.5px;
  }
  
  .multipleLines.is-show .lineTxt--05::before,
  .lineTxt--05.is-show::before {
    animation-delay: 0.4s;
  }
  .multipleLines.is-show .lineTxt--05::after,
  .lineTxt--05.is-show::after {
    animation-delay: 1s;
  }
  .lineTxt--05 .lineTxt__inner {
    transition-delay: 1s;
  }
  
  /*---------------------
  white line copy
  ---------------------*/
  .copy {
    padding-top: 0;
    font-size: 16px;
    line-height: 2.1875;
    letter-spacing: 1.28px;
  }
  
  .copy__item {
    display: block;
    width: 0;
    overflow: hidden;
    transition: width 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  }
  
  .copy__item:nth-child(n + 2) {
    margin-top: -4px;
  }
  
  .copy__item:nth-child(2) {
    transition-delay: 0.1s;
  }
  
  .copy__item:nth-child(3) {
    transition-delay: 0.2s;
  }
  
  .copy.is-show .copy__item {
    width: 100%;
  }
  
  .copy__item span {
    display: inline-block;
    padding: 2px 8px;
    background-color: #fff;
    white-space: nowrap;
  }
  
  .copy__item span sup {
    font-size: 11px;
    vertical-align: 0;
    padding-right: 0;
  }
  
  
  /**
   * multi line animation
   */
  .scrollMulti {
    overflow: hidden;
    transition: width 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  }
  
  /** 
   * kv
   */
  
  .kv {
    position: relative;
    z-index: 9;
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .kv::before,
  .kv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #1C1C1C;
    transform: scaleX(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .kv::before {
    transform-origin: left top;
  }
  
  .kv::after {
    transform-origin: right top;
  }
  
  .kv img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0s 0.8s linear;
  }
  
  /* アニメーション実行 */
  .kv.is-show img ,
  .kv.is-show .kv__note {
    opacity: 1;
  }
  
  .kv.is-show::before {
    animation: line_extend 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  }
  
  .kv.is-show::after {
    animation: line_shrink 0.8s 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  }
  
  .kv__copy {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    margin-left: -656px;
    padding-top: 16px;
    text-align: left;
  }
  
  .kv__copy .lineTxt {
    font-size: 80px;
    color: #FFF;
    letter-spacing: 0.015em;
    line-height: 1;
  }
  
  .kv__copy .lineTxt--02,
  .kv__copy .lineTxt--03 {
    color: #BA103E;
  }
  
  .kv__copy .lineTxt--02 {
    font-size: 116px;
  }
  .kv__note {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
  }
  .kv__note p {
    margin-right: 8px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.2px;
    color: #FFF;
    text-align: right;
  }


  /**
   * promotion
   */
  .promotion {
    margin-top: 40px;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }

  .promotion.is-show {
    opacity: 1;
  }
  
  
  /** 
   * new
   */
  
  .new {
    background: url(/car/wagonr_stingray/home/img/img_new.jpg) center top no-repeat;
    height: 661px;
  }
  
  .new .lineTxt,
  .new .lineTxt span {
    padding-top: 0;
    font-size: 47px;
    line-height: 1.17;
    letter-spacing: 1.88px;
  }
  
  .new__txt {
    background: #FFF;
    display: inline-block;
    min-width: 361px;
    margin: 166px 0 0 113px;
    text-align: center;
  }
  
  .new__txt p {
    display: inline-block;
    font-size: 16px;
    padding: 30px;
    line-height: 2.175;
    letter-spacing: 1.28px;
    box-sizing: border-box;
    text-align: left;
  }

  .new__txt p span {
    font-size: 22px;
  }
  
  .new h2 {
    padding-top: 0;
    margin: 13px 0 0 113px;
  }
  
  /** 
   * brake
   */
  
  .brake {
    position: relative;
    margin-top: -40px;
    text-align: right;
    display: block;
  }
  
  .brake .copy {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .brake .copy {
    white-space: nowrap;
  }
  
  .brake__txt {
    background: #F0F0F0;
    box-sizing: border-box;
    padding: 10px 20px;
    display: inline-block;
    margin: 0 0 0 auto;
    color: #1C1C1C;
  }
  
  .brake__txt::after {
    content: "";
    background: url(/car/wagonr_stingray/home/img/icon_brake.png) left top no-repeat;
    display: inline-block;
    margin-left: 20px;
    height: 11px;
    width: 15px;
  }
  
  .brake__txt span {
    padding: 0;
    background: none;
  }
  .brake__txt span:first-child {
    font-weight: 500;
    color: #BA103E;
    margin-right: 1em;
  }
  .brake__txt span:last-child {
    margin-left: 1em;
  }
  
  /** 
   * hybrid
   */
  .hybrid {
    position: relative;
    margin-top: 100px;
  }
  
  .hybrid .inner {
    position: relative;
    background: url(/car/wagonr_stingray/home/img/img_hybrid.jpg) center top no-repeat;
    height: 734px;
  }
  
  .hybrid .copy {
    position: absolute;
    top: 187px;
    left: 314px;
  }
  
  .hybrid__info {
    position: absolute;
    bottom: 44px;
    left: 62px;
    line-height: 1.5;
  }
  
  .hybrid__inner {
    box-sizing: border-box;
    white-space: nowrap;
  }
  .hybrid__innerText {
    padding: 20px;
    background: #fff;
  }
  .hybrid__inner + .hybrid__inner {
    display: inline-block;
    margin-top: -0.5px;
  }
  .hybrid__inner + .hybrid__inner .hybrid__innerText {
    padding-top: 10px;
  }
  
  .hybrid__info p {
    line-height: inherit;
  }
  
  .hybrid__info img {
    vertical-align: middle;
  }
  
  .hybrid__info span.sup {
    font-size: 10px;
    font-weight: normal;
    vertical-align: super;
  }
  
  .hybrid__txt01 {
    font-size: 20px;
    font-weight: 700;
  }
  .hybrid__txt01 span:last-child {
    font-size: 16px;
  }
  
  .hybrid__txt02 {
    font-size: 14px;
    white-space: nowrap;
  }
  .hybrid__txt02 span.sup {
    vertical-align: 4px;
  }
  
  .hybrid__txt03 {
  }
  
  .hybrid__txt04 {
    margin-top: -15px;
    font-size: 14px;
  }
  
  .hybrid__txt04 img {
    margin-left: 10px;
  }
  
  .hybrid__txt04 span.sup {
    vertical-align: 4px;
  }
  
  .hybrid__txt04 span {
    margin-left: 6px;
  }
  
  .hybrid__txt05 {
    font-size: 18px;
    font-weight: 700;
  }
  .hybrid__txt05 span:last-child {
    font-size: 14px;
  }
  
  .hybrid__txt06 {
    font-size: 10px;
  }
  .hybrid__txt06 span.sup {
    font-size: 8px;
    vertical-align: 2px;
  }
  
  .hybrid__txt07 {
    margin-top: 5px;
  }
  
  .hybrid__txt08 {
    margin-top: -10px;
    font-size: 10px;
  }
  
  .hybrid__txt08 span.sup {
    font-size: 8px;
    margin-left: 4px;
  }
  
  .hybrid__txt08 img {
    height: auto;
    width: 42px;
    margin-left: 10px;
    vertical-align: baseline;
  }
  
  .hybrid__note {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
  }
  
  .hybrid__note p {
    padding-right: 5px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-align: right;
  }
  
  /** 
   * turbo
   */
   
  .hybridTurboTitle {
    position: relative;
    margin: -40px auto 0;
    width: 1360px;
    padding-left: 280px;
    box-sizing: border-box;
  }
  
  .hybridTurboTitle h2 {
    padding: 0;
  }
  
  .hybridTurboTitle .leftTxt {
    margin-left: 187px;
  }
  
  .hybridTurboTitle .leftTxt .lineTxt__inner {
    display: flex;
    align-items: center;
  }
  
  .hybridTurboTitle img {
    margin-right: 21px;
  }
  
  .hybridTurboTitle .lineTxt,
  .hybridTurboTitle .lineTxt__inner {
    font-size: 110px;
    letter-spacing: 7.7px;
  }
  
  .hybridTurboTitle__lead {
    position: absolute;
    top: 52px;
    left: 720px;
    font-size: 16px;
    line-height: 2.25;
    letter-spacing: 1.28px;
    color: #BA103E;
  }
  
  .turbo {
    position: relative;
    max-width: 1360px;
    background: url(/car/wagonr_stingray/home/img/img_turbo.jpg) center top no-repeat;
    height: 640px;
    margin: -35px auto 20px;
  }
  
  .turbo .copy {
    position: absolute;
    font-size: 16px;
    top: 470px;
    left: 44%;
    line-height: 2.1875;
  }
  
  .turbo__copyTxt {
    display: block;
  }
  
  .turbo__copyTxt span {
    background: #fff;
    display: inline-block;
    padding: 0 10px;
  }
  
  .turbo__note {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
  }
  .turbo__note p {
    padding-right: 5px;
    font-weight: 700;
    font-size: 10px;
    color: #fff;
    text-align: right;
  }
  
  .turboNote {
    width: 718px;
    margin: 0 auto 30px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.2px;
  }
  
  /** 
   * safety
   */
  .safety {
    position: relative;
    text-align: center;
    margin-top: 64px;
  }
  
  .safety h2 {
    position: relative;
    z-index: 3;
    padding-top: 0;
  }

  .safety .lineTxt,
  .safety .lineTxt__inner {
    font-size: 120px;
    line-height: 1.05;
  }

  .safety__main {
    position: relative;
    z-index: 1;
    display: block;
    margin: -71px auto 0;
  }
  
  .safety__note {
    position: absolute;
    width: 900px;
    bottom: 120px;
    z-index: 2;
    left: 50%;
    margin-left: -450px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-align: right;
  }
  
  .satetySupport {
    position: relative;
    z-index: 3;
    box-sizing: border-box;
    background: #fff url("/car/wagonr_stingray/home/img/img_safetylogo.png") no-repeat right 70px bottom 30px;
    padding: 54px 60px;
    margin: -112px auto 0;
    width: 900px;
  }
  
  .satetySupport ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .satetySupport ul li {
    position: relative;
    font-size: 16px;
    width: 25%;
    text-align: center;
    white-space: nowrap;
  }
  
  .satetySupport ul li::after {
    content: "";
    display: block;
    background: #fff url("/car/wagonr_stingray/home/img/icon_multipliedby_black.svg") no-repeat center center;
    position: absolute;
    height: 24px;
    width: 24px;
    top: 24px;
    right: -60px;
  }
  
  .satetySupport ul li:last-child::after {
    width: 0;
  }
  
  .satetySupport p {
    font-size: 16px;
  }
  
  .satetySupport__frame {
    position: relative;
    display: block;
    font-size: 22px;
    letter-spacing: 2.64px;
    padding: 24px 40px;
    margin-bottom: 20px;
  }
  
  .satetySupport__txt {
    display: block;
    width: 100%;
  }
  
  .satetySupport__frame::before,
  .satetySupport__frame::after,
  .satetySupport__txt::before,
  .satetySupport__txt::after {
    content: "";
    display: block;
    height: 24px;
    width: 45px;
    position: absolute;
  }
  
  .satetySupport__frame::before {
    border-left: 1px solid #1C1C1C;
    border-top: 1px solid #1C1C1C;
    top: 0;
    left: 0;
  }
  
  .satetySupport__frame::after {
    border-right: 1px solid #1C1C1C;
    border-top: 1px solid #1C1C1C;
    top: 0;
    right: 0;
  }
  
  .satetySupport__txt::before {
    border-left: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
    bottom: 0;
    left: 0;
  }
  
  .satetySupport__txt::after {
    border-right: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
    bottom: 0;
    right: 0;
  }
  
  .satetySupport__deteil {
    width: 300px;
    margin-left: -50px;
    display: block;
  }
  
  .satetySupportCar {
    text-align: center;
    max-width: 1030px;
    margin: -96px auto 30px;
    padding: 0 30px 30px;
    position: relative;
  }
  
  .satetySupportCar img {
    position: relative;
    z-index: -1;
  }
  
  .satetySupportCar__txtWrap {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    display: flex;
  }
  .satetySupportCar__txt {
    background: #F0F0F0;
    margin: 0;
    padding: 10px 20px;
    text-align: left;
    line-height: 2.1;
  }
  
  .satetySupportCar__txt p {
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .satetySupportCar__txt dt {
    color: #BA103E;
    display: inline-block;
    margin-right: 20px;
    float: left;
    font-weight: 500;
  }
  
  .satetySupportCar__txt dd {
    white-space: nowrap;
  }
  
  .satetySupportCar__note {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    padding: 0 0 10px 10px;
  }
  
  /** 
   * interior
   */
  
  .interior {
    margin-top: 65px;
    text-align: center;
  }
  
  .interior h2 {
    position: relative;
    z-index: 2;
  }

  .interior .lineTxt,
  .interior .lineTxt__inner {
    font-size: 120px;
    line-height: 1.05;
  }

  
  .interior__img {
    position: relative;
    background: url(/car/wagonr_stingray/home/img/img_interior.jpg) center top no-repeat;
    height: 695px;
    margin-top: -40px;
    margin-bottom: 26px;
    z-index: 1;
  }
  
  .interior__note {
    position: absolute;
    z-index: 10;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-align: right;
    box-sizing: border-box;
    width: 100%;
  }
  
  .interior__note--01 {
    top: 372px;
    padding-right: 10px;
  }
  
  .interior__note--02 {
    padding-right: 420px;
    bottom: 8px;
  }
  
  .interior__note--03 {
    top: 538px;
    left: 70.6%;
    width: auto;
    text-align: left;
  }
  
  .interior__note--04 {
    padding-right: 13px;
    bottom: 8px;
    right: 0;
    width: 100%;
    max-width: 29.4%;
  }
  .interior__note--04 span {
    display: inline-block;
  }
  
  .interior .copy {
    position: absolute;
    font-size: 16px;
    top: 370px;
    left: 16%;
    z-index: 2;
    line-height: 2.1875;
    text-align: left;
  }
  
  .interior__txt {
    font-size: 16px;
    line-height: 2.1875;
    letter-spacing: 1.28px;
    margin: 30px 0;
    text-align: center;
  }
  
  .interior__sup {
    font-size: 10px;
    margin: 0 auto 30px;
    width: 720px;
    text-align: center;
  }
  
  /** 
   * color
   */
  
  .color {
    max-width: 2050px;
    margin: 85px auto 0;
  }
  
  .color__title {
    text-align: center;
  }

  
  .color__title .lineTxt,
  .color__title .lineTxt__inner {
    font-size: 75px;
    color: #1C1C1C;
    letter-spacing: 5.25px;
  }
  
  .colorSlide {
    position: relative;
    margin-top: 25px;
    font-size: 12px;
    line-height: 1.66;
    letter-spacing: 1.2px;
    text-align: center;
  }
  
  .colorSlide__item {
    width: 686px !important;
  }
  
  .colorSlide img {
    width: 100%;
    max-width: 454px;
    margin: 0 auto;
    height: auto;
    margin-bottom: 20px;
    transform: scale(0.62);
    transition: transform 0.3s ease-in-out;
  }
  
  .colorSlide .slick-current img {
    transform: scale(1);
  }
  
  .colorSlide__new {
    display: block;
    font-weight: 500;
    color: #C62F2F;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .slick-current .colorSlide__new {
    opacity: 1;
  }
  
  .colorSlide__txt {
    display: block;
    font-size: 14px;
    line-height: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
  }
  
  .colorSlide .slick-current .colorSlide__txt {
    opacity: 1;
  }
  
  .colorSlide__item--first.js-slickFix img,
  .colorSlide__item--last.js-slickFix img {
    transform: scale(1);
  }
  
  .colorSlide__item--first.js-slickFix .colorSlide__new,
  .colorSlide__item--last.js-slickFix .colorSlide__new,
  .colorSlide__item--first.js-slickFix .colorSlide__txt,
  .colorSlide__item--last.js-slickFix .colorSlide__txt {
    opacity: 1;
  }
  .colorSlide.slick-slider * {
    outline: none;
  }
  
  .colorSlide .slick-arrow {
    position: absolute;
    top: 123px;
    width: 42px;
    height: 42px;
    font-size: 0;
    z-index: 9;
    border: none;
    outline: none;
    cursor: pointer;
  }
  
  .colorSlide .slick-prev {
    right: calc(50% +  390px);
    background: url("/car/wagonr_stingray/home/img/icon_arrow_prev.svg") center center no-repeat;
    background-size: contain;
  }
  
  .colorSlide .slick-next {
    left: calc(50% +  390px);
    background: url("/car/wagonr_stingray/home/img/icon_arrow_next.svg") center center no-repeat;
    background-size: contain;
  }
  
  .colorSlide .slick-dots {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: center;
    justify-content: center;
  }
  
  .colorSlide .slick-dots {
    margin-top: 8px;
  }
  
  .colorSlide .slick-dots button {
    width: 14px;
    height: 14px;
    font-size: 0;
    margin: 0 7px;
    background-color: #1E4D2E;
    border-radius: 50%;
    border: none;
    outline: none;
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  .colorSlide button::-moz-focus-inner {
    border:none;
  }
  .colorSlide .slick-dots li:nth-child(2) button {
    background-color: #D00000;
  }
  
  .colorSlide .slick-dots li:nth-child(3) button {
    background-color: #000000;
  }
  
  .colorSlide .slick-dots li:nth-child(4) button {
    background-color: #F1F1F1;
  }
  
  .colorSlide .slick-dots li:nth-child(5) button {
    background-color: #A6A6A6;
  }
  
  .colorSlide .slick-dots li:nth-child(6) button {
    background-color: #7030A0;
  }
  
  .colorSlide .slick-active button {
    transform: scale(1.5);
  }
  
  /** 
   * catalog
   */
   
  .catalog {
    border-top: 1px solid #707070;
    padding-top: 50px;
    margin: 38px auto 110px;
    width: 860px;
  }
  
  .catalog__row {
    display: flex;
    margin-bottom: 40px;
  }
  
  .catalog__col:first-child {
    margin-right: 2%;
    width: 44%;
  }
  
  .catalog__col:last-child {
    width: 54%;
  }
  
  .catalog h2,
  .catalog h2 .lineTxt__inner {
    font-size: 37px;
    letter-spacing: 2.6px;
    margin-bottom: 30px;
  }
  
  .catalog__lTxt01 {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .catalog__lTxt02 {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .catalog__lTxt03 {
    display: block;
    line-height: 1;
  }
  
  .catalog__lTxt04 {
    margin-top: 10px;
    display: block;
    line-height: 1;
  }
  
  .catalog__rTxt01 {
    position: relative;
    display: block;
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 16px;
  }
  
  .catalog__rTxt01 .roboto {
    font-size: 36px;
    font-weight: 500;
  }
  
  .catalog__asterisk01 {
    position: absolute;
    top: -17px;
    left: 184px;
    font-size: 10px;
  }
  
  .catalog__rTxt02 {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .catalog__asterisk02 {
    font-size: 10px;
    vertical-align: super;
  }
  
  .catalog__rTxt03 {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .catalog__rTxt04 {
    display: flex;
    align-items: flex-start;
    font-size: 75px;
    line-height: 1;
  }
  
  .catalog__point {
    font-size: 10px;
  }
  
  /** 
   * scrollTop
   */
  .scrollTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: none;
    cursor: pointer;
  }
  
  .scrollTop:hover .scrollTop__img {
    opacity: 0.5;
    transition: 0.2s;
  }
  
  /** 
   * btn
   */
   
  .main-stage .btn {
    display: block;
  }
  .btn ul {
    display: flex;
    justify-content: center;
    padding-top: 0;
  }
  
  .btn li {
    display: inline-block;
    margin: 0 48px;
  }
  
  .btn li a {
    background: #1C1C1C;
    border: 1px solid #1C1C1C;
    color: #fff;
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    padding: 17px 0;
    width: 256px;
    box-sizing: border-box;
    transition: background 0.3s ease-in-out,
                color 0.3s ease-in-out;
  }
  
  .btn li a::after {
    content: "";
    position: absolute;
    border-top: 1px solid #D3D3D3;
    top: 50%;
    height: 1px;
    width: 54px;
    right: -28px;
  }
  
  .btn li a:hover {
    color: #1C1C1C;
    background: #fff;
  }
  
  #relatedLink {
    margin-top: 80px;
  }
  
  .aside {
    margin-top: 5px;
    background-image: none;
  }

  .bnr-area .row {
    margin-left: 0;
  }

  .bnr-area .row .col-xs-12:first-child {
    text-align: right;
  }
}

/*--------------------
  SP
--------------------*/
@media (max-width: 960px) {
  body {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
  }

  a:hover {
    text-decoration: none;
  }

  #main {
    display: block;
    color: #1C1C1C;
  }

  .fullImg {
    width: 100%;
    height: auto;
  }

  .roboto {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
  }

  .main-stage {
    margin: 0;
  }

  .main-stage .generalBtn {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 256px;
    height: 56px;
    margin: 40px auto 0;
    padding: 0 28px;
    font-size: 14px;
    letter-spacing: 0.29px;
    color: #FFF;
    background-color: #1C1C1C;
  }

  .main-stage .generalBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -27px;
    width: 53px;
    height: 1px;
    background: #D3D3D3;
  }

  .generalBtn + .generalBtn {
    margin-top: 20px;
  }

  .note {
    margin: 30px 16px 0;
    padding-top: 0;
    font-size: 10px;
    letter-spacing: 0.21px;
    line-height: 1.8;
  }

  /*---------------------
  loading
  ---------------------*/
  .loadnow,
  .loadnow body {
    height: 100%;
    overflow: hidden;
  }

  .loadingWrap {
    width: 100%;
    height: calc(100% - 44px);
    background-color: #fff;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
  }

  .loadingWrap__progress {
    width: 100%;
    height: 3px;
    background-color: #BA103E;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    margin-top: -3px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-ttransform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-ttransition: transform 0.3s linear;
    transition: transform 0.3s linear;
  }

  /*---------------------
  red line txt
  ---------------------*/
  .lineTxt {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 60px;
    letter-spacing: 1.26px;
    color: #BA103E;
    white-space: nowrap;
  }

  .lineTxt__inner {
    position: relative;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s linear;
    transition: opacity 0s 0.6s linear;
  }

  .lineTxt::before,
  .lineTxt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #BA103E;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  .lineTxt::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .lineTxt::after {
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }

  /* アニメーション実行 */
  .multipleLines.is-show .lineTxt__inner,
  .lineTxt.is-show .lineTxt__inner {
    opacity: 1;
  }

  .multipleLines.is-show .lineTxt::before,
  .lineTxt.is-show::before {
    -webkit-animation: line_extend 0.6s cubic-bezier(0.2, 1, 0.22, 1);
    animation: line_extend 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  }

  .multipleLines.is-show .lineTxt::after,
  .lineTxt.is-show::after {
    -webkit-animation: line_shrink 0.6s 0.6s cubic-bezier(0.2, 1, 0.22, 1);
    animation: line_shrink 0.6s 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  }

  /* 複数行遅延 */
  .multipleLines.is-show .lineTxt--02::before,
  .lineTxt--02.is-show::before {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .multipleLines.is-show .lineTxt--02::after,
  .lineTxt--02.is-show::after {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  .lineTxt--02 .lineTxt__inner {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }

  .multipleLines.is-show .lineTxt--03::before,
  .lineTxt--03.is-show::before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  .multipleLines.is-show .lineTxt--03::after,
  .lineTxt--03.is-show::after {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  .lineTxt--03 .lineTxt__inner {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }

  .multipleLines.is-show .lineTxt--04::before,
  .lineTxt--04.is-show::before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .multipleLines.is-show .lineTxt--04::after,
  .lineTxt--04.is-show::after {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .lineTxt--04 .lineTxt__inner {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }

  /*---------------------
  white line copy
  ---------------------*/
  .copy {
    padding-top: 0;
    font-size: 14px;
    line-height: 2.29;
    letter-spacing: 0.29px;
  }

  .copy__item {
    display: block;
    width: 0;
    overflow: hidden;
    -webkit-transition: width 1.2s cubic-bezier(0.2, 1, 0.22, 1);
    transition: width 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  }

  .copy__item:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }

  .copy__item:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .copy.is-show .copy__item {
    width: 100%;
  }
  .copy__item + .copy__item {
    margin-top: -0.5px;
  }

  .copy__item span {
    display: inline-block;
    padding: 1px 10px;
    background-color: #fff;
    white-space: nowrap;
  }

  .copy__item sup {
    font-size: 8px;
    vertical-align: 5px;
  }

  /**
   * multi line animation
   */
  .scrollMulti {
    overflow: hidden;
    transition: width 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  }

  /*---------------------
  kv
  ---------------------*/
  .kv {
    position: relative;
  }

  .kv::before,
  .kv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #1C1C1C;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  .kv::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .kv::after {
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }

  .kv h1 {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .kv img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0s 0.6s linear;
  }

  /* アニメーション実行 */
  .kv.is-show img {
    opacity: 1;
  }

  .kv.is-show::before {
    -webkit-animation: line_extend 0.6s cubic-bezier(0.2, 1, 0.22, 1);
    animation: line_extend 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  }

  .kv.is-show::after {
    -webkit-animation: line_shrink 0.6s 0.6s cubic-bezier(0.2, 1, 0.22, 1);
    animation: line_shrink 0.6s 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  }

  .kv .multipleLines {
    position: absolute;
    top: 1.6vw;
    left: 2.66666666666667vw;
    z-index: 2;
  }

  .kv .lineTxt,
  .kv .lineTxt__inner {
    font-size: 12vw;
    letter-spacing: 0.4vw;
    line-height: 1.12;
  }

  .kv .lineTxt--02 {
    font-size: 18.8vw;
    line-height: 1;
  }

  .kv .lineTxt--02 .lineTxt__inner {
    margin-left: -1.2vw;
  }

  .kv .lineTxt--03 .lineTxt__inner {
    margin-left: -0.4vw;
  }

  .kv .lineTxt--04 .lineTxt__inner {
    margin-left: -0.55vw;
  }

  .kv .lineTxt:first-child,
  .kv .lineTxt--04 {
    color: #FFF;
  }

  .kv__note {
    position: absolute;
    bottom: 1.3vw;
    left: 1.3vw;;
    z-index: 2;
    margin: 0;
    padding-top: 0;
    font-size: 2.66vw;
    font-weight: bold;
    line-height: 1.5;
    color: #FFF;
  }

  /*---------------------
  promotion
  ---------------------*/
  .promotion {
    margin-top: 40px;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }

  .promotion.is-show {
    opacity: 1;
  }

  /*---------------------
  intro
  ---------------------*/
  .intro {
    background: #f7f7f7;
  }
  .intro__txt {
    position: relative;
    z-index: 2;
    width: calc(100% - 32px);
    padding: 21px 30px;
    font-size: 14px;
    line-height: 2.28;
    letter-spacing: 1.4px;
    background-color: #FFF;
  }

  .intro__txt span {
    font-size: 18px;
  }

  .intro__bottom {
    position: relative;
    margin-top: -44px;
    margin-left: 32px;
  }

  .intro .multipleLines {
    position: absolute;
    top: 14.4vw;
    left: 0;
    z-index: 2;
  }

  .intro .lineTxt,
  .intro .lineTxt span {
    font-size: 7.2vw;
    font-weight: normal;
    letter-spacing: 2.4px;
    line-height: 1.17;
  }

  .safetyCatch {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 20px;
    padding: 13px 44px 13px 19px;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.58;
    background-color: #F0F0F0;
  }

  .safetyCatch__new {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2.8px;
    line-height: 1;
    color: #B70712;
  }

  .safetyCatch__txt {
    width: calc(100% - 10px);
    padding-top: 0;
  }

  .safetyCatch__txt span {
    display: inline-block;
    margin-left: 1em;
  }
}

@media (max-width: 374px){
  .safetyCatch__txt {
    letter-spacing: 0;
  }
}

@media (max-width: 359px){
  .safetyCatch {
    padding: 13px 40px 13px 14px;
  }
  .safetyCatch__txt {
    letter-spacing: -0.025em;
  }
}

@media (max-width: 960px) {
  .safetyCatch::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 18px;
    height: 12px;
    background: url("/car/wagonr_stingray/home/img/sp/icon_anchor.svg") center center no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  /*---------------------
  hybrid
  ---------------------*/
  .hybrid {
    margin-top: 83px;
  }

  .hybrid__title {
    max-width: 375px;
    margin: 0 auto;
  }

  .hybrid .multipleLines {
    padding: 0 16px;
    line-height: 1.1;
  }

  .hybrid .lineTxt img {
    margin: 0 14px 6px 0;
    vertical-align: baseline;
  }

  .hybrid .lineTxt__inner {
    font-size: 60px;
    font-weight: normal;
  }

  .hybrid .rightTxt {
    display: block;
    text-align: right;
  }

  .hybrid__lead {
    padding: 0 16px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.12px;
    color: #BA103E;
  }

  .hybrid__inner {
    background-color: #F7F7F7;
  }

  .hybrid__main {
    position: relative;
    margin-top: 20px;
    z-index: 1;
  }

  .hybrid__main img {
    position: relative;
    z-index: 1;
  }

  .hybrid__main .copy {
    position: absolute;
    top: 26.4vw;
    right: 16px;
    z-index: 2;
  }
  .hybrid__mainNote {
    position: absolute;
    left: 0;
    bottom: 172px;
    width: 100%;
    padding: 0 20px;
    font-size: 10px;
    color: #fff;
    z-index: 10;
    text-shadow: 0 0 3px rgba(0,0,0,.35);
  }

  .hybridDetail {
    margin: -20px 16px 0;
  }
  .hybridDetail__inner {
    padding: 20px;
    position: relative;
    z-index: 10;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    font-size: 10px;
    background-color: #FFF;
  }
}

@media (max-width: 374px){
  .hybridDetail__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 960px) {
  .hybridDetail img {
    margin-top: 5px;
  }

  .hybridDetail__txt {
    font-size: 13px;
    font-weight: bold;
  }
}

@media (max-width: 374px){
  .hybridDetail__txt {
    letter-spacing: -0.05em;
  }
}

@media (max-width: 960px) {
  .hybridDetail__txt span {
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
  }

  .hybridDetail sup {
    margin: 0 1px;
    font-size: 7px;
    vertical-align: text-top;
  }
}

@media (max-width: 374px){
  .hybridDetail sup {
    margin: 0;
    font-size: 6px;
  }
}

@media (max-width: 960px) {
  .hybridDetail__txt--02 {
    margin-top: 2px;
  }

  .hybridDetail__txt--03 {
    margin-top: 5px;
  }

  .hybridDetail__leftCol {
    width: 56.7%;
    padding-right: 10px;
  }

  .hybridDetail__rightCol {
    width: 43.3%;
  }

  .hybridDetail__row {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .hybridDetail__row sup {
    padding-top: 4px;
  }

  .hybrid__note {
    margin-top: 24px;
  }

  .hybrid__note--02 {
    margin-top: 28px;
  }

  .hybrid__note--03 {
    margin-top: 20px;
  }

  .exhilarating {
    margin-top: 40px;
  }

  .exhilarating .copy {
    position: relative;
    z-index: 9;
    width: 260px;
    margin: 0 auto;
  }

  .exhilarating__main {
    position: relative;
    z-index: 1;
    margin-top: -52px;
    width: 100%;
    height: auto;
  }

  .points {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-align-items: flex-start;
    -webkit-box-align: flex-start;
            align-items: flex-start;
  }

  .points img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }

  .points__leftCol {
    position: relative;
    width: 59.2%;
  }

  .points__rightCol {
    position: relative;
    width: 40.8vw;
    padding-left: 0.26vw;
  }

  .points__txt {
    position: absolute;
    z-index: 2;
    padding-top: 0;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.21px;
    color: #FFF;
  }

  .points__leftCol .points__txt {
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%,10px);
    transform: translate(-50%,10px);
  }

  .points__rightCol .points__txt {
    top: 50%;
    -webkit-transform: translate(10px,10px);
    transform: translate(10px,10px);
  }

  /*---------------------
  safety
  ---------------------*/
  .safety {
    margin-top: 30px;
    padding-top: 53px;
  }

  .safety .lineTxt {
    position: relative;
    z-index: 9;
    margin-left: 46px;
  }

  .safety .lineTxt__inner {
    font-size: 60px;
    font-weight: normal;
  }

  .safety .note {
    margin-top: 24px;
  }

  .safety__inner {
    position: relative;
    background: #F7F7F7;
  }

  .safety__inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background-color: #FFF;
  }

  .safety__main {
    position: relative;
    z-index: 1;
    margin-top: -25px;
  }
  .safety__mainNote {
    position: absolute;
    left: 0;
    bottom: 26px;
    width: 100%;
    padding: 0 20px;
    font-size: 10px;
    color: #fff;
    z-index: 10;
  }

  .safety__smallImg {
    position: absolute;
    top: -4.3vw;
    right: 0;
    z-index: 2;
    width: 23.2%;
    height: auto;
  }

  .safety__ph {
    position: relative;
    z-index: 1;
    margin-top: -15px;
  }
  .safety__phImage {
    position: relative;
  }
  .safety__note {
    position: absolute;
    left: 0;
    bottom: 16px;
    width: 100%;
    padding: 0 20px 0 5px;
    font-size: 10px;
    color: #fff;
    z-index: 10;
    text-align: right;
  }

  .safetyBox {
    position: relative;
    z-index: 9;
    margin: -18px 16px 0;
    padding: 40px 0 20px;
    text-align: center;
    background: #FFF;
  }

  .safetyBox__lead {
    margin-top: 25px;
    padding-top: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.12px;
    text-align: center;
  }

  .safetyBox__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .safetyBox__list li {
    position: relative;
    width: 33.33%;
  }

  .safetyBox__list li:nth-child(n + 2):after {
    content: "";
    position: absolute;
    top: 20px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: url("/car/wagonr_stingray/home/img/sp/icon_cross_black.svg") center center no-repeat;
    background-size: contain;
  }

  .safetyBox__frame {
    position: relative;
    display: block;
    margin: 0 14px;
  }

  .safetyBox__frame span {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 52px;
    font-size: 14px;
    letter-spacing: 1.68px;
  }

  .safetyBox__frame::before,
  .safetyBox__frame::after,
  .safetyBox__frame span::before,
  .safetyBox__frame span::after {
    content: "";
    position: absolute;
    z-index: 1;
    max-width: 30px;
    width: 8vw;
    height: 18px;
  }

  .safetyBox__frame::before {
    top: 0;
    left: 0;
    border-top: 1px solid #1C1C1C;
    border-left: 1px solid #1C1C1C;
  }

  .safetyBox__frame::after {
    top: 0;
    right: 0;
    border-top: 1px solid #1C1C1C;
    border-right: 1px solid #1C1C1C;
  }

  .safetyBox__frame span::before {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #1C1C1C;
    border-left: 1px solid #1C1C1C;
  }

  .safetyBox__frame span::after {
    bottom: 0;
    right: 0;
    border-right: 1px solid #1C1C1C;
    border-bottom: 1px solid #1C1C1C;
  }

  .safetyBox__frame span {
    position: relative;
    z-index: 2;
  }

  .safetyBox__txt {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.8;
  }

  .safetyBox__logo {
    margin-top: 25px;
  }

  .safetyPoint {
    margin: -10px 0 0 36px;
  }
  .safetyPoint__inner {
    position: relative;
    z-index: 10;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 13px 13px 13px 19px;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.58;
    background-color: #F0F0F0;
  }

  .safetyPoint__new {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2.8px;
    line-height: 1;
    color: #B70712;
  }

  .safetyPoint__txt {
    width: calc(100% - 60px);
    padding-top: 0;
  }

  /*---------------------
  interior
  ---------------------*/
  .interior {
    margin-top: 80px;
  }

  .interior__title {
    position: relative;
    z-index: 9;
    margin-right: 22px;
    text-align: right;
  }

  .interior .lineTxt__inner {
    font-size: 60px;
    font-weight: normal;
  }

  .interior__main {
    position: relative;
    z-index: 1;
    margin-top: -25px;
  }

  .interior__main .copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .interior__main {
    position: relative;
    z-index: 1;
  }

  .interior__lead {
    margin: 25px 16px 25px;
    padding-top: 0;
    font-size: 14px;
    line-height: 2.28;
    letter-spacing: 0.29px;
    text-align: center;
  }

  .interior__note {
    position: absolute;
    color: #FFF;
    font-size: 10px;
  }
  .interior__note--01 {
    bottom: 57%;
    right: 1%;
  }
  .interior__note--02 {
    bottom: 21%;
    right: 1%;
  }
  .interior__note--03 {
    bottom: 3px;
    left: 4px;
  }
}

@media (max-width: 374px){
  .interior__note--03 {
    top: 92%;
    bottom: auto;
  }
}

@media (max-width: 960px) {
  .interior__note--04 {
    bottom: 3px;
    right: 66%;
  }
  .interior__note--05 {
    right: 20.6%;
    bottom: 3px;
  }
  .interior__note--06 {
    right: 1%;
    bottom: 3px;
  }
  .interior .note + .note {
    margin-top: 16px;
  }
  .interior .note:last-of-type {
    margin-bottom: 40px;
  }

  /*---------------------
  color
  ---------------------*/
  .color {
    margin-top: 85px;
  }

  .color__title {
    text-align: center;
  }

  .color__title .lineTxt__inner {
    font-size: 40px;
    font-weight: normal;
    color: #1C1C1C;
    letter-spacing: 0.84px;
  }

  .colorSlide {
    position: relative;
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.66;
    letter-spacing: 1.2px;
    text-align: center;
  }

  .colorSlide__item {
    width: 57vw !important;
  }

  .colorSlide__name {
    font-size: 12px;
  }

  .colorSlide img {
    width: auto;
    height: 37vw;
    margin-bottom: 20px;
    -webkit-transform: scale(0.47);
    transform: scale(0.47);
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
  }

  .colorSlide .slick-current img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .colorSlide__new {
    display: block;
    font-weight: 500;
    color: #C62F2F;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .colorSlide .slick-current .colorSlide__new {
    opacity: 1;
  }

  .colorSlide__txt {
    display: block;
    width: 100vw;
    margin-left: -21.5vw;
    padding-top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .colorSlide .slick-current .colorSlide__txt {
    opacity: 1;
    text-align: center;
  }

  .colorSlide__item--first.js-slickFix img,
  .colorSlide__item--last.js-slickFix img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .colorSlide__item--first.js-slickFix .colorSlide__new,
  .colorSlide__item--last.js-slickFix .colorSlide__new,
  .colorSlide__item--first.js-slickFix .colorSlide__txt,
  .colorSlide__item--last.js-slickFix .colorSlide__txt {
    opacity: 1;
  }

  .colorSlide .slick-arrow {
    position: absolute;
    top: 14.4vw;
    width: 31px;
    height: 31px;
    font-size: 0;
    z-index: 9;
    border: none;
    outline: none;
  }

  .colorSlide .slick-prev {
    left: 15vw;
    background: url("/car/wagonr_stingray/home/img/sp/icon_arrow_prev.svg") center center no-repeat;
    background-size: contain;
  }

  .colorSlide .slick-next {
    right: 15vw;
    background: url("/car/wagonr_stingray/home/img/sp/icon_arrow_next.svg") center center no-repeat;
    background-size: contain;
  }

  .colorSlide .slick-dots {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .colorSlide.slick-slider * {
    outline: none;
  }

  .colorSlide .slick-dots {
    margin-top: 25px;
  }

  .colorSlide .slick-dots button {
    width: 20px;
    height: 20px;
    font-size: 0;
    margin: 0 12px;
    background-color: #1E4D2E;
    border-radius: 50%;
    border: none;
    outline: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .colorSlide .slick-dots li:nth-child(2) button {
    background-color: #D00000;
  }

  .colorSlide .slick-dots li:nth-child(3) button {
    background-color: #000000;
  }

  .colorSlide .slick-dots li:nth-child(4) button {
    background-color: #F1F1F1;
  }

  .colorSlide .slick-dots li:nth-child(5) button {
    background-color: #A6A6A6;
  }

  .colorSlide .slick-dots li:nth-child(6) button {
    background-color: #7030A0;
  }

  .colorSlide .slick-active button {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  /*---------------------
    price
  ---------------------*/
  .price {
    margin: 50px 16px 0;
  }

  .price .lineTxt,
  .price .lineTxt__inner {
    padding: 0;
    border: none;
    font-size: 32px;
    font-weight: normal;
    color: #BA103E;
  }

  .price__txt {
    margin-top: 19px;
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  .price__txt--02 {
    margin-top: 5px;
    font-size: 16px;
    letter-spacing: 0.96px;
  }

  .price img {
    margin-top: 5px;
  }

  .price__tax {
    margin-top: 3px;
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  /*---------------------
    performance
  ---------------------*/
  .performance {
    margin: 25px 16px 0;
  }

  .performance .lineTxt,
  .performance .lineTxt__inner {
    padding: 0;
    border: none;
    font-size: 30px;
    font-weight: normal;
  }

  .performance__txt {
    padding-top: 12px;
    font-size: 18px;
  }

  .performance__txt .roboto {
    font-size: 22px;
    font-weight: bold;
    position: relative;
  }

  .performance__asterisk {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.21px;
    vertical-align: text-top;
  }

  .performance__txt .performance__asterisk {
    position: absolute;
    top: -0.75em;
    white-space: nowrap;
  }

  .performance__img {
    position: relative;
  }

  .performance__img .performance__asterisk {
    position: absolute;
    top: .75em;
    left: 152px;
    white-space: nowrap;
  }

  .performance__txt--02 {
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: 1.12px;
  }

  .performance__txt--03 {
    font-size: 16px;
    letter-spacing: 1.28px;
  }

  .performance img {
    margin-top: 5px;
  }
  .note--performance {
    font-size: 12px;
  }

  .bnr-area .row .col-xs-12 {
    text-align: center;
  }
}


/*---------------------
simulation
---------------------*/

.simulation {
  max-width: 1134px;
  margin: 120px auto 0;
  padding: 0 15px;
  text-align: center;
}

@media (max-width: 750px) {
  .simulation {
    margin: 60px auto 0;
  }
}

.simulation__title {
  line-height: 1.8;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 750px) {
  .simulation__title {
    font-size: 18px;
  }
}

.simulation__banner {
  margin: 20px 0 0;
}

.simulation__banner a {
  display: inline-block;
}

.simulation__banner img {
  max-width: 100%;
}

.simulation__more {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 266px;
  height: 48px;
  margin: 40px auto;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  background-color: #363636;
  border: solid 1px #363636;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .5s;
  transition: .5s;
  width: 266px;
  color: #FFF;
}

.simulation__more:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
  width: 10px;
  height: 7px;
  margin-top: -2px;
  background: center center url(/car/wagonr_stingray/home/img/btn_arrow_bottom.png) no-repeat;
  background-size: 10px 7px;
  transition: background-image .5s;
  pointer-events: none;
}

.simulation__more:hover {
  background: #FFF;
  color: #363636;
  text-decoration: none;
}

@media (max-width: 750px) {
  .simulation__more:hover {
    background: #363636;
    color: #fff;
  }
}

.simulation__more:hover:before {
  background-image: url(/car/wagonr_stingray/home/img/btn_arrow_bottom_hover.png);
}

@media (max-width: 750px) {
  .simulation__more:hover:before {
    background-image: url(/car/wagonr_stingray/home/img/btn_arrow_bottom.png);
  }
}

.simulation__more.is-show:before {
  background-image: url(/car/wagonr_stingray/home/img/btn_arrow_top.png);
}

.simulation__more.is-show:hover:before {
  background-image: url(/car/wagonr_stingray/home/img/btn_arrow_top_hover.png);
}

@media (max-width: 750px) {
  .simulation__more.is-show:hover:before {
    background-image: url(/car/wagonr_stingray/home/img/btn_arrow_top.png);
  }
}

.simulation__content {
  overflow: hidden;
  max-height: 0;
  background: #F2F2F2;
  -webkit-transition: max-height .8s ease;
  transition: max-height .8s ease;
}

@media (max-width: 750px) {
  .simulation__content {
    background: #F4F4F4;
  }
}

.simulation__content.is-show {
  max-height: 2000px;
}

.simulation__steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 70px 80px 0;
}

@media (max-width: 1200px) {
  .simulation__steps {
    margin: 70px 15px 0;
  }
}

@media (max-width: 960px) {
  .simulation__steps {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px 0 0;
  }
}

.simulation__step {
  position: relative;
  width: 25%;
}

@media not all and (max-width: 960px) {
  .simulation__step:nth-child(1):before,
  .simulation__step:nth-child(2):before,
  .simulation__step:nth-child(3):before {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    width: 10px;
    height: 16px;
    margin-top: -20px;
    background: center center url(/car/wagonr_stingray/home/img/simulation_step_arrow.png) no-repeat;
    background-size: 10px 16px;
  }
}

@media (max-width: 960px) {
  .simulation__step {
    width: 50%;
    margin: 15px 0 0;
    padding: 15px;
  }
}

.simulation__stepImage1,
.simulation__stepImage2 {
  max-width: 100%;
}

@media (max-width: 960px) {
  .simulation__stepImage1 {
    width: 66.5%;
    max-width: 96px;
  }
}

@media (max-width: 960px) {
  .simulation__stepImage2 {
    max-width: 146px;
  }
}

.simulation__stepHeading {
  margin: 5px 0 12px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 960px) {
  .simulation__stepHeading {
    margin: 5px -15px 12px;
    font-size: 18px;
  }
}

.simulation__stepText {
  margin: 18px 0 0;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 960px) {
  .simulation__stepText {
    margin: 10px -15px 0;
    font-size: 13px;
  }
}

.simulation__movie {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 432px;
  margin: 50px auto 0;
  cursor: pointer;
}

@media (max-width: 750px) {
  .simulation__movie {
    margin: 30px auto 0;
    padding: 0 15px;
  }
}

.simulation__movie img {
  max-width: 100%;
}

@media not all and (max-width: 750px) {
  .simulation__movie:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 55px;
    height: 55px;
    background: url(/car/wagonr_stingray/home/img/btn_play.png) center center no-repeat;
    background-size: contain;
    transform: translate(-50%,-50%);
  }

  .simulation__movie img {
    position: relative;
    z-index: 1;
    width: 100%;
    cursor: pointer;
    transition: transform 0.4s ease;
  }

  .simulation__movie:hover img {
    transform: scale(1.1);
  }
}

.simulation__note {
  margin: 50px 0 0;
  padding: 0 60px 60px;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 1200px) {
  .simulation__note {
    padding: 0 15px 60px;
  }
}

@media (max-width: 750px) {
  .simulation__note {
    margin: 30px 0 0;
    font-size: 11px;
  }
}


/*--------------------
  modal
--------------------*/
.movieModal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - 120px);
  max-width: 768px;
  height: 47.3vw;
  max-height: 432px;
  margin: auto;
  overflow: visible;
  z-index: 10000;
  display: none;
}

.movieModalBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  cursor: pointer;
}

.movieModal video {
  position: relative;
  z-index: 2;
  display: none;
  width: 100%;
  outline: none;
}

.movieModal video.is-show {
  display: block;
}

.movieModal .close {
  position: absolute;
  top: 0;
  right: -45px;
  width: 30px;
  height: 30px;
  background-image: url(/car/wagonr_stingray/home/img/btn_close_modal.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
}

@media (max-width: 750px) {
  .movieModal {
    width: 80vw;
    height: 44.95vw;
  }
  .movieModal .close {
    right: -6vw;
    width: 4vw;
    height: 4vw;
    background-image: url(/car/wagonr_stingray/home/img/sp/btn_close_modal.png);
  }
}

