@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
/*Variable*/
@font-face {
  font-family: "toyota_type";
  src: url("../font/toyotatype-regular-webfont.woff2") format("woff2"), url("../font/toyotatype-regular-webfont.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "toyota_type";
  src: url("../font/toyotatype-bold-webfont.woff2") format("woff2"), url("../font/toyotatype-bold-webfont.woff") format("woff");
  font-weight: bold;
}
/*Mixin*/
/*Reset*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
  display: block;
}

.hide {
  display: none !important;
}

::selection {
  background: #b28f64;
  color: #fff;
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: #fff;
}

::-moz-placeholder {
  color: #fff;
}

*:focus {
  outline: none;
}

a {
  color: #dfd0be;
  text-decoration: none;
  transition: color 0.4s;
}
a:hover {
  color: #fff;
}

*::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

html {
  font-size: 1.25vw;
}

body {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  font-family: "toyota_type", "Noto Sans TC", 微軟正黑體, Arial;
  text-align: center;
}
body.is-lock {
  overflow: hidden;
}

* {
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
}

/*Body*/
#g-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: radial-gradient(ellipse at center, white 36%, #c6c6c6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: 1s;
  z-index: 10;
}
#g-loader .center {
  width: 100%;
  height: 150px;
  color: #000;
}
#g-loader .center p {
  font-size: 12px;
  letter-spacing: 5px;
  margin: 15px 0;
}
#g-loader .center .bar {
  width: 100%;
  height: 5px;
  background-color: #ccc;
  position: relative;
}
#g-loader .center .bar .move {
  width: 20%;
  height: 5px;
  background-color: #e7211b;
  position: absolute;
  animation: bar-move 0.5s ease infinite;
}
@keyframes bar-move {
  0% {
    left: 0%;
    width: 0%;
  }
  50% {
    left: 40%;
    width: 20%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
#g-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.tns-wrap {
  position: relative;
}

.tns-slider {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.tns-outer {
  position: relative;
}

.tns-item {
  float: left;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 44%;
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  z-index: 1;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.4s;
  background-color: #a79771;
}
.tns-controls button:before, .tns-controls div:before, .tns-cus-controls button:before, .tns-cus-controls div:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon-arrow-fff.svg) 50% 50% no-repeat;
  background-size: 50%;
  display: block;
  filter: brightness(200%);
}
.tns-controls button:hover, .tns-controls div:hover, .tns-cus-controls button:hover, .tns-cus-controls div:hover {
  background-color: rgba(167, 151, 113, 0.4);
}
.tns-controls button:hover:before, .tns-controls div:hover:before, .tns-cus-controls button:hover:before, .tns-cus-controls div:hover:before {
  filter: brightness(100%);
}
.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: -2.5rem;
  transform: scale(-1, 1);
}
.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: -2.5rem;
}

.tns-nav {
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
}
.tns-nav button {
  width: 2rem;
  height: 2rem;
  border: 0;
  margin: 0.5rem;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.tns-nav button:after {
  transform: translate(-50%, -50%) scale(0);
}
.tns-nav button:hover:before, .tns-nav button:hover:after {
  background-color: #e60e10;
}
.tns-nav button.tns-nav-active:after {
  background-color: #e60e10;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.tns-controls {
  text-align: center;
}

.color-red {
  color: #e60e10;
}

.color-blue {
  color: #e60e10;
}

.color-pink {
  color: #ff4e8a;
}

.color-green {
  color: #8bc34a;
}

.color-yellow {
  color: orange;
}

.text-gradient-1 {
  color: #fff;
  background: linear-gradient(to bottom, #fff 50%, #ccc);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
  color: #dfd0be;
  background: linear-gradient(to right, #e4dace, #e2ccaf, #e5e5e5);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[class^=g-bt-] {
  display: inline-block;
  position: relative;
  cursor: pointer;
  filter: drop-shadow(0 0.1rem 0.1rem #000);
}
[class^=g-bt-] div {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #386009 30%, #203605 70%);
  -webkit-mask-image: url(../img/icon-cta.webp);
          mask-image: url(../img/icon-cta.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 15rem;
  height: 10rem;
  padding-top: 2rem;
}
[class^=g-bt-] div:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
[class^=g-bt-] span {
  display: inline-block;
  letter-spacing: 0.1rem;
  font-size: 1.7rem;
  transform: skew(-10deg);
  color: #fff;
  background: linear-gradient(to bottom, #fff 30%, #ffe28b);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[class^=g-bt-] i {
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/icon-arrow-fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  transform: skew(-5deg);
  transition: 0.2s;
  position: relative;
  top: -0.4rem;
}
[class^=g-bt-]:hover {
  filter: brightness(120%) drop-shadow(0 0.1rem 0.1rem #000);
  color: #fff;
}
[class^=g-bt-]:hover i {
  transform: translateX(0.5rem);
}
[class^=g-bt-].is-disabled {
  pointer-events: none;
  background: linear-gradient(to bottom, #eee, #bbb) !important;
  text-shadow: -1px -1px 0 #999;
}
[class^=g-bt-].is-disabled::before {
  display: none;
}
[class^=g-bt-].g-bt-2 {
  background: #386009;
  border: 0;
  border-radius: 0.3rem;
  padding: 0.6rem 2rem 1rem;
  font-size: 1.4rem;
  color: #fff;
  filter: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.45);
}

.text-a-1 {
  width: 10.5rem;
  background-image: url(../img/text-a-1.svg);
}

.text-a-2 {
  width: 7.7rem;
  background-image: url(../img/text-a-2.svg);
}

.text-a-3 {
  width: 10.7rem;
  background-image: url(../img/text-a-3.svg);
}

.text-a-4 {
  width: 10.8rem;
  background-image: url(../img/text-a-4.svg);
}

.bt-shine {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.bt-shine:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.msg-box {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 101;
  transform: scale(1);
  perspective: 700px;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
}
.msg-box .msg-wrap {
  background: #fff;
  width: 60%;
  max-height: 90%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 30px;
  transform: scale(1.2) translate3d(0, -50%, 0);
  transform-style: preserve-3d;
  transition-delay: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.msg-box .msg-wrap > .close {
  cursor: pointer;
  position: absolute;
  top: -35px;
  right: -40px;
  width: 75px;
  height: 75px;
  transition: 0.2s;
  background: rgba(230, 14, 16, 0.8);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.msg-box .msg-wrap > .close:before, .msg-box .msg-wrap > .close:after {
  content: "";
  width: 3px;
  height: 50px;
  background: #fff;
  transform: rotate(45deg) translate3d(0, 0, 0);
  position: absolute;
  top: 12px;
  left: 35px;
}
.msg-box .msg-wrap > .close:before {
  transform: rotate(45deg) translate3d(0, 0, 0);
}
.msg-box .msg-wrap > .close:after {
  transform: rotate(-45deg) translate3d(0, 0, 0);
}
.msg-box.is-active .msg-wrap {
  transform: scale(1) translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
}
.msg-box.is-active .msg-wrap > .close {
  transform: scale(1);
  opacity: 1;
}
.msg-box.is-active .msg-wrap > .close:hover {
  transform: rotate(90deg);
}
.msg-box .msg-content {
  overflow-y: auto;
  overflow-x: hidden;
  height: 95%;
  text-align: left;
  -webkit-overflow-scrolling: touch;
  color: #000;
}
.msg-box .msg-content header {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background-color: #000;
  width: auto;
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #e60e10;
  transition: 0.2s;
}

#msg-alert .msg-wrap {
  height: auto;
  min-height: 100px;
  max-width: 500px;
}
#msg-alert .msg-content {
  text-align: center;
}
#msg-alert .msg-content header {
  font-size: 30px;
  margin-bottom: 20px;
}

#msg-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s;
  z-index: 9;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
}
#msg-loader .center {
  width: 15rem;
  color: #000;
  border-radius: 0.4rem;
  padding-bottom: 1rem;
  background: #fff;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
}
#msg-loader .center p {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  margin: 1rem 0;
}
#msg-loader .center .bar {
  width: 100%;
  height: 5px;
  background-color: #ccc;
  position: relative;
}
#msg-loader .center .bar .move {
  width: 20%;
  height: 5px;
  background-color: #e7211b;
  position: absolute;
  animation: bar-move 0.5s ease infinite;
}
#msg-loader.is-active {
  opacity: 1;
  pointer-events: auto;
}

.g-form > ul > li {
  position: relative;
  padding: 0.6rem 0 0.6rem 17%;
}
.g-form > ul > li label {
  position: absolute;
  top: 0.7rem;
  left: 0;
  text-align: left;
  font-size: 1.2rem;
}
.g-form > ul > li input {
  padding: 0.7rem 1.4rem;
  border-radius: 0.3rem;
  border: 0;
  width: 100%;
  background: #e9e9e9;
  color: #000;
  font-size: 1.2rem;
  font-family: 微軟正黑體;
  transition: 0.2s;
}
.g-form > ul > li input:focus, .g-form > ul > li input:hover {
  background-color: #d1d1d1;
}
.g-form > ul > li select {
  padding: 0.7rem 1.4rem;
  border-radius: 0.3rem;
  border: 0;
  width: 100%;
  background: url(../img/icon-arrow-down-000.svg) no-repeat calc(100% - 1rem) 50% #e9e9e9;
  background-size: 1rem;
  color: #000;
  font-size: 1.2rem;
  font-family: 微軟正黑體;
  -webkit-appearance: none;
  appearance: nonew;
}
.g-form > ul > li select:focus, .g-form > ul > li select:hover {
  background-color: #d1d1d1;
}
.g-form > ul > li input[type=checkbox], .g-form > ul > li input[type=radio] {
  display: none;
}
.g-form > ul > li input[type=checkbox] + label {
  padding-left: 2rem;
  width: auto;
  position: relative;
  top: 0;
  display: inline-block;
  line-height: 1.5;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
}
.g-form > ul > li input[type=checkbox] + label:before,
.g-form > ul > li input[type=checkbox] + label:after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.3rem;
  border: 0;
  background: #fff;
  color: #e60e10;
  background-image: url(../img/icon-checked.svg);
  background-size: 1.8rem;
  transition: 0.5s;
}
.g-form > ul > li input[type=checkbox] + label:focus:before, .g-form > ul > li input[type=checkbox] + label:hover:before {
  background-color: #e9e9e9;
}
.g-form > ul > li input[type=checkbox] + label:before {
  background-image: none;
  border: 1px solid #999;
}
.g-form > ul > li input[type=checkbox] + label:after {
  background-color: transparent;
  width: 0;
  box-shadow: none;
  top: -0.2rem;
}
.g-form > ul > li input[type=checkbox] + label:active:after, .g-form > ul > li input[type=checkbox]:checked + label:after {
  width: 1.5rem;
}
.g-form > ul > li input[type=radio] + label {
  padding-left: 1.9rem;
  padding-right: 0.6rem;
  width: auto;
  position: relative;
  top: 0;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}
.g-form > ul > li input[type=radio] + label:before,
.g-form > ul > li input[type=radio] + label:after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: #fff;
  color: #e60e10;
  transition: 0.5s;
}
.g-form > ul > li input[type=radio] + label:focus:before, .g-form > ul > li input[type=radio] + label:hover:before {
  background-color: #e9e9e9;
}
.g-form > ul > li input[type=radio] + label:before {
  background-image: none;
}
.g-form > ul > li input[type=radio] + label:after {
  background-color: transparent;
  transform: scale(0);
  background-color: #e60e10;
  box-shadow: none;
}
.g-form > ul > li input[type=radio] + label:active:after, .g-form > ul > li input[type=radio]:checked + label:after {
  transform: scale(0.6);
}
.g-form > ul > li .g-bt-1 {
  margin: 0 auto;
}
.g-form > ul > li a {
  text-decoration: underline;
}
.g-form.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 1s;
  display: block;
}

.counter {
  position: relative;
  height: 50px;
  margin: 5%;
  overflow: hidden;
  width: 160px;
  z-index: 2;
}
.counter * {
  margin: 0;
  padding: 0;
}
.counter > div {
  position: relative;
  float: left;
  top: 100%;
  transform: translateY(-100%);
  transition-timing-function: cubic-bezier(0, 0.575, 0.565, 1.05);
  will-change: transform;
}
.counter > div:nth-child(1) {
  transition-duration: 1s;
}
.counter > div:nth-child(2) {
  transition-duration: 1.2s;
}
.counter > div:nth-child(3) {
  transition-duration: 1.4s;
}
.counter > div:nth-child(4) {
  transition-duration: 1.6s;
}
.counter > div:nth-child(5) {
  transition-duration: 1.8s;
}
.counter > div:nth-child(6) {
  transition-duration: 2s;
}
.counter > div:nth-child(7) {
  transition-duration: 2.2s;
}
.counter > div:nth-child(8) {
  transition-duration: 2.4s;
}
.counter > div:nth-child(9) {
  transition-duration: 2.6s;
}
.counter > div:nth-child(10) {
  transition-duration: 2.8s;
}
.counter > div > span {
  display: block;
  font-size: 45px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}
.counter > span {
  display: block;
  font-size: 45px;
  color: #fff;
  font-weight: normal;
  line-height: 1;
}
.counter.is-animate > div {
  top: 0;
  transform: translateY(0);
}

#g-wrap {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background: url(../img/bg-1.webp), url(../img/bg-2.webp);
  background-repeat: no-repeat;
  background-size: 100% 220rem, 100% calc(100% - 220rem);
  background-position: 0 0, 0 220rem;
}

.g-section {
  position: relative;
  z-index: 1;
}
.g-section header {
  text-align: left;
}
.g-section header h2 {
  font-size: 3.3rem;
  letter-spacing: 0.9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.g-section header h2::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: linear-gradient(to right, #fff 50%, transparent 50.1%);
  background-size: 0.2rem;
}
.stars {
  pointer-events: none;
}
.stars span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  animation: stars1 60s linear infinite;
}
.stars span:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 5%, #473afc 20%, rgba(71, 58, 252, 0.2), transparent 100%);
  animation: stars_shine 0.4s infinite;
  display: block;
  position: absolute;
}
@keyframes stars_shine {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes stars1 {
  0% {
    opacity: 0;
    transform: translateX(-100vw);
  }
  25% {
    opacity: 1;
    transform: translateX(0%);
  }
  50%, 100% {
    opacity: 0;
    transform: translateX(100vw);
  }
}
.stars span:nth-child(1) {
  position: absolute;
  left: 94.4800175892%;
  top: 32.2142492339%;
  animation-delay: -1s;
  animation-duration: 128s;
}
.stars span:nth-child(1):before {
  animation-delay: -0.2s;
}
.stars span:nth-child(2) {
  position: absolute;
  left: 76.3559178032%;
  top: 18.086648628%;
  animation-delay: -2s;
  animation-duration: 113s;
}
.stars span:nth-child(2):before {
  animation-delay: -0.4s;
}
.stars span:nth-child(3) {
  position: absolute;
  left: 73.6132737204%;
  top: 36.4021923949%;
  animation-delay: -3s;
  animation-duration: 103s;
}
.stars span:nth-child(3):before {
  animation-delay: -0.6s;
}
.stars span:nth-child(4) {
  position: absolute;
  left: 94.0236893163%;
  top: 23.8553390383%;
  animation-delay: -4s;
  animation-duration: 109s;
}
.stars span:nth-child(4):before {
  animation-delay: -0.8s;
}
.stars span:nth-child(5) {
  position: absolute;
  left: 4.2160098704%;
  top: 45.6950837739%;
  animation-delay: -5s;
  animation-duration: 120s;
}
.stars span:nth-child(5):before {
  animation-delay: -1s;
}
.stars span:nth-child(6) {
  position: absolute;
  left: 25.7376329543%;
  top: 30.964273566%;
  animation-delay: -6s;
  animation-duration: 103s;
}
.stars span:nth-child(6):before {
  animation-delay: -1.2s;
}
.stars span:nth-child(7) {
  position: absolute;
  left: 17.4928792731%;
  top: 33.3131684541%;
  animation-delay: -7s;
  animation-duration: 112s;
}
.stars span:nth-child(7):before {
  animation-delay: -1.4s;
}
.stars span:nth-child(8) {
  position: absolute;
  left: 14.8611355678%;
  top: 14.8291385777%;
  animation-delay: -8s;
  animation-duration: 116s;
}
.stars span:nth-child(8):before {
  animation-delay: -1.6s;
}
.stars span:nth-child(9) {
  position: absolute;
  left: 39.1890365186%;
  top: 47.8776069584%;
  animation-delay: -9s;
  animation-duration: 130s;
}
.stars span:nth-child(9):before {
  animation-delay: -1.8s;
}
.stars span:nth-child(10) {
  position: absolute;
  left: 87.5265493637%;
  top: 34.3445970653%;
  animation-delay: -10s;
  animation-duration: 118s;
}
.stars span:nth-child(10):before {
  animation-delay: -2s;
}
.stars span:nth-child(11) {
  position: absolute;
  left: 71.1969432288%;
  top: 21.4404736078%;
  animation-delay: -11s;
  animation-duration: 122s;
}
.stars span:nth-child(11):before {
  animation-delay: -2.2s;
}
.stars span:nth-child(12) {
  position: absolute;
  left: 35.7526959506%;
  top: 54.2012889169%;
  animation-delay: -12s;
  animation-duration: 124s;
}
.stars span:nth-child(12):before {
  animation-delay: -2.4s;
}
.stars span:nth-child(13) {
  position: absolute;
  left: 64.8793352614%;
  top: 50.9360834331%;
  animation-delay: -13s;
  animation-duration: 130s;
}
.stars span:nth-child(13):before {
  animation-delay: -2.6s;
}
.stars span:nth-child(14) {
  position: absolute;
  left: 79.3689375059%;
  top: 23.281535235%;
  animation-delay: -14s;
  animation-duration: 120s;
}
.stars span:nth-child(14):before {
  animation-delay: -2.8s;
}
.stars span:nth-child(15) {
  position: absolute;
  left: 61.195155879%;
  top: 6.0504362616%;
  animation-delay: -15s;
  animation-duration: 103s;
}
.stars span:nth-child(15):before {
  animation-delay: -3s;
}
.stars span:nth-child(16) {
  position: absolute;
  left: 16.6615383415%;
  top: 56.7495272273%;
  animation-delay: -16s;
  animation-duration: 123s;
}
.stars span:nth-child(16):before {
  animation-delay: -3.2s;
}
.stars span:nth-child(17) {
  position: absolute;
  left: 81.5207364475%;
  top: 16.0697770867%;
  animation-delay: -17s;
  animation-duration: 102s;
}
.stars span:nth-child(17):before {
  animation-delay: -3.4s;
}
.stars span:nth-child(18) {
  position: absolute;
  left: 72.8062341714%;
  top: 52.6051925662%;
  animation-delay: -18s;
  animation-duration: 128s;
}
.stars span:nth-child(18):before {
  animation-delay: -3.6s;
}
.stars span:nth-child(19) {
  position: absolute;
  left: 25.7496851719%;
  top: 43.2157983892%;
  animation-delay: -19s;
  animation-duration: 128s;
}
.stars span:nth-child(19):before {
  animation-delay: -3.8s;
}
.stars span:nth-child(20) {
  position: absolute;
  left: 89.9303027283%;
  top: 13.3585506876%;
  animation-delay: -20s;
  animation-duration: 116s;
}
.stars span:nth-child(20):before {
  animation-delay: -4s;
}
.stars span:nth-child(21) {
  position: absolute;
  left: 7.9168151236%;
  top: 42.991830066%;
  animation-delay: -21s;
  animation-duration: 109s;
}
.stars span:nth-child(21):before {
  animation-delay: -4.2s;
}
.stars span:nth-child(22) {
  position: absolute;
  left: 44.836593177%;
  top: 2.9658543051%;
  animation-delay: -22s;
  animation-duration: 117s;
}
.stars span:nth-child(22):before {
  animation-delay: -4.4s;
}
.stars span:nth-child(23) {
  position: absolute;
  left: 52.4339801726%;
  top: 31.7873445086%;
  animation-delay: -23s;
  animation-duration: 114s;
}
.stars span:nth-child(23):before {
  animation-delay: -4.6s;
}
.stars span:nth-child(24) {
  position: absolute;
  left: 71.7967328957%;
  top: 9.7075543346%;
  animation-delay: -24s;
  animation-duration: 117s;
}
.stars span:nth-child(24):before {
  animation-delay: -4.8s;
}
.stars span:nth-child(25) {
  position: absolute;
  left: 0.3078882372%;
  top: 5.6163826809%;
  animation-delay: -25s;
  animation-duration: 105s;
}
.stars span:nth-child(25):before {
  animation-delay: -5s;
}
.stars span:nth-child(26) {
  position: absolute;
  left: 60.6624102042%;
  top: 32.5724986931%;
  animation-delay: -26s;
  animation-duration: 112s;
}
.stars span:nth-child(26):before {
  animation-delay: -5.2s;
}
.stars span:nth-child(27) {
  position: absolute;
  left: 30.7597301899%;
  top: 22.050452877%;
  animation-delay: -27s;
  animation-duration: 105s;
}
.stars span:nth-child(27):before {
  animation-delay: -5.4s;
}
.stars span:nth-child(28) {
  position: absolute;
  left: 2.6923586975%;
  top: 12.4470432939%;
  animation-delay: -28s;
  animation-duration: 113s;
}
.stars span:nth-child(28):before {
  animation-delay: -5.6s;
}
.stars span:nth-child(29) {
  position: absolute;
  left: 47.3144419845%;
  top: 22.9420957197%;
  animation-delay: -29s;
  animation-duration: 102s;
}
.stars span:nth-child(29):before {
  animation-delay: -5.8s;
}
.stars span:nth-child(30) {
  position: absolute;
  left: 71.4359202584%;
  top: 1.6344913569%;
  animation-delay: -30s;
  animation-duration: 101s;
}
.stars span:nth-child(30):before {
  animation-delay: -6s;
}
.stars span:nth-child(31) {
  position: absolute;
  left: 34.2982983785%;
  top: 3.8100715706%;
  animation-delay: -31s;
  animation-duration: 110s;
}
.stars span:nth-child(31):before {
  animation-delay: -6.2s;
}
.stars span:nth-child(32) {
  position: absolute;
  left: 19.1393250227%;
  top: 27.9929453563%;
  animation-delay: -32s;
  animation-duration: 130s;
}
.stars span:nth-child(32):before {
  animation-delay: -6.4s;
}
.stars span:nth-child(33) {
  position: absolute;
  left: 56.2449658877%;
  top: 54.0650567267%;
  animation-delay: -33s;
  animation-duration: 108s;
}
.stars span:nth-child(33):before {
  animation-delay: -6.6s;
}
.stars span:nth-child(34) {
  position: absolute;
  left: 51.1093515572%;
  top: 24.8025956627%;
  animation-delay: -34s;
  animation-duration: 106s;
}
.stars span:nth-child(34):before {
  animation-delay: -6.8s;
}
.stars span:nth-child(35) {
  position: absolute;
  left: 88.3727739182%;
  top: 27.9013193545%;
  animation-delay: -35s;
  animation-duration: 104s;
}
.stars span:nth-child(35):before {
  animation-delay: -7s;
}
.stars span:nth-child(36) {
  position: absolute;
  left: 64.0623698715%;
  top: 12.0079492421%;
  animation-delay: -36s;
  animation-duration: 115s;
}
.stars span:nth-child(36):before {
  animation-delay: -7.2s;
}
.stars span:nth-child(37) {
  position: absolute;
  left: 55.9291435912%;
  top: 55.7042005895%;
  animation-delay: -37s;
  animation-duration: 108s;
}
.stars span:nth-child(37):before {
  animation-delay: -7.4s;
}
.stars span:nth-child(38) {
  position: absolute;
  left: 23.8993135163%;
  top: 27.7746343417%;
  animation-delay: -38s;
  animation-duration: 105s;
}
.stars span:nth-child(38):before {
  animation-delay: -7.6s;
}
.stars span:nth-child(39) {
  position: absolute;
  left: 81.6654967926%;
  top: 1.904549936%;
  animation-delay: -39s;
  animation-duration: 113s;
}
.stars span:nth-child(39):before {
  animation-delay: -7.8s;
}
.stars span:nth-child(40) {
  position: absolute;
  left: 79.1182432574%;
  top: 25.5525716949%;
  animation-delay: -40s;
  animation-duration: 126s;
}
.stars span:nth-child(40):before {
  animation-delay: -8s;
}
.stars span:nth-child(41) {
  position: absolute;
  left: 49.5837326177%;
  top: 45.2026441225%;
  animation-delay: -41s;
  animation-duration: 124s;
}
.stars span:nth-child(41):before {
  animation-delay: -8.2s;
}
.stars span:nth-child(42) {
  position: absolute;
  left: 50.2933605526%;
  top: 53.8026684531%;
  animation-delay: -42s;
  animation-duration: 111s;
}
.stars span:nth-child(42):before {
  animation-delay: -8.4s;
}
.stars span:nth-child(43) {
  position: absolute;
  left: 20.3455350362%;
  top: 40.0058997919%;
  animation-delay: -43s;
  animation-duration: 106s;
}
.stars span:nth-child(43):before {
  animation-delay: -8.6s;
}
.stars span:nth-child(44) {
  position: absolute;
  left: 89.9293960779%;
  top: 9.0795578599%;
  animation-delay: -44s;
  animation-duration: 117s;
}
.stars span:nth-child(44):before {
  animation-delay: -8.8s;
}
.stars span:nth-child(45) {
  position: absolute;
  left: 86.7861050628%;
  top: 27.7301923317%;
  animation-delay: -45s;
  animation-duration: 115s;
}
.stars span:nth-child(45):before {
  animation-delay: -9s;
}
.stars span:nth-child(46) {
  position: absolute;
  left: 89.7531860788%;
  top: 53.6507319196%;
  animation-delay: -46s;
  animation-duration: 110s;
}
.stars span:nth-child(46):before {
  animation-delay: -9.2s;
}
.stars span:nth-child(47) {
  position: absolute;
  left: 19.2800057463%;
  top: 27.9865716278%;
  animation-delay: -47s;
  animation-duration: 113s;
}
.stars span:nth-child(47):before {
  animation-delay: -9.4s;
}
.stars span:nth-child(48) {
  position: absolute;
  left: 59.8114662019%;
  top: 49.4433709899%;
  animation-delay: -48s;
  animation-duration: 107s;
}
.stars span:nth-child(48):before {
  animation-delay: -9.6s;
}
.stars span:nth-child(49) {
  position: absolute;
  left: 36.958695199%;
  top: 23.3578548344%;
  animation-delay: -49s;
  animation-duration: 124s;
}
.stars span:nth-child(49):before {
  animation-delay: -9.8s;
}
.stars span:nth-child(50) {
  position: absolute;
  left: 1.6994089915%;
  top: 11.7655394499%;
  animation-delay: -50s;
  animation-duration: 117s;
}
.stars span:nth-child(50):before {
  animation-delay: -10s;
}
.stars span:nth-child(51) {
  position: absolute;
  left: 80.287841421%;
  top: 20.9895988844%;
  animation-delay: -51s;
  animation-duration: 101s;
}
.stars span:nth-child(51):before {
  animation-delay: -10.2s;
}
.stars span:nth-child(52) {
  position: absolute;
  left: 61.6797339433%;
  top: 15.613071795%;
  animation-delay: -52s;
  animation-duration: 130s;
}
.stars span:nth-child(52):before {
  animation-delay: -10.4s;
}
.stars span:nth-child(53) {
  position: absolute;
  left: 93.604942072%;
  top: 1.4486697061%;
  animation-delay: -53s;
  animation-duration: 110s;
}
.stars span:nth-child(53):before {
  animation-delay: -10.6s;
}
.stars span:nth-child(54) {
  position: absolute;
  left: 21.5809062922%;
  top: 30.6486314814%;
  animation-delay: -54s;
  animation-duration: 114s;
}
.stars span:nth-child(54):before {
  animation-delay: -10.8s;
}
.stars span:nth-child(55) {
  position: absolute;
  left: 39.3564283352%;
  top: 12.830747312%;
  animation-delay: -55s;
  animation-duration: 116s;
}
.stars span:nth-child(55):before {
  animation-delay: -11s;
}
.stars span:nth-child(56) {
  position: absolute;
  left: 3.4354317898%;
  top: 36.0218271328%;
  animation-delay: -56s;
  animation-duration: 108s;
}
.stars span:nth-child(56):before {
  animation-delay: -11.2s;
}
.stars span:nth-child(57) {
  position: absolute;
  left: 13.7945907561%;
  top: 49.895682731%;
  animation-delay: -57s;
  animation-duration: 112s;
}
.stars span:nth-child(57):before {
  animation-delay: -11.4s;
}
.stars span:nth-child(58) {
  position: absolute;
  left: 33.9133392708%;
  top: 26.0229477916%;
  animation-delay: -58s;
  animation-duration: 129s;
}
.stars span:nth-child(58):before {
  animation-delay: -11.6s;
}
.stars span:nth-child(59) {
  position: absolute;
  left: 9.6950710239%;
  top: 37.8741134767%;
  animation-delay: -59s;
  animation-duration: 107s;
}
.stars span:nth-child(59):before {
  animation-delay: -11.8s;
}
.stars span:nth-child(60) {
  position: absolute;
  left: 68.2969659906%;
  top: 53.7790026773%;
  animation-delay: -60s;
  animation-duration: 117s;
}
.stars span:nth-child(60):before {
  animation-delay: -12s;
}
.stars span:nth-child(61) {
  position: absolute;
  left: 99.2471211033%;
  top: 2.6025771349%;
  animation-delay: -61s;
  animation-duration: 111s;
}
.stars span:nth-child(61):before {
  animation-delay: -12.2s;
}
.stars span:nth-child(62) {
  position: absolute;
  left: 91.9061463683%;
  top: 19.2251734092%;
  animation-delay: -62s;
  animation-duration: 121s;
}
.stars span:nth-child(62):before {
  animation-delay: -12.4s;
}
.stars span:nth-child(63) {
  position: absolute;
  left: 67.2319347291%;
  top: 23.4933192227%;
  animation-delay: -63s;
  animation-duration: 108s;
}
.stars span:nth-child(63):before {
  animation-delay: -12.6s;
}
.stars span:nth-child(64) {
  position: absolute;
  left: 74.2310102757%;
  top: 59.0685098857%;
  animation-delay: -64s;
  animation-duration: 126s;
}
.stars span:nth-child(64):before {
  animation-delay: -12.8s;
}
.stars span:nth-child(65) {
  position: absolute;
  left: 3.6165691904%;
  top: 47.6079990882%;
  animation-delay: -65s;
  animation-duration: 124s;
}
.stars span:nth-child(65):before {
  animation-delay: -13s;
}
.stars span:nth-child(66) {
  position: absolute;
  left: 97.5526802388%;
  top: 52.0895055846%;
  animation-delay: -66s;
  animation-duration: 125s;
}
.stars span:nth-child(66):before {
  animation-delay: -13.2s;
}
.stars span:nth-child(67) {
  position: absolute;
  left: 26.5883811021%;
  top: 56.4750718236%;
  animation-delay: -67s;
  animation-duration: 112s;
}
.stars span:nth-child(67):before {
  animation-delay: -13.4s;
}
.stars span:nth-child(68) {
  position: absolute;
  left: 40.8861294088%;
  top: 39.0072529468%;
  animation-delay: -68s;
  animation-duration: 121s;
}
.stars span:nth-child(68):before {
  animation-delay: -13.6s;
}
.stars span:nth-child(69) {
  position: absolute;
  left: 34.3256739589%;
  top: 53.5538298345%;
  animation-delay: -69s;
  animation-duration: 115s;
}
.stars span:nth-child(69):before {
  animation-delay: -13.8s;
}
.stars span:nth-child(70) {
  position: absolute;
  left: 92.0449274438%;
  top: 53.5611594402%;
  animation-delay: -70s;
  animation-duration: 117s;
}
.stars span:nth-child(70):before {
  animation-delay: -14s;
}
.stars span:nth-child(71) {
  position: absolute;
  left: 81.1858602738%;
  top: 16.5192610047%;
  animation-delay: -71s;
  animation-duration: 103s;
}
.stars span:nth-child(71):before {
  animation-delay: -14.2s;
}
.stars span:nth-child(72) {
  position: absolute;
  left: 38.8862893016%;
  top: 19.1338822227%;
  animation-delay: -72s;
  animation-duration: 107s;
}
.stars span:nth-child(72):before {
  animation-delay: -14.4s;
}
.stars span:nth-child(73) {
  position: absolute;
  left: 60.4085649726%;
  top: 25.9578280196%;
  animation-delay: -73s;
  animation-duration: 115s;
}
.stars span:nth-child(73):before {
  animation-delay: -14.6s;
}
.stars span:nth-child(74) {
  position: absolute;
  left: 55.2581489083%;
  top: 36.2890955508%;
  animation-delay: -74s;
  animation-duration: 110s;
}
.stars span:nth-child(74):before {
  animation-delay: -14.8s;
}
.stars span:nth-child(75) {
  position: absolute;
  left: 32.9911683173%;
  top: 8.0963480625%;
  animation-delay: -75s;
  animation-duration: 120s;
}
.stars span:nth-child(75):before {
  animation-delay: -15s;
}
.stars span:nth-child(76) {
  position: absolute;
  left: 33.5567834692%;
  top: 4.9776828453%;
  animation-delay: -76s;
  animation-duration: 108s;
}
.stars span:nth-child(76):before {
  animation-delay: -15.2s;
}
.stars span:nth-child(77) {
  position: absolute;
  left: 85.83375273%;
  top: 51.7518220696%;
  animation-delay: -77s;
  animation-duration: 120s;
}
.stars span:nth-child(77):before {
  animation-delay: -15.4s;
}
.stars span:nth-child(78) {
  position: absolute;
  left: 29.5151652791%;
  top: 35.8833849258%;
  animation-delay: -78s;
  animation-duration: 104s;
}
.stars span:nth-child(78):before {
  animation-delay: -15.6s;
}
.stars span:nth-child(79) {
  position: absolute;
  left: 75.7476599114%;
  top: 24.364584135%;
  animation-delay: -79s;
  animation-duration: 101s;
}
.stars span:nth-child(79):before {
  animation-delay: -15.8s;
}
.stars span:nth-child(80) {
  position: absolute;
  left: 22.1784146316%;
  top: 48.8714211903%;
  animation-delay: -80s;
  animation-duration: 111s;
}
.stars span:nth-child(80):before {
  animation-delay: -16s;
}
.stars span:nth-child(5n) {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

[class^=icon-spot-] {
  width: 10rem;
  height: 10rem;
  background: radial-gradient(ellipse, #3b2dff, transparent 70%);
  position: absolute;
}

[class^=icon-flare-] {
  width: 20rem;
  height: 20rem;
  position: absolute;
  z-index: 1;
  mix-blend-mode: plus-lighter;
  animation: icon_star_scale 1s linear infinite alternate;
  pointer-events: none;
}
[class^=icon-flare-]::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-flare.webp) center no-repeat;
  background-size: 100% 100%;
  display: block;
}
@keyframes icon_star_scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.5);
  }
}
[class^=icon-flare-]:nth-child(3n-1) {
  animation-duration: 0.5s;
}
[class^=icon-flare-]:nth-child(3n-2) {
  animation-duration: 0.7s;
}

[class^=icon-star-] {
  width: 3rem;
  height: 3rem;
  position: absolute;
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}
[class^=icon-star-]:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff, transparent 60%);
  background-size: 100%;
  animation: icon_star_scale 1s infinite alternate;
}
[class^=icon-star-].icon-star-2:before {
  animation-duration: 0.7s;
}

[class^=text-h2-], [class^=text-h3-] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  display: block;
  text-indent: -9999rem;
}

#kv {
  height: 47rem;
  overflow: hidden;
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 0.3rem 0.7rem #000);
}
#kv .bg .mask {
  -webkit-mask-image: url(../img/mask-kv.webp);
          mask-image: url(../img/mask-kv.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  overflow: hidden;
}
#kv .bg .scene {
  width: 100%;
  margin-top: -23.2rem;
}
#kv .bg .sun {
  width: 40rem;
  height: 40rem;
  top: -30%;
  left: -5%;
  background: url(../img/sun.webp?v3);
  background-size: 100%;
  position: absolute;
  mix-blend-mode: screen;
  animation: sun_shine 25s linear infinite;
  z-index: 1;
}
@keyframes sun_shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#kv #g-logo {
  position: absolute;
  z-index: 2;
  top: 1.7rem;
  left: 2.8%;
  width: 10.2rem;
}
#kv header {
  text-align: left;
  margin: 2.3rem auto 0 16.3%;
  position: relative;
}
#kv header u {
  float: right;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.3;
  text-decoration: none;
  margin-right: 16.5%;
  margin-top: -0.3rem;
}
#kv header u:before, #kv header u::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
}
#kv header u::before {
  background: linear-gradient(to right, transparent, #fff);
}
#kv header u::after {
  background: linear-gradient(to left, transparent, #fff);
}
#kv h1 {
  color: #000;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.5));
}
#kv h1 b {
  font-size: 5.1rem;
}
#kv h1 b span {
  position: relative;
  transform: scale(1);
  display: inline-block;
}
#kv h1 b span::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  opacity: 0;
}
#kv h1 b, #kv h1 span {
  font-weight: 900;
  transform: scale(1, 0.78);
  display: inline-block;
}
#kv h1 p {
  display: flex;
  align-items: center;
  margin-top: -2.9rem;
}
#kv h1 p span {
  font-size: 4.2rem;
}
#kv .power {
  background: url(../img/icon-splash.webp) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 54.6%;
  left: 60%;
  width: 27.9rem;
  height: 14.2rem;
  display: flex;
  justify-content: center;
  padding-top: 4.8rem;
  padding-right: 1rem;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
}
#kv .power li {
  position: relative;
  padding: 0 1.2rem;
}
#kv .power li:first-child::after {
  content: "";
  width: 1px;
  height: 3rem;
  background: #fff;
  position: absolute;
  top: 2rem;
  left: 100%;
}
#kv .power li p {
  font-size: 1.2rem;
  transform: skew(-10deg);
  letter-spacing: 0.5rem;
  text-align: left;
}
#kv .power li strong {
  font-size: 4rem;
  line-height: 1;
  display: inline-block;
  margin-top: -0.7rem;
}
#kv .power li [class^=text-] {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  background-color: #fff;
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 50rem;
  text-indent: -9999rem;
  position: relative;
  top: -0.4rem;
}
#kv .power li .text-ps {
  background-image: url(../img/text-ps.svg);
}
#kv .power li .text-kgm {
  background-image: url(../img/text-kgm.svg);
}
#kv .btns {
  position: absolute;
  top: 76%;
  left: 58.2%;
}
#kv.is-animate h1 b span::before {
  opacity: 0;
  animation: h1_b_span_zoom 3s forwards;
}
@keyframes h1_b_span_zoom {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  10%, 100% {
    opacity: 0;
    transform: scale(3);
  }
}
#kv.is-animate h1 b span:nth-child(1)::before {
  animation-delay: 1.3s;
}
#kv.is-animate h1 b span:nth-child(2)::before {
  animation-delay: 1.6s;
}
#kv.is-animate h1 b span:nth-child(3)::before {
  animation-delay: 1.9s;
}
#kv.is-animate h1 b span:nth-child(4)::before {
  animation-delay: 2.2s;
}
#kv.is-animate .bg .scene {
  animation: scene_in 1.5s forwards;
}
@keyframes scene_in {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.logo-hilux {
  width: 30rem;
  height: 5rem;
  background: url(../img/logo-hilux.svg) 50% 55% no-repeat;
  background-size: 93%;
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999rem;
}

#g-interior {
  width: 80%;
  margin: 0 auto;
}
#g-interior header {
  margin-top: -0.8rem;
}
#g-interior header > p {
  margin-top: -0.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
}
#g-interior .main {
  margin: 2.8rem 0 1.5rem;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}
#g-interior .main::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #826e57;
  position: absolute;
  z-index: 1;
  transform-origin: 100% 100%;
}
#g-interior .main img {
  width: 100%;
}
#g-interior .main small {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  font-size: 0.7rem;
  opacity: 0.8;
}
#g-interior .other {
  display: flex;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.5);
}
#g-interior .other li {
  flex: 1;
  border-right: 1px solid #fff;
  overflow: hidden;
  position: relative;
}
#g-interior .other li:last-child {
  border-right: 0;
}
#g-interior .other li::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #826e57;
  position: absolute;
  z-index: 1;
  transform-origin: 100% 100%;
}
#g-interior .other img {
  width: 100%;
}
#g-interior .other .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.6rem;
  background: #000;
}
#g-interior .other h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
#g-interior .other h3 span {
  font-size: 0.85rem;
}
#g-interior .other small {
  font-size: 0.85rem;
  text-align: left;
  display: inline-block;
  position: relative;
  line-height: 1.3;
  padding-left: 0.5rem;
  margin-left: 0.5rem;
}
#g-interior .other small::before {
  content: "";
  width: 1px;
  height: 2.2rem;
  background: #fff;
  position: absolute;
  top: 0;
  right: 100%;
}
#g-interior.is-animate .main::before, #g-interior.is-animate .other li::before {
  animation: cover_in 1s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes cover_in {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
#g-interior.is-animate .main img, #g-interior.is-animate .other li img {
  animation: img_scale_in 1s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes img_scale_in {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#g-interior.is-animate .other li:nth-child(1):before {
  animation-delay: 0.7s;
}
#g-interior.is-animate .other li:nth-child(1) img {
  animation-delay: 0.7s;
}
#g-interior.is-animate .other li:nth-child(2):before {
  animation-delay: 0.9s;
}
#g-interior.is-animate .other li:nth-child(2) img {
  animation-delay: 0.9s;
}
#g-interior.is-animate .other li:nth-child(3):before {
  animation-delay: 1.1s;
}
#g-interior.is-animate .other li:nth-child(3) img {
  animation-delay: 1.1s;
}

#g-offroad {
  width: 80%;
  margin: 0 auto;
  padding-top: 2.3rem;
}
#g-offroad header h2 {
  letter-spacing: 0.5rem;
}
#g-offroad .control {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
  perspective: 50rem;
}
#g-offroad .control li {
  width: 48.4%;
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.5);
  opacity: 0;
}
#g-offroad .control li img {
  width: 100%;
}
#g-offroad .control .txt {
  padding: 1rem 0 1.2rem;
  background: #000;
}
#g-offroad .control .txt h3 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
#g-offroad .time {
  transform: skew(-6deg);
  margin-left: -2.5%;
  width: 105%;
}
#g-offroad .time ol {
  display: flex;
  margin-top: 1.8rem;
  text-align: left;
}
#g-offroad .time li {
  flex: 1;
  height: 19rem;
  position: relative;
  overflow: hidden;
}
#g-offroad .time li::after {
  content: "";
  width: 2rem;
  height: 20rem;
  background: radial-gradient(ellipse, #000, transparent 60%);
  position: absolute;
  top: -8rem;
  right: -1rem;
}
#g-offroad .time .img {
  position: absolute;
  width: 111%;
  height: 100%;
  top: 0;
  left: -5%;
  transform: skew(6deg);
  background: #000;
}
#g-offroad .time .img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  position: absolute;
  top: 0;
  left: 0;
}
#g-offroad .time .img img {
  height: 100%;
  opacity: 0;
}
#g-offroad .time .txt {
  position: relative;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 0 1rem #000) drop-shadow(0 0 1rem #000);
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  padding-left: 1.2rem;
  padding-bottom: 2.2rem;
  transform: skew(6deg);
}
#g-offroad .time h3 {
  margin-bottom: 4rem;
}
#g-offroad .time strong {
  font-size: 6rem;
  font-weight: normal;
  line-height: 1;
  transform: skew(-6deg);
  display: block;
}
#g-offroad .time sup {
  font-size: 60%;
}
#g-offroad .time p {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2rem;
}
#g-offroad .time u {
  font-size: 1.7rem;
  letter-spacing: 0.4rem;
  text-decoration: none;
}
#g-offroad .time h4 {
  background: #000;
  width: 100%;
  font-size: 1.2rem;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
#g-offroad .time h4 span {
  transform: skew(6deg);
}
#g-offroad.is-animate .control li:nth-child(1) {
  animation: control_li_in_left 1s forwards;
}
@keyframes control_li_in_left {
  0% {
    opacity: 1;
    transform: rotateY(-90deg) translateX(-50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
#g-offroad.is-animate .control li:nth-child(2) {
  animation: control_li_in_right 1s forwards;
}
@keyframes control_li_in_right {
  0% {
    opacity: 1;
    transform: rotateY(90deg) translateX(50%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
#g-offroad.is-animate .time .img img {
  animation: time_img_in 1s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes time_img_in {
  0% {
    opacity: 1;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#g-offroad.is-animate .time li:nth-child(1) .img img {
  animation-delay: 0.7s;
}
#g-offroad.is-animate .time li:nth-child(2) .img img {
  animation-delay: 0.9s;
}
#g-offroad.is-animate .time li:nth-child(3) .img img {
  animation-delay: 1.1s;
}
#g-offroad.is-animate .time li:nth-child(4) .img img {
  animation-delay: 1.3s;
}

#g-tech header {
  width: 82%;
  margin: 4.3rem auto 0 8%;
}
#g-tech header h2 {
  text-align: center;
}
#g-tech header .logo-DCT {
  width: 76.5rem;
  height: 7.4rem;
  background: url(../img/logo-DCT.svg) no-repeat;
  background-size: 100%;
  text-indent: -9999rem;
  display: block;
  position: relative;
  top: -0.5rem;
  margin-right: 1rem;
}
#g-tech .map {
  position: relative;
  height: 42.5rem;
  margin-top: 2rem;
}
#g-tech .map .car {
  position: absolute;
  top: 24.2%;
  left: 8.2%;
  width: 62.8%;
  opacity: 0;
}
#g-tech .point li {
  position: absolute;
  text-align: left;
  width: 20rem;
}
#g-tech .point li:nth-child(1) {
  top: 1%;
  left: 8.7%;
}
#g-tech .point li:nth-child(2) {
  top: 1%;
  left: 39.5%;
}
#g-tech .point li:nth-child(3) {
  top: 83%;
  left: 8.7%;
}
#g-tech .point li:nth-child(4) {
  top: 20%;
  left: 71.9%;
  width: 15.2rem;
}
#g-tech .point li:nth-child(5) {
  top: 61.6%;
  left: 71.9%;
  width: 15.2rem;
}
#g-tech .point h3 {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  display: flex;
  align-items: center;
}
#g-tech .point .no {
  width: 1.4rem;
  height: 1.4rem;
  background: #fff;
  border-radius: 50rem;
  color: #000;
  display: inline-block;
  font-size: 1.2rem;
  font-style: normal;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  margin-right: 0.4rem;
  box-shadow: 0 0 1rem #000;
}
#g-tech .point p {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: 1.2;
}
#g-tech .point img {
  width: 100%;
  border: 1px solid #fff;
  margin-bottom: 0.2rem;
}
#g-tech .tech-line {
  background: url(../img/tech-line-pc.png?v2) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 8.1%;
  left: 9%;
  width: 66%;
  height: 35rem;
  opacity: 0;
}
#g-tech.is-animate .map .car {
  animation: tech_car_in 1s forwards;
}
@keyframes tech_car_in {
  0% {
    opacity: 1;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#g-tech.is-animate .tech-line {
  animation: tech_line_in 0.5s 1s forwards;
}
@keyframes tech_line_in {
  0%, 20%, 50% {
    opacity: 0;
  }
  15%, 45%, 100% {
    opacity: 1;
  }
}

#g-try {
  margin-top: 9rem;
  background: #846e58;
}
#g-try .deco-brush-1 {
  width: 100%;
  height: 10.5rem;
  position: absolute;
  top: -10.5rem;
  left: 0;
  filter: drop-shadow(0 -0.5rem 0.2rem rgba(0, 0, 0, 0.2));
}
#g-try .deco-brush-1::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #725c47, #846e58);
  -webkit-mask-image: url(../img/bg-3.webp);
          mask-image: url(../img/bg-3.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
#g-try .icon-red-giftbox {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.5rem;
}
#g-try header {
  position: relative;
}
#g-try header h2 {
  text-align: center;
  display: block;
  font-weight: bold;
}
#g-try header h2::after {
  display: none;
}
#g-try header p {
  font-size: 1.6rem;
  text-align: center;
  margin-top: -0.8rem;
}
#g-try .g-form {
  width: 53%;
  margin: 1rem auto;
  text-align: left;
}
#g-try .g-form > ul > li > label {
  font-size: 1.4rem;
  transform: skew(-10deg);
}
#g-try .g-form > ul > li input[type=text],
#g-try .g-form > ul > li input[type=tel] {
  background: #b2a497;
  border: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
}
#g-try .g-form > ul > li select {
  background: url(../img/if-down.svg);
  background-size: 1.2rem 1.2rem;
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-color: #b2a497;
  border: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
}
#g-try .g-form > ul > li select option {
  background: #b2a497;
  color: #fff;
}
#g-try .g-form > ul > li.is-flex input[type=radio] + label {
  font-size: 1.2rem;
  padding-left: 2.2rem;
  transform: skew(0);
}
#g-try .g-form > ul > li.is-flex input[type=radio] + label:before {
  background: #b2a497;
}
#g-try .g-form > ul > li.is-flex input[type=radio] + label:after {
  transform: scale(0);
  background: #548917;
}
#g-try .g-form > ul > li.is-flex input[type=radio] + label:before, #g-try .g-form > ul > li.is-flex input[type=radio] + label:after {
  width: 2rem;
  height: 2rem;
  top: -0.4rem;
}
#g-try .g-form > ul > li.is-flex input[type=radio] + label:active:after, #g-try .g-form > ul > li.is-flex input[type=radio]:checked + label:after {
  transform: scale(0.6);
}
#g-try #t-name {
  width: 60%;
  margin-right: 1rem;
}
#g-try #t-countie {
  width: 48%;
  margin-right: 3%;
}
#g-try #t-district {
  width: 48%;
  margin-right: 0;
}
#g-try #try-submit {
  background-color: transparent;
  margin: -2rem auto 0;
  border: 0;
  display: block;
}
#g-try .no-padding {
  padding-left: 0 !important;
}
#g-try .is-flex {
  white-space: nowrap;
}
#g-try .is-rule {
  text-align: center;
  padding-left: 0;
  margin: 1rem auto;
  font-size: 0.9rem;
}
#g-try .is-rule a {
  text-decoration: none;
  position: relative;
  background: linear-gradient(to right, #b28f64, #b28f64);
  background-size: 100% 0.1rem;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
#g-try .is-vcode .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#g-try .is-vcode .flex input {
  width: 56.5%;
}
#g-try .is-vcode .flex button {
  width: 40%;
  padding-left: 0;
  padding-right: 0;
}
#g-try .is-vcode .flex button b {
  color: #e60e10;
}
#g-try .is-vcode #t-vcode-notice {
  color: #e60e10;
}
#g-try .is-vcode #t-vcode-notice small {
  display: block;
}
#g-try .rule {
  color: #000;
  width: 90%;
  margin: 0 auto;
}
#g-try .rule .list-star {
  font-size: 0.6rem;
  text-align: left;
}

#g-price {
  margin-top: -3rem;
  background: linear-gradient(to bottom, #846e58, #5b4532);
}
#g-price .deco-brush-2 {
  width: 100%;
  height: 10.5rem;
  position: absolute;
  bottom: -10.5rem;
  left: 0;
  filter: drop-shadow(0 0.5rem 0.2rem rgba(0, 0, 0, 0.5));
}
#g-price .deco-brush-2::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #5b4532, #4b3523);
  -webkit-mask-image: url(../img/bg-4.webp);
          mask-image: url(../img/bg-4.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
#g-price header {
  text-align: center;
}
#g-price header h2 {
  display: block;
}
#g-price header h2::after {
  display: none;
}
#g-price header small {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  display: block;
  margin-top: -0.5rem;
}
#g-price .logo-hilux {
  width: 28rem;
  height: 3rem;
  filter: invert(1);
  position: relative;
  top: -0.4rem;
}
#g-price .table-1-wrap {
  padding-bottom: 2rem;
}
#g-price .table-1 {
  width: 53%;
  margin: 2.5rem auto 0;
  box-shadow: 0 0 1.8rem rgba(0, 0, 0, 0.7);
}
#g-price .table-1 tr th {
  width: 50%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 0;
}
#g-price .table-1 tr th:nth-child(1) {
  background: linear-gradient(to right, #89735d, #a18b73);
  border-right: 0.2rem solid #89735d;
}
#g-price .table-1 tr th:nth-child(2) {
  background: linear-gradient(to right, #a18b73, #e1c9ae);
}
#g-price .table-1 td {
  background: #5b4532;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.2rem;
  line-height: 2.4;
}

#g-spec {
  padding-top: 11rem;
}
#g-spec header h2 {
  display: block;
  text-align: center;
  font-weight: bold;
}
#g-spec header h2::after {
  display: none;
}
#g-spec .list-r {
  width: 70%;
  margin: 3rem auto 8rem;
  text-align: left;
  font-size: 0.9rem;
}

#msg-rule .msg-content ul {
  padding-left: 25px;
}
#msg-rule .msg-content ul li {
  list-style-type: decimal;
}

#msg-privacy .msg-wrap {
  width: 90%;
  height: 60%;
  max-width: 600px;
  max-height: 90%;
}
#msg-privacy .close {
  background: rgba(230, 14, 16, 0.8);
}
#msg-privacy a {
  color: #000;
  text-decoration: underline;
}

#msg-album-cross, #msg-album-altis, #msg-preorder {
  background: rgba(0, 0, 0, 0.8);
  background-size: 100%;
  -webkit-backdrop-filter: blur(0.4rem);
          backdrop-filter: blur(0.4rem);
}
#msg-album-cross .msg-wrap, #msg-album-altis .msg-wrap, #msg-preorder .msg-wrap {
  width: 53%;
  background: none;
  border: 0.2rem solid #cbb89a;
  border-radius: 0.2rem;
  padding: 0.2rem;
}
#msg-album-cross .msg-wrap:before, #msg-album-cross .msg-wrap:after, #msg-album-altis .msg-wrap:before, #msg-album-altis .msg-wrap:after, #msg-preorder .msg-wrap:before, #msg-preorder .msg-wrap:after {
  content: "";
  position: absolute;
  border: 1px solid #9a7829;
  pointer-events: none;
}
#msg-album-cross .msg-wrap::before, #msg-album-altis .msg-wrap::before, #msg-preorder .msg-wrap::before {
  width: calc(100% + .8rem);
  height: calc(100% + .8rem);
  top: -0.4rem;
  left: -0.4rem;
  border-radius: 0.3rem;
}
#msg-album-cross .msg-wrap::after, #msg-album-altis .msg-wrap::after, #msg-preorder .msg-wrap::after {
  width: calc(100% - .4rem);
  height: calc(100% - .4rem);
  top: 0.2rem;
  left: 0.2rem;
  border-radius: 0.1rem;
}
#msg-album-cross .msg-wrap > .close, #msg-album-altis .msg-wrap > .close, #msg-preorder .msg-wrap > .close {
  width: 2.8rem;
  height: 2.8rem;
  top: -1.5rem;
  right: -1.5rem;
  border: 0.2rem solid #b28f64;
  background: #000;
  z-index: 1;
}
#msg-album-cross .msg-wrap > .close:before, #msg-album-cross .msg-wrap > .close::after, #msg-album-altis .msg-wrap > .close:before, #msg-album-altis .msg-wrap > .close::after, #msg-preorder .msg-wrap > .close:before, #msg-preorder .msg-wrap > .close::after {
  width: 0.14rem;
  height: 2.7rem;
  top: -0.15rem;
  left: 1.2rem;
  background: #b28f64;
}
#msg-album-cross .msg-content, #msg-album-altis .msg-content, #msg-preorder .msg-content {
  overflow: visible;
}

#msg-album-cross .tns-wrap li, #msg-album-altis .tns-wrap li {
  position: relative;
}
#msg-album-cross .tns-wrap p, #msg-album-altis .tns-wrap p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
  font-size: 0.8rem;
  text-shadow: 0 0 1rem #000;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}
#msg-album-cross .tns-wrap p::before, #msg-album-altis .tns-wrap p::before {
  content: "";
  width: 0.42rem;
  height: 0.9rem;
  background: linear-gradient(to bottom, #b28f64, #dfd0be);
  display: inline-block;
  margin-right: 0.5rem;
}
#msg-album-cross .tns-item, #msg-album-altis .tns-item {
  transform: scale(0.8);
  opacity: 0.5;
  transition: 0.5s;
}
#msg-album-cross .tns-item.tns-slide-active, #msg-album-altis .tns-item.tns-slide-active {
  transform: scale(1);
  opacity: 1;
}

#tns-msg-album-1-prev,
#tns-msg-album-1-next,
#tns-msg-album-2-prev,
#tns-msg-album-2-next {
  text-align: center;
  width: 2.5rem;
  cursor: pointer;
  z-index: 1;
  position: absolute;
  top: calc(50% - 1.25rem);
}
#tns-msg-album-1-prev i,
#tns-msg-album-1-next i,
#tns-msg-album-2-prev i,
#tns-msg-album-2-next i {
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/icon-prev-brown.svg) no-repeat center;
  background-size: auto 100%;
  display: block;
}
#tns-msg-album-1-prev small,
#tns-msg-album-1-next small,
#tns-msg-album-2-prev small,
#tns-msg-album-2-next small {
  color: #b28f64;
  font-size: 0.7rem;
  display: block;
}
#tns-msg-album-1-prev:hover,
#tns-msg-album-1-next:hover,
#tns-msg-album-2-prev:hover,
#tns-msg-album-2-next:hover {
  filter: brightness(150%);
}

#tns-msg-album-1-prev,
#tns-msg-album-2-prev {
  right: calc(100% + 1rem);
}

#tns-msg-album-1-next,
#tns-msg-album-2-next {
  left: calc(100% + 1rem);
}
#tns-msg-album-1-next i,
#tns-msg-album-2-next i {
  transform: scale(-1, 1);
}

#msg-preorder {
  overflow-y: scroll;
  padding: 6.2rem 0;
}
#msg-preorder .msg-wrap {
  width: 76%;
  max-height: none;
  transform: scale(1.2) translate3d(0, 0, 0);
  top: 0;
  background: #695656;
}
#msg-preorder .msg-wrap > .close {
  position: sticky;
  margin-top: -1.4rem;
  margin-bottom: -1.4rem;
  margin-left: calc(100% - 1rem);
}
#msg-preorder .msg-content {
  color: #fff;
}
#msg-preorder .msg-content header {
  position: relative;
}
#msg-preorder .msg-content header img {
  width: 100%;
}
#msg-preorder .msg-content header .txt {
  position: absolute;
  width: 100%;
  top: 9.6%;
  left: 0;
  display: flex;
  align-items: start;
}
#msg-preorder .msg-content header .logo-corolla-sport {
  width: 23.8rem;
  height: 5.4rem;
  display: block;
  margin-left: 19.4%;
}
#msg-preorder .msg-content header .text-60 {
  width: 5.2rem;
  height: 3.8rem;
  background: url(../img/text-60.svg) no-repeat;
  background-size: 100%;
  text-indent: -9999rem;
  text-align: left;
  display: inline-block;
  margin-right: 1rem;
  margin-left: 0.5rem;
  margin-top: -0.4rem;
}
#msg-preorder .msg-content header .text-60th {
  margin-left: 2rem;
  margin-top: -0.5rem;
}
#msg-preorder .msg-content header .text-gradient-2 {
  font-size: 2.5rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}
#msg-preorder .msg-content header .first {
  position: absolute;
  top: 66%;
  right: 7%;
  display: flex;
  align-items: end;
  letter-spacing: 0.15rem;
  color: #fff;
}
#msg-preorder .msg-content header .first::before {
  content: "";
  width: 9.5rem;
  height: 1px;
  background: #dfd0be;
  display: inline-block;
  position: relative;
  top: -0.7rem;
  left: -0.8rem;
}
#msg-preorder .msg-content header .first p {
  font-weight: normal;
  font-size: 2rem;
  line-height: 1;
}
#msg-preorder .msg-content header .first small {
  font-size: 50%;
}
#msg-preorder .msg-content .feature {
  width: 84%;
  margin: -8rem auto 0;
  border: 0.1rem solid #dfd0be;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.5rem #b28f64;
  background: rgba(70, 28, 0, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3.2rem 3.2rem 0.8rem;
  position: relative;
}
#msg-preorder .msg-content .feature li {
  width: 48%;
  margin-bottom: 1.2rem;
}
#msg-preorder .msg-content .feature img {
  width: 100%;
  border: 0.1rem solid #b28f64;
  border-radius: 0.5rem;
  aspect-ratio: 1/0.674;
}
#msg-preorder .msg-content .feature p {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.6rem 1rem 0;
}
#msg-preorder .msg-content .feature p::before {
  content: "";
  width: 0.3rem;
  height: 1.5rem;
  background: linear-gradient(to bottom, #b28f64, #dfd0be);
  display: inline-block;
  margin-right: 0.5rem;
}
#msg-preorder .msg-content .feature p ~ small {
  color: #fff;
  font-size: 0.7rem;
  padding-left: 2rem;
  display: block;
}
#msg-preorder .msg-content .list-oo {
  width: 86%;
  margin: 0 auto 5rem;
}
#msg-preorder.is-active .msg-wrap {
  transform: scale(1) translate3d(0, 0, 0);
}

table {
  width: 100%;
}
table th, table td {
  border: 0;
  font-size: 1.1rem;
  line-height: 1.85;
  text-align: center;
  padding: 0.43rem 0;
}
table th {
  width: 100%;
  text-align: left;
  font-size: 2rem;
  line-height: 1.4;
  padding-left: 2.7rem;
  background: linear-gradient(to right, #89735d 20%, #e3cbaf);
  color: #fff;
}
table th span {
  margin-left: 0.5rem;
  font-weight: 100;
}
table td {
  border-bottom: 1px solid #89735d;
}
table td:nth-of-type(1) {
  width: 33%;
  text-align: left;
  padding-left: 2.7rem;
  border-right: 0.2rem solid #89735d;
}
table td:nth-of-type(2) {
  width: 67%;
}
table td.align-center {
  text-align: center;
  padding-left: 0;
  border-right: 0;
}
table tr:last-child td {
  border-bottom: 0;
}
table .no-bottom-border {
  border-bottom: 0;
}

.table-2-wrap {
  width: 83%;
  margin: 1.5rem auto;
  box-shadow: 0 0 2rem #000, 0 0 4rem #000;
}

.table-2 {
  margin: 0 auto;
  overflow: hidden;
}

.list-oo {
  font-size: 0.8rem;
}
.list-oo li {
  position: relative;
  padding-left: 1rem;
}
.list-oo li::before {
  content: "Ⓞ";
  position: absolute;
  top: 0;
  left: 0;
}

#t-sales-wrap {
  padding: 0;
  margin-top: 2.5rem;
}
#t-sales-wrap h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  font-size: 1.4rem;
  transform: skew(-10deg);
}
#t-sales-wrap h3 span {
  padding-right: 1rem;
}
#t-sales-wrap h3:after {
  content: "";
  width: 60%;
  height: 1px;
  background: #fff;
  border-radius: 50rem;
  display: block;
}
#t-sales-wrap ol {
  text-align: center;
  margin-top: 2rem;
}
#t-sales-wrap li {
  display: inline-block;
  vertical-align: top;
  width: 31%;
  margin: 0.3rem;
  margin-bottom: 1.8rem;
}
#t-sales-wrap li.is-loading {
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: #e60e10;
}
#t-sales-wrap label {
  position: relative;
  top: 0;
  width: 100%;
  text-align: center;
}
#t-sales-wrap input[type=radio] + label {
  width: 100%;
  position: relative;
  padding: 0;
}
#t-sales-wrap input[type=radio] + label .img {
  width: 100%;
  height: 12rem;
  background-color: #d0d0d0;
  background-size: 120%;
  background-position: center 10%;
  border-radius: 0.4rem;
}
#t-sales-wrap input[type=radio] + label:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 0.2rem solid #386009;
  border-radius: 0.4rem;
  border-width: 0;
  background: none;
  box-sizing: border-box;
  transition: 0.1s;
  opacity: 0;
}
#t-sales-wrap input[type=radio] + label:after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  border: 0;
  border-radius: 0;
  border-top-left-radius: 0.4rem;
  top: 0;
  left: 0;
  background: url(../img/icon-checked-fff.svg), linear-gradient(135deg, #386009 50%, transparent 50.1%);
  background-size: 50%, 100%;
  background-position: 10% 10%, center;
  background-repeat: no-repeat;
  transform: scale(1);
  opacity: 0;
}
#t-sales-wrap input[type=radio] + label:active:before,
#t-sales-wrap input[type=radio]:checked + label:before {
  border-width: 0.2rem;
  opacity: 1;
}
#t-sales-wrap input[type=radio] + label:active:after,
#t-sales-wrap input[type=radio]:checked + label:after {
  opacity: 1;
}
#t-sales-wrap label img {
  width: 100%;
}
#t-sales-wrap p {
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
}
#t-sales-wrap a {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
  color: #dfd0be;
}
#t-sales-wrap a:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../img/icon-arrow-fff.svg) no-repeat center;
  background-size: 70%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
}
#t-sales-wrap a:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #dfd0be;
  position: absolute;
  bottom: 0;
  left: 0;
}
#t-sales-wrap a:hover {
  color: #fff;
}

#g-rule {
  text-align: left;
  font-size: 0.9rem;
  padding: 4rem 12%;
  color: #fff;
}
#g-rule a {
  text-decoration: underline;
  word-break: break-all;
}
#g-rule li {
  line-height: 1.5;
  margin-bottom: 2rem;
}

.list-label > li {
  position: relative;
  padding-left: 2rem;
}
.list-label .label {
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
  font-weight: bold;
  color: #fdef95;
}

.list-no {
  padding-left: 1.5rem;
}
.list-no > li {
  list-style-type: decimal;
}

.list-dot > li {
  position: relative;
  padding-left: 0.7rem;
}
.list-dot > li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  border-radius: 50rem;
  position: absolute;
  top: 0.4rem;
  left: 0;
}

.list-pie > li {
  position: relative;
  padding-left: 1rem;
}
.list-pie > li::before {
  content: "◎";
  position: absolute;
  top: 0;
  left: 0;
}

.list-r > li {
  position: relative;
  padding-left: 1rem;
}
.list-r > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.list-star > li {
  position: relative;
  padding-left: 0.5rem;
}
.list-star > li:before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0;
}

#g-footer {
  clear: both;
  font-weight: 200;
  letter-spacing: 2px;
  width: 100%;
  padding: 1.2rem 0;
  background: #89735c;
  color: #fff;
  border-top: 1px solid #b8a188;
  position: relative;
  z-index: 1;
}
#g-footer p.note {
  letter-spacing: 0;
  margin: 20px;
}

#g-quick {
  position: fixed;
  bottom: 2%;
  right: 1.4rem;
  z-index: 3;
}
#g-quick a {
  background: linear-gradient(135deg, #4a4a4a 20%, #000 80%);
  width: 6.6rem;
  height: 6.6rem;
  display: block;
  position: relative;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 0.8rem 0.7rem rgba(0, 0, 0, 0.5);
  transition: 0.2s;
}
#g-quick a::before, #g-quick a:after {
  content: "";
  width: calc(100% + .6rem);
  height: calc(100% + .6rem);
  border: 0.12rem solid #dfd0be;
  border-radius: 50rem;
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
  box-sizing: border-box;
}
#g-quick a::after {
  border-color: #9a7829;
  -webkit-mask-image: linear-gradient(to right, transparent, #000, transparent);
          mask-image: linear-gradient(to right, transparent, #000, transparent);
  animation: quick_border_rotate 1s linear infinite;
}
@keyframes quick_border_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#g-quick a div {
  color: #fff;
}
#g-quick a div small {
  font-size: 0.6rem;
  line-height: 1.2;
  display: block;
}
#g-quick a div small::after {
  content: "";
  width: 1.8rem;
  height: 2px;
  display: block;
  background: #dfd0be;
  margin: 0.4rem auto;
}
#g-quick a div small i {
  font-size: 0.7rem;
  font-style: normal;
}
#g-quick a div span {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
}
#g-quick a:last-child {
  background: linear-gradient(135deg, #b28f64 20%, #461c00 80%);
}
#g-quick a:hover {
  filter: brightness(150%);
}

@media screen and (min-width: 990px) {
  .is-m {
    display: none !important;
  }
}
@media screen and (max-width: 990px) {
  html {
    font-size: 3.5vw;
  }

  #msg-loader .center {
    width: 20rem;
  }
  #msg-loader .center p {
    font-size: 1.5rem;
  }

  .is-pc {
    display: none !important;
  }

  .g-section header {
    text-align: center;
  }
  .g-section header h2 {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    line-height: 1.3;
    display: block;
  }
  .g-section header h2::after {
    display: none;
  }

  .msg-box .msg-wrap {
    width: 85%;
  }
  .msg-box .msg-wrap > .close {
    width: 3rem;
    height: 3rem;
    top: -1.5rem;
    right: -1.5rem;
  }
  .msg-box .msg-wrap > .close:before, .msg-box .msg-wrap > .close:after {
    width: 1.8rem;
    height: 0.2rem;
    top: 1.4rem;
    left: 0.6rem;
  }
  .msg-box .msg-content header {
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  [class^=icon-star-] {
    width: 4rem;
    height: 4rem;
  }

  [class^=g-bt-] div {
    width: 14rem;
    height: 9rem;
  }

  #kv {
    height: 52.5rem;
  }
  #kv .bg .mask {
    -webkit-mask-image: url(../img/mask-kv.webp), linear-gradient(to bottom, #000, #000);
            mask-image: url(../img/mask-kv.webp), linear-gradient(to bottom, #000, #000);
    -webkit-mask-size: 100%, 100% 80%;
            mask-size: 100%, 100% 80%;
    -webkit-mask-position: 0 100%, 0 0;
            mask-position: 0 100%, 0 0;
  }
  #kv .bg .scene {
    margin-top: 0;
    width: 150%;
    margin-left: -8%;
  }
  #kv .bg .sun {
    top: -8%;
    left: -44%;
  }
  #kv header {
    margin-top: 3.3rem;
    margin-left: 0;
    text-align: center;
  }
  #kv header u {
    color: #000;
    font-size: 1.8rem;
    float: none;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  #kv header u:before, #kv header u::after {
    filter: invert(1);
  }
  #kv h1 b {
    font-size: 4rem;
  }
  #kv h1 p {
    display: block;
    margin-top: -2rem;
  }
  #kv h1 p span {
    font-size: 3.2rem;
    vertical-align: middle;
  }
  #kv h1 p span:last-child {
    margin-top: -2rem;
    display: block;
  }
  #kv .logo-hilux {
    width: 20rem;
    height: 3rem;
  }
  #kv .power {
    top: 59.6%;
    left: 3%;
  }
  #kv .btns {
    top: 80%;
    left: 1%;
  }

  #g-interior {
    width: 90%;
  }
  #g-interior header {
    margin-top: 0;
  }
  #g-interior header > p {
    margin-top: 1rem;
  }
  #g-interior .main small {
    font-size: 50%;
    bottom: 0.5rem;
    right: 0.5rem;
  }
  #g-interior .other {
    display: block;
  }
  #g-interior .other li {
    display: flex;
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
  #g-interior .other li img {
    width: 50%;
    height: 8rem;
  }
  #g-interior .other li:nth-child(even) .txt {
    order: -1;
    display: block;
    padding-top: 1.5rem;
  }
  #g-interior .other li:nth-child(3) {
    border-bottom: 0;
  }
  #g-interior .other li:nth-child(3) span {
    display: block;
  }
  #g-interior .other .txt {
    width: 50%;
    height: 8rem;
  }

  #g-offroad {
    width: 90%;
    padding-bottom: 4rem;
  }
  #g-offroad .control li {
    width: 50%;
  }
  #g-offroad .control li:first-child {
    border-right: 1px solid #fff;
  }
  #g-offroad .time {
    transform: skew(0);
    margin-left: 0;
    width: 100%;
  }
  #g-offroad .time ol {
    flex-wrap: wrap;
  }
  #g-offroad .time li {
    width: 50%;
    height: 8rem;
    flex: auto;
  }
  #g-offroad .time .img img {
    height: auto;
    width: 100%;
  }
  #g-offroad .time strong {
    font-size: 4rem;
  }
  #g-offroad .time .txt {
    transform: skew(-6deg);
    padding-bottom: 1.2rem;
  }
  #g-offroad .time p {
    font-size: 1.2rem;
    font-weight: normal;
  }
  #g-offroad .time h3 {
    margin-bottom: 0;
  }
  #g-offroad .time h4 {
    bottom: auto;
    top: 100%;
  }

  #g-tech header {
    margin-left: auto;
  }
  #g-tech header h2 {
    display: block;
  }
  #g-tech header .logo-DCT {
    width: 21.5rem;
    height: 7.4rem;
    margin: 0 auto;
  }
  #g-tech .map {
    margin-top: 6rem;
    height: auto;
  }
  #g-tech .map .car {
    position: static;
    width: 90%;
    margin: 0 auto;
  }
  #g-tech .point {
    width: 90%;
    margin: 0 auto;
  }
  #g-tech .point li {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }
  #g-tech .point li:nth-child(4), #g-tech .point li:nth-child(5) {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding-right: 45%;
  }
  #g-tech .point li:nth-child(4) img, #g-tech .point li:nth-child(5) img {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
  }
  #g-tech .tech-line {
    top: -4.6rem;
    left: -2.2%;
    width: 101.3%;
    height: 35rem;
    background-image: url(../img/tech-line-m.png?v2);
  }

  #g-try {
    padding-top: 2rem;
  }
  #g-try .icon-red-giftbox {
    width: 2rem;
    height: 2rem;
  }
  #g-try .deco-brush-1 {
    height: 3.8rem;
    top: -3.8rem;
  }
  #g-try header p {
    font-size: 1.2rem;
    margin-top: 0;
  }
  #g-try .g-form {
    width: 90%;
  }
  #g-try .g-form > ul > li > label {
    font-size: 1.2rem;
  }
  #g-try #t-name {
    width: 47%;
  }
  #g-try #t-countie,
#g-try #t-district {
    width: 100%;
  }
  #g-try #t-countie {
    margin-bottom: 0.5rem;
  }
  #g-try .rule {
    width: 90%;
  }
  #g-try .is-vcode {
    width: 100%;
  }
  #g-try .is-vcode .flex button {
    letter-spacing: 0;
  }

  .g-form > ul > li {
    padding: 0.4rem 0 0.4rem 0;
  }
  .g-form > ul > li label {
    position: relative;
    display: block;
    top: 0;
    margin-bottom: 0.2rem;
  }
  .g-form > ul > li label.hide {
    display: none;
  }

  #t-sales-list {
    width: 105%;
    margin-left: -2.5%;
  }
  #t-sales-list li {
    width: 46%;
  }

  #t-sales-wrap h3 {
    font-size: 1.2rem;
  }
  #t-sales-wrap li {
    margin-bottom: 1rem;
  }
  #t-sales-wrap input[type=radio] + label .img {
    height: 10rem;
  }

  #g-price {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #g-price .deco-brush-2 {
    height: 3.8rem;
    bottom: -3.8rem;
  }
  #g-price .logo-hilux {
    width: 19.3rem;
    height: 2rem;
    top: -0.2rem;
  }
  #g-price header small {
    margin-top: 0;
  }
  #g-price .table-1 {
    width: 90%;
  }

  #g-spec {
    padding-top: 7rem;
  }
  #g-spec .list-r {
    width: 90%;
  }

  .table-2-wrap {
    width: 90%;
  }

  table th, table td {
    font-size: 1rem;
    line-height: 1.6;
  }
  table th {
    padding-left: 1rem;
    font-size: 1.5rem;
  }
  table td {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  table td:nth-of-type(1) {
    padding-left: 1rem;
    width: 45%;
  }
  table td:nth-of-type(2) {
    width: 55%;
  }

  #g-rule {
    padding: 4rem 5% 4rem;
  }

  #g-footer {
    font-size: 0.8rem;
    padding-bottom: 5rem;
  }

  #g-quick {
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
  }
  #g-quick a {
    width: 50%;
    height: auto;
    border-radius: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #g-quick a:before, #g-quick a::after {
    display: none;
  }
  #g-quick a > div {
    display: flex;
    align-items: center;
  }
  #g-quick a > div small {
    position: relative;
    padding-right: 1rem;
    margin-right: 1rem;
  }
  #g-quick a > div small::after {
    width: 2px;
    height: 1.8rem;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}