@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:500&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 ==============================================*/
@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;
}
/*Variable*/
/*Mixin*/
/*Reset*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

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

.hide {
  display: none;
}

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

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

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

*:focus {
  outline: none;
}

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

a:hover {
  color: #f6ff03;
}

*::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: 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;
  transition: 1s;
  z-index: 101;
  text-align: center;
}
#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;
}

.color-blue {
  color: #9cddff;
}

.color-red {
  color: #c0061a;
}

.color-pink {
  color: #c0061a;
}

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

.color-yellow {
  color: #f6ff03;
}

.text-gradient-1 {
  color: #fff;
  background: linear-gradient(to bottom, #fff 30%, #ccc 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0rem 0.1rem 0 #000);
}

.text-gradient-2 {
  color: #fff;
  background: linear-gradient(to bottom, #fff 30%, #ccc 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0rem 0rem 0.2rem #0c284a);
}

[class*=g-bt-] {
  width: 16rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  letter-spacing: 0.2rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2rem;
  font-family: "toyota_type", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  cursor: pointer;
  transform: translate3d(0, 0, 1px);
}
[class*=g-bt-] > div {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
[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;
  z-index: 1;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
[class*=g-bt-]:after {
  content: "";
  width: 97%;
  height: 1.8rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  position: absolute;
  top: 5%;
  left: 1.5%;
}
[class*=g-bt-] [class^=icon-arrow-] {
  width: 2rem;
  height: 2rem;
  background: #fff url(../img/icon-next-blue.svg) no-repeat center;
  background-size: 30%;
  border-radius: 50rem;
  display: inline-block;
  vertical-align: middle;
  transition: 0.2s;
}
[class*=g-bt-] .icon-arrow-left {
  transform: rotate(180deg);
  margin-right: 0.5rem;
}
[class*=g-bt-] .icon-arrow-right {
  margin-left: 0.5rem;
}
[class*=g-bt-]:hover .icon-arrow-left {
  transform: rotate(180deg) translateX(0.5rem) scale(1.1);
}
[class*=g-bt-]:hover .icon-arrow-right {
  transform: translateX(0.5rem) scale(1.1);
}

.g-bt-1 {
  color: red;
  background: linear-gradient(127deg, transparent 13%, #fff100 13.1%);
  filter: drop-shadow(0 0.5rem 0.2rem rgba(183, 173, 0, 0.4));
}
.g-bt-1 [class^=icon-arrow-] {
  background: red url(../img/icon-next-fff.svg) no-repeat center;
  background-size: 30%;
  border-radius: 50rem;
}
.g-bt-1 > div {
  padding-left: 1.5rem;
  -webkit-mask-image: linear-gradient(127deg, transparent 13%, #000 13.1%);
}
.g-bt-1:after {
  -webkit-mask-image: linear-gradient(127deg, transparent 13%, #000 13.1%);
}
.g-bt-1:hover {
  filter: drop-shadow(0 0.5rem 0.2rem rgba(183, 173, 0, 0.4)) brightness(130%);
  color: red;
}

.g-bt-2 {
  background: linear-gradient(52deg, #3eacad 87%, transparent 87.1%);
  filter: drop-shadow(0 0.5rem 0.2rem rgba(40, 163, 148, 0.4));
}
.g-bt-2 [class^=icon-arrow-] {
  background-size: 30%;
  border-radius: 50rem;
}
.g-bt-2 > div {
  padding-right: 1.5rem;
  -webkit-mask-image: linear-gradient(52deg, #000 87%, transparent 87.1%);
}
.g-bt-2:after {
  -webkit-mask-image: linear-gradient(52deg, #000 87%, transparent 87.1%);
}
.g-bt-2:hover {
  filter: drop-shadow(0 0.5rem 0.2rem rgba(40, 163, 148, 0.4)) brightness(130%);
  color: #fff;
}

.g-bt-3 {
  color: red;
  background: linear-gradient(127deg, #fff100 87%, transparent 87.1%);
  filter: drop-shadow(0 0.5rem 0.2rem rgba(183, 173, 0, 0.4));
}
.g-bt-3 [class^=icon-arrow-] {
  background: red url(../img/icon-next-fff.svg) no-repeat center;
  background-size: 30%;
  border-radius: 50rem;
}
.g-bt-3 > div {
  padding-right: 1.5rem;
  -webkit-mask-image: linear-gradient(127deg, #000 87%, transparent 87.1%);
}
.g-bt-3:after {
  -webkit-mask-image: linear-gradient(127deg, #000 87%, transparent 87.1%);
}
.g-bt-3:hover {
  filter: drop-shadow(0 0.5rem 0.2rem rgba(183, 173, 0, 0.4)) brightness(130%);
  color: red;
}

.g-bt-4 {
  background: linear-gradient(127deg, transparent 13%, #28a394 13.1%);
  filter: drop-shadow(0 0.5rem 0.2rem rgba(40, 163, 148, 0.4));
}
.g-bt-4 [class^=icon-arrow-] {
  background-size: 30%;
  border-radius: 50rem;
}
.g-bt-4 > div {
  padding-left: 1.5rem;
  -webkit-mask-image: linear-gradient(127deg, transparent 13%, #000 13.1%);
}
.g-bt-4:after {
  -webkit-mask-image: linear-gradient(127deg, transparent 13%, #000 13.1%);
}
.g-bt-4:hover {
  filter: drop-shadow(0 0.5rem 0.2rem rgba(40, 163, 148, 0.4)) brightness(130%);
  color: #fff;
}

.msg-box {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 0;
  transform: scale(1);
  perspective: 700px;
  pointer-events: none;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 102;
  pointer-events: auto;
}
.msg-box > .close {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.msg-box .msg-wrap {
  background: #fff;
  max-width: 550px;
  width: 90%;
  height: 60%;
  max-width: 600px;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 30px;
  transform: scale(1) 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: 0;
  right: 0;
  width: 5%;
  height: 0;
  padding-bottom: 5%;
  transition: 0.2s;
  background: url(../img/icon-close.svg) #9cddff no-repeat center;
  background-size: 45%;
  border-radius: 50%;
  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);
  z-index: 5;
}
.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;
  font-size: 20px;
  -webkit-overflow-scrolling: touch;
  color: #000;
}
.msg-box .msg-content header {
  font-size: 40px;
  font-weight: bold;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background-color: #000;
  border-radius: 10px;
  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: #f6ff03;
  color: #000;
  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;
}

.splitEffect {
  overflow: hidden;
  white-space: nowrap;
}
.splitEffect span {
  display: inline-block;
  transform: translateY(100%);
}
.splitEffect span:nth-of-type(1) {
  animation-delay: 0.03s !important;
}
.splitEffect span:nth-of-type(2) {
  animation-delay: 0.06s !important;
}
.splitEffect span:nth-of-type(3) {
  animation-delay: 0.09s !important;
}
.splitEffect span:nth-of-type(4) {
  animation-delay: 0.12s !important;
}
.splitEffect span:nth-of-type(5) {
  animation-delay: 0.15s !important;
}
.splitEffect span:nth-of-type(6) {
  animation-delay: 0.18s !important;
}
.splitEffect span:nth-of-type(7) {
  animation-delay: 0.21s !important;
}
.splitEffect span:nth-of-type(8) {
  animation-delay: 0.24s !important;
}
.splitEffect span:nth-of-type(9) {
  animation-delay: 0.27s !important;
}
.splitEffect span:nth-of-type(10) {
  animation-delay: 0.3s !important;
}
.splitEffect span:nth-of-type(11) {
  animation-delay: 0.33s !important;
}
.splitEffect span:nth-of-type(12) {
  animation-delay: 0.36s !important;
}
.splitEffect span:nth-of-type(13) {
  animation-delay: 0.39s !important;
}
.splitEffect span:nth-of-type(14) {
  animation-delay: 0.42s !important;
}
.splitEffect span:nth-of-type(15) {
  animation-delay: 0.45s !important;
}
.splitEffect span:nth-of-type(16) {
  animation-delay: 0.48s !important;
}
.splitEffect span:nth-of-type(17) {
  animation-delay: 0.51s !important;
}
.splitEffect span:nth-of-type(18) {
  animation-delay: 0.54s !important;
}
.splitEffect span:nth-of-type(19) {
  animation-delay: 0.57s !important;
}
.splitEffect span:nth-of-type(20) {
  animation-delay: 0.6s !important;
}
.splitEffect span:nth-of-type(21) {
  animation-delay: 0.63s !important;
}
.splitEffect span:nth-of-type(22) {
  animation-delay: 0.66s !important;
}
.splitEffect span:nth-of-type(23) {
  animation-delay: 0.69s !important;
}
.splitEffect span:nth-of-type(24) {
  animation-delay: 0.72s !important;
}
.splitEffect span:nth-of-type(25) {
  animation-delay: 0.75s !important;
}
.splitEffect span:nth-of-type(26) {
  animation-delay: 0.78s !important;
}
.splitEffect span:nth-of-type(27) {
  animation-delay: 0.81s !important;
}
.splitEffect span:nth-of-type(28) {
  animation-delay: 0.84s !important;
}
.splitEffect span:nth-of-type(29) {
  animation-delay: 0.87s !important;
}
.splitEffect span:nth-of-type(30) {
  animation-delay: 0.9s !important;
}
.splitEffect.is-animate span {
  animation: se1 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes se1 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.splitEffect.is-animate.delay200 span:nth-of-type(1) {
  animation-delay: 0.23s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(2) {
  animation-delay: 0.26s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(3) {
  animation-delay: 0.29s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(4) {
  animation-delay: 0.32s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(5) {
  animation-delay: 0.35s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(6) {
  animation-delay: 0.38s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(7) {
  animation-delay: 0.41s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(8) {
  animation-delay: 0.44s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(9) {
  animation-delay: 0.47s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(10) {
  animation-delay: 0.5s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(11) {
  animation-delay: 0.53s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(12) {
  animation-delay: 0.56s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(13) {
  animation-delay: 0.59s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(14) {
  animation-delay: 0.62s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(15) {
  animation-delay: 0.65s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(16) {
  animation-delay: 0.68s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(17) {
  animation-delay: 0.71s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(18) {
  animation-delay: 0.74s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(19) {
  animation-delay: 0.77s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(20) {
  animation-delay: 0.8s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(21) {
  animation-delay: 0.83s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(22) {
  animation-delay: 0.86s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(23) {
  animation-delay: 0.89s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(24) {
  animation-delay: 0.92s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(25) {
  animation-delay: 0.95s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(26) {
  animation-delay: 0.98s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(27) {
  animation-delay: 1.01s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(28) {
  animation-delay: 1.04s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(29) {
  animation-delay: 1.07s !important;
}
.splitEffect.is-animate.delay200 span:nth-of-type(30) {
  animation-delay: 1.1s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(1) {
  animation-delay: 0.43s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(2) {
  animation-delay: 0.46s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(3) {
  animation-delay: 0.49s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(4) {
  animation-delay: 0.52s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(5) {
  animation-delay: 0.55s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(6) {
  animation-delay: 0.58s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(7) {
  animation-delay: 0.61s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(8) {
  animation-delay: 0.64s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(9) {
  animation-delay: 0.67s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(10) {
  animation-delay: 0.7s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(11) {
  animation-delay: 0.73s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(12) {
  animation-delay: 0.76s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(13) {
  animation-delay: 0.79s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(14) {
  animation-delay: 0.82s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(15) {
  animation-delay: 0.85s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(16) {
  animation-delay: 0.88s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(17) {
  animation-delay: 0.91s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(18) {
  animation-delay: 0.94s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(19) {
  animation-delay: 0.97s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(20) {
  animation-delay: 1s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(21) {
  animation-delay: 1.03s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(22) {
  animation-delay: 1.06s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(23) {
  animation-delay: 1.09s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(24) {
  animation-delay: 1.12s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(25) {
  animation-delay: 1.15s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(26) {
  animation-delay: 1.18s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(27) {
  animation-delay: 1.21s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(28) {
  animation-delay: 1.24s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(29) {
  animation-delay: 1.27s !important;
}
.splitEffect.is-animate.delay400 span:nth-of-type(30) {
  animation-delay: 1.3s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(1) {
  animation-delay: 0.63s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(2) {
  animation-delay: 0.66s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(3) {
  animation-delay: 0.69s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(4) {
  animation-delay: 0.72s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(5) {
  animation-delay: 0.75s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(6) {
  animation-delay: 0.78s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(7) {
  animation-delay: 0.81s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(8) {
  animation-delay: 0.84s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(9) {
  animation-delay: 0.87s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(10) {
  animation-delay: 0.9s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(11) {
  animation-delay: 0.93s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(12) {
  animation-delay: 0.96s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(13) {
  animation-delay: 0.99s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(14) {
  animation-delay: 1.02s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(15) {
  animation-delay: 1.05s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(16) {
  animation-delay: 1.08s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(17) {
  animation-delay: 1.11s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(18) {
  animation-delay: 1.14s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(19) {
  animation-delay: 1.17s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(20) {
  animation-delay: 1.2s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(21) {
  animation-delay: 1.23s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(22) {
  animation-delay: 1.26s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(23) {
  animation-delay: 1.29s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(24) {
  animation-delay: 1.32s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(25) {
  animation-delay: 1.35s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(26) {
  animation-delay: 1.38s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(27) {
  animation-delay: 1.41s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(28) {
  animation-delay: 1.44s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(29) {
  animation-delay: 1.47s !important;
}
.splitEffect.is-animate.delay600 span:nth-of-type(30) {
  animation-delay: 1.5s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(1) {
  animation-delay: 0.83s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(2) {
  animation-delay: 0.86s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(3) {
  animation-delay: 0.89s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(4) {
  animation-delay: 0.92s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(5) {
  animation-delay: 0.95s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(6) {
  animation-delay: 0.98s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(7) {
  animation-delay: 1.01s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(8) {
  animation-delay: 1.04s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(9) {
  animation-delay: 1.07s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(10) {
  animation-delay: 1.1s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(11) {
  animation-delay: 1.13s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(12) {
  animation-delay: 1.16s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(13) {
  animation-delay: 1.19s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(14) {
  animation-delay: 1.22s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(15) {
  animation-delay: 1.25s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(16) {
  animation-delay: 1.28s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(17) {
  animation-delay: 1.31s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(18) {
  animation-delay: 1.34s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(19) {
  animation-delay: 1.37s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(20) {
  animation-delay: 1.4s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(21) {
  animation-delay: 1.43s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(22) {
  animation-delay: 1.46s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(23) {
  animation-delay: 1.49s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(24) {
  animation-delay: 1.52s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(25) {
  animation-delay: 1.55s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(26) {
  animation-delay: 1.58s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(27) {
  animation-delay: 1.61s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(28) {
  animation-delay: 1.64s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(29) {
  animation-delay: 1.67s !important;
}
.splitEffect.is-animate.delay800 span:nth-of-type(30) {
  animation-delay: 1.7s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(1) {
  animation-delay: 1.03s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(2) {
  animation-delay: 1.06s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(3) {
  animation-delay: 1.09s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(4) {
  animation-delay: 1.12s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(5) {
  animation-delay: 1.15s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(6) {
  animation-delay: 1.18s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(7) {
  animation-delay: 1.21s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(8) {
  animation-delay: 1.24s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(9) {
  animation-delay: 1.27s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(10) {
  animation-delay: 1.3s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(11) {
  animation-delay: 1.33s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(12) {
  animation-delay: 1.36s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(13) {
  animation-delay: 1.39s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(14) {
  animation-delay: 1.42s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(15) {
  animation-delay: 1.45s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(16) {
  animation-delay: 1.48s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(17) {
  animation-delay: 1.51s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(18) {
  animation-delay: 1.54s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(19) {
  animation-delay: 1.57s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(20) {
  animation-delay: 1.6s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(21) {
  animation-delay: 1.63s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(22) {
  animation-delay: 1.66s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(23) {
  animation-delay: 1.69s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(24) {
  animation-delay: 1.72s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(25) {
  animation-delay: 1.75s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(26) {
  animation-delay: 1.78s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(27) {
  animation-delay: 1.81s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(28) {
  animation-delay: 1.84s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(29) {
  animation-delay: 1.87s !important;
}
.splitEffect.is-animate.delay1000 span:nth-of-type(30) {
  animation-delay: 1.9s !important;
}

html {
  font-size: 1.13vw;
}

html.is-lock, body.is-lock {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  line-height: 1.7;
  color: #3b2b1e;
  font-family: "toyota_type", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden;
  background: url(../img/bg.jpg);
  background-size: 100%;
  background-color: #000;
  text-align: left;
}
body.lock {
  overflow: hidden;
}

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

.g-wrap {
  width: 100%;
  position: relative;
  margin: 0 auto;
  position: relative;
  background-size: 100%;
}
.g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
#g-kv {
  height: 49vw;
  margin-bottom: -11.5rem;
}
#g-kv .bg {
  width: 100%;
  height: 100%;
  background: url(../img/bg-kv-pc.jpg);
  background-size: 100%;
  -webkit-mask-image: linear-gradient(167deg, #000 60%, transparent 65%);
  position: absolute;
  top: 0;
  left: 0;
}
#g-kv #g-logo {
  position: absolute;
  width: 9.9vw;
  top: 3.1%;
  left: 10.5%;
}
#g-kv #g-logo img {
  width: 100%;
}
#g-kv .chars > * {
  position: absolute;
}
#g-kv .chars .fog-1 {
  width: 43rem;
  height: 31rem;
  top: 27%;
  left: -10%;
  transform: rotate(-16deg);
  mix-blend-mode: plus-lighter;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  z-index: 1;
}
#g-kv .chars .car {
  width: 47.9rem;
  height: 38.8rem;
  top: 19.5%;
  left: 0;
  background: url(../img/kv-car.png);
  background-size: 100%;
  transform: scale(1.5) translate(-50%, 50%);
  transform-origin: 0% 100%;
  transition: 1s;
}
#g-kv header {
  padding-top: 13.1rem;
  margin-left: 53.6%;
  transform: scale(0);
  transition: 1s;
  transition-delay: 0.5s;
}
#g-kv header h1 {
  filter: drop-shadow(0.3rem 0.3rem 0.2rem #000);
}
#g-kv header h1 b, #g-kv header h1 span {
  background: url(../img/text-h1.svg?v3) no-repeat;
  background-size: 100%;
  width: 29rem;
  height: 5rem;
  display: block;
  text-indent: -9999px;
}
#g-kv header h1 b {
  background-position: 0 0;
}
#g-kv header h1 span {
  background-position: 0 100%;
  margin-top: 0.2rem;
}
#g-kv.is-animate .chars .car {
  transform: scale(1);
}
#g-kv.is-animate header {
  transform: scale(1);
}

#g-nav {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.5));
}
#g-nav .group {
  width: 72%;
  background: linear-gradient(to right, #910b1c 5%, #d30220 30%, #d30220 70%, #910b1c 90%);
  margin: 0 auto;
  position: relative;
}
#g-nav .group:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 2rem 1.8rem 0;
  border-color: transparent #910b1c transparent transparent;
  position: absolute;
  top: 0;
  right: 100%;
}
#g-nav .group:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 0 1.8rem 2rem;
  border-color: transparent transparent transparent #910b1c;
  position: absolute;
  top: 0;
  left: 100%;
}
#g-nav ol {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#g-nav ol:before, #g-nav ol:after {
  content: "";
  width: 100%;
  height: 1px;
  background: red;
  position: absolute;
  left: 0;
}
#g-nav ol:before {
  top: 2px;
}
#g-nav ol:after {
  bottom: 2px;
}
#g-nav li {
  width: 25%;
  padding: 0 0.6rem;
  position: relative;
  text-align: center;
}
#g-nav li:after {
  content: "";
  width: 1px;
  height: 2rem;
  background: #fff;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -1rem;
  transform: skew(-30deg);
}
#g-nav li:last-child:after {
  display: none;
}
#g-nav a {
  font-size: 1.3rem;
  display: block;
  padding: 0 1rem;
  line-height: 2.8;
  position: relative;
  font-weight: bold;
}
#g-nav a:before {
  content: "";
  width: 0%;
  height: 0.2rem;
  background: #f6ff03;
  position: absolute;
  bottom: 0rem;
  left: auto;
  right: 0;
  border-radius: 5rem;
  transition: 0.4s;
  display: block;
  transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
#g-nav a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
#g-nav:hover {
  color: #fff;
}
#g-nav:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.g-section header {
  text-align: center;
}
.g-section header h2 {
  background: url(../img/h2-texture.jpg);
  background-size: cover;
  position: relative;
  display: inline-block;
  min-width: 17rem;
  line-height: 2;
  color: #fff;
}
.g-section header h2:before, .g-section header h2:after {
  content: "";
  width: 100%;
  height: 0.12rem;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
}
.g-section header h2:before {
  top: 0.2rem;
}
.g-section header h2:after {
  bottom: 0.2rem;
}
.g-section header h2 b {
  font-size: 1.9rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
  padding: 0 2rem;
}
.g-section header h2 p {
  font-size: 1.25rem;
  color: #fff;
  margin-top: -1rem;
  margin-bottom: 0.2rem;
  line-height: 3;
  padding: 0 2rem;
}

.product-page {
  position: fixed;
  top: 100%;
  pointer-events: none;
  opacity: 0;
  transition: 1s;
  padding-bottom: 7rem;
}
.product-page .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
.product-page .btns .g-bt-1 {
  margin: 0 1rem;
}
.product-page.active {
  position: static;
  pointer-events: auto;
  opacity: 1;
}

#g-product {
  padding-top: 5.6%;
}
#g-product .bg {
  background: url(../img/bg-product-pc.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  width: 100%;
  height: 27rem;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 20%);
}

#product-nav header {
  margin-top: 2.5rem;
  margin-bottom: -2rem;
}
#product-nav ol {
  display: flex;
  width: 50%;
  margin: 4% auto 0;
  position: relative;
  z-index: 1;
}
#product-nav li {
  width: 50%;
}
#product-nav li:nth-of-type(1) img {
  margin-bottom: -20%;
}
#product-nav li:nth-of-type(2) {
  margin-top: 8.5%;
}
#product-nav li:nth-of-type(2) img {
  width: 80%;
  margin-bottom: -15%;
}
#product-nav li:hover img {
  transform: translateY(-2%);
}
#product-nav img {
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.4s;
}
#product-nav a {
  margin: 0.8rem auto -1rem;
  display: block;
}

#product-GLN0MF .product-img, #product-ENJ .product-img {
  margin: 0 auto;
  width: 32.4rem;
  position: relative;
  z-index: 1;
}

#product-GLN0MF .product-img {
  margin: -0.8rem auto 0;
}

#product-ENJ .product-img {
  margin: 3.5rem auto -4.5rem;
}

.badge-japan-pride {
  width: 59%;
  margin: -6% auto 0;
  position: relative;
}
.badge-japan-pride .img img {
  position: absolute;
  top: -1.7rem;
  left: -0.3rem;
  width: 10.5rem;
}
.badge-japan-pride .txt {
  background: linear-gradient(to bottom, #fdface, #eadb88, #d1b74e, #be9b2a, #c3a029, #e4c22e);
  border-radius: 0.3rem;
  margin-left: 16%;
  padding-left: 6.2%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 0.5rem 0.2rem rgba(0, 0, 0, 0.5);
}
.badge-japan-pride .txt h3 {
  color: #5f3c13;
  font-size: 1.77rem;
  line-height: 1.4;
}
.badge-japan-pride .txt p {
  font-size: 1.1rem;
}

.feature-a-list {
  width: 71%;
  margin: 5.7% auto 0;
}
.feature-a-list > li {
  display: flex;
  align-items: center;
  position: relative;
  background: url(../img/hr.png) no-repeat center bottom;
  background-repeat: repeat-x;
  background-size: 100%;
  padding-bottom: 2.6rem;
  margin-bottom: 2.6rem;
}
.feature-a-list .img {
  width: 9.4rem;
  min-width: 9.4rem;
  height: 9.4rem;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-a-list .img [class^=icon-feature-a-] {
  width: 4.5rem;
  height: 4.5rem;
  background: url(../img/icon-feature-a.svg);
  background-size: 300%;
  display: block;
  margin: 0 auto;
}
.feature-a-list .img .icon-feature-a-1 {
  background-position: 0% 0;
}
.feature-a-list .img .icon-feature-a-2 {
  background-position: 50% 0;
}
.feature-a-list .img .icon-feature-a-3 {
  background-position: 100% 0;
}
.feature-a-list .img h4 {
  color: #c0061a;
  font-size: 1.4rem;
  text-align: center;
}
.feature-a-list .list-dot {
  margin-left: 2%;
}
.feature-a-list .list-dot li {
  font-size: 1.25rem;
}

.guarantee {
  margin: 4rem 0;
}
.guarantee p {
  font-size: 2.6rem;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.3rem;
}
.guarantee b {
  font-weight: bold;
}
.guarantee small {
  display: inline-block;
  text-align: center;
  font-size: 1rem;
}

.problem-list {
  width: 75%;
  margin: 0 auto 5%;
  display: flex;
}
.problem-list > li {
  width: 33.33%;
  padding-top: 5%;
}
.problem-list > li:nth-of-type(1) h3 {
  background-color: #d27944;
}
.problem-list > li:nth-of-type(2) h3 {
  background-color: #75a8cd;
}
.problem-list > li:nth-of-type(2) .list-no {
  margin-left: 3.5rem;
}
.problem-list > li:nth-of-type(3) h3 {
  background-color: #85b868;
}
.problem-list > li:nth-of-type(3) .list-no {
  margin-left: 4rem;
}
.problem-list > li:nth-of-type(3) .list-no li {
  white-space: nowrap;
}
.problem-list [class^=icon-problem-] {
  width: 14rem;
  height: 14rem;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0 auto;
}
.problem-list .icon-problem-1 {
  background-image: url(../img/icon-problem-b-1.svg);
}
.problem-list .icon-problem-2 {
  background-image: url(../img/icon-problem-b-2.svg);
}
.problem-list .icon-problem-3 {
  background-image: url(../img/icon-problem-b-3.svg);
}
.problem-list h3 {
  font-size: 1.2rem;
  background-color: red;
  border-radius: 50rem;
  width: 35%;
  padding: 0.2rem 0;
  margin: 0 auto 1rem;
  text-align: center;
  letter-spacing: 0.3rem;
  text-indent: 0.3rem;
}
.problem-list .list-no li {
  font-size: 0.85rem;
}

.feature-b-list {
  width: 73%;
  margin: 3% auto 0;
}
.feature-b-list > li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5%;
}
.feature-b-list .img [class^=icon-feature-b-] {
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  background: url(../img/icon-feature-b.svg);
  background-size: 1300%;
  display: block;
}
.feature-b-list .img .icon-feature-b-1 {
  background-position: 0% 0;
}
.feature-b-list .img .icon-feature-b-2 {
  background-position: 8.333% 0;
}
.feature-b-list .img .icon-feature-b-3 {
  background-position: 16.666% 0;
}
.feature-b-list .img .icon-feature-b-4 {
  background-position: 24.999% 0;
}
.feature-b-list .img .icon-feature-b-5 {
  background-position: 33.332% 0;
}
.feature-b-list .img .icon-feature-b-6 {
  background-position: 41.665% 0;
}
.feature-b-list .img .icon-feature-b-7 {
  background-position: 49.998% 0;
}
.feature-b-list .img .icon-feature-b-8 {
  background-position: 58.331% 0;
}
.feature-b-list .img .icon-feature-b-9 {
  background-position: 66.664% 0;
}
.feature-b-list .img .icon-feature-b-10 {
  background-position: 74.997% 0;
}
.feature-b-list .img .icon-feature-b-11 {
  background-position: 83.33% 0;
}
.feature-b-list .img .icon-feature-b-12 {
  background-position: 91.663% 0;
}
.feature-b-list .img .icon-feature-b-13 {
  background-position: 99.996% 0;
}
.feature-b-list .txt {
  padding-left: 1rem;
}
.feature-b-list .txt h4 {
  color: #c0061a;
  font-size: 1.2rem;
  line-height: 1.4;
}
.feature-b-list .txt p {
  font-size: 1.15rem;
}
.feature-b-list .list-dot li {
  padding-left: 0;
}

#g-knowledge {
  margin: 0rem auto 4rem;
}
#g-knowledge header {
  margin-top: 1rem;
  margin-bottom: -1rem;
}
#g-knowledge picture {
  width: 50.2%;
  margin: 4.8rem auto;
  display: block;
}
#g-knowledge picture img {
  width: 100%;
}
#g-knowledge li {
  position: absolute;
  width: 12rem;
  text-shadow: 0 0 5rem #fff3d8, 0 0 5rem #fff3d8;
}
#g-knowledge li h3 {
  color: #c0061a;
  font-size: 1.2rem;
  line-height: 2;
}
#g-knowledge li p {
  font-size: 1rem;
  line-height: 1.4;
}
#g-knowledge li small {
  font-size: 0.8rem;
  display: block;
  line-height: 1.4;
  margin-top: 0.3rem;
}
#g-knowledge li.d-1 {
  top: 18.5%;
  left: 9.5%;
}
#g-knowledge li.d-2 {
  top: 34%;
  left: 9.5%;
}
#g-knowledge li.d-3 {
  top: 66%;
  left: 9.5%;
}
#g-knowledge li.d-4 {
  top: 84.5%;
  left: 9.5%;
}
#g-knowledge li.d-5 {
  top: 18.5%;
  left: 76%;
}
#g-knowledge li.d-6 {
  top: 45%;
  left: 76%;
}
#g-knowledge li.d-7 {
  top: 67%;
  left: 76%;
}

#g-pros header h2 {
  padding: 0 4rem;
}
#g-pros ol {
  display: flex;
  width: 60%;
  margin: 4rem auto;
}
#g-pros li {
  width: 33.33%;
}
#g-pros .img {
  width: 12.5rem;
  height: 12.5rem;
  margin: 0 auto 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-pros .img:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-pros-circle.jpg);
  -webkit-mask-image: radial-gradient(circle, transparent 35%, #000 50%, #000 70%, transparent 70.1%);
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pros_circle_rotate 10s linear infinite;
}
@keyframes pros_circle_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#g-pros .img [class^=icon-pros-] {
  width: 8rem;
  height: 6rem;
  background: url(../img/icon-pros.svg) no-repeat;
  background-size: 300%;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  filter: drop-shadow(0 0.5rem 0.2rem rgba(0, 0, 0, 0.2));
}
#g-pros .img .icon-pros-1 {
  background-position: 0% 0;
}
#g-pros .img .icon-pros-2 {
  background-position: 50% 0;
}
#g-pros .img .icon-pros-3 {
  background-position: 100% 0;
}
#g-pros .txt {
  text-align: center;
}
#g-pros .txt h3 {
  font-size: 1.4rem;
  line-height: 2;
  color: #c0061a;
}
.g-hr {
  width: 72%;
  height: 1.6rem;
  background: url(../img/hr.png);
  background-size: 100%;
  display: block;
  border: 0;
  margin: 4rem auto;
}

.list-label > li {
  position: relative;
  padding-left: 2rem;
}
.list-label > li .label {
  position: absolute;
  top: 0;
  left: 0;
}

.list-dot > li {
  padding-left: 1.5rem;
  position: relative;
}
.list-dot > li:before {
  content: "．";
  position: absolute;
  top: 0;
  left: 0;
}

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

#g-gotop {
  background: rgba(192, 6, 26, 0.82);
  width: 6rem;
  height: 2rem;
  margin: 0 auto 0;
  padding: 0rem 0;
  cursor: pointer;
  transform: skew(-45deg);
  transition: 0.2s;
  position: fixed;
  bottom: -2rem;
  right: 1rem;
  z-index: 7;
  transition: 0.4s;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
}
#g-gotop > div {
  transform: skew(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-gotop i {
  width: 1rem;
  height: 0.5rem;
  background: url(../img/icon-up-fff.svg) no-repeat center;
  background-size: 100%;
  display: block;
  margin-right: 1rem;
}
#g-gotop p {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
#g-gotop:hover {
  background: #f6ff03;
}
#g-gotop:hover i {
  background-image: url(../img/icon-up-000.svg);
}
#g-gotop:hover p {
  color: #333;
}
#g-gotop.active {
  bottom: 0rem;
}

#g-quick {
  position: fixed;
  top: 40%;
  right: 0;
  background: #c0061a;
  text-align: center;
  transform: skewY(-45deg);
  padding-top: 0.5rem;
  transition: 0.4s;
  z-index: 5;
}
#g-quick p {
  padding: 0.6rem;
  transform: skewY(45deg);
}
#g-quick span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  transition: 0.4s;
}
#g-quick i {
  width: 1rem;
  height: 0.5rem;
  background: url(../img/icon-up-fff.svg) no-repeat center;
  background-size: 100%;
  display: block;
  margin: 0.5rem auto;
  transform: rotate(90deg);
}
#g-quick:hover {
  background: #f6ff03;
}
#g-quick:hover i {
  background-image: url(../img/icon-up-000.svg);
}
#g-quick:hover span {
  color: #000;
}

#g-footer {
  background: #000;
  font-size: 0.8rem;
  padding: 20px 0;
  color: #fff;
}
#g-footer .group {
  margin: 0 auto;
  width: 90%;
}
#g-footer .top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#g-footer .company {
  margin-right: 1rem;
}
#g-footer ol {
  text-align: left;
}
#g-footer ol li {
  display: inline-block;
}
#g-footer ol li:after {
  content: "|";
  display: inline-block;
  margin: 0 5px;
}
#g-footer ol li:last-child:after {
  display: none;
}
#g-footer .tel {
  text-align: center;
  width: 100%;
}
#g-footer .recommend {
  color: #999;
  margin-top: 1%;
}
#g-footer .logo-toyota-fff {
  width: 100px;
  height: 21px;
  background: url(../img/logo-toyota-fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999px;
  text-align: left;
}

@media screen and (min-width: 901px) {
  .is-m {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none !important;
  }

  html {
    font-size: 3vw;
  }

  body {
    overflow-x: hidden;
  }

  .g-section header h2 p {
    padding: 0 1rem;
  }

  #g-footer .logo-toyota-fff {
    display: block;
    margin: 0 auto;
  }
  #g-footer .company {
    margin-bottom: 2%;
  }
  #g-footer .top ol {
    text-align: center;
  }
  #g-footer .tel {
    text-align: center;
  }

  #msg-alert .msg-content header {
    font-size: 5vw;
  }

  .msg-box .msg-content {
    font-size: 3.5vw;
  }

  #g-kv {
    height: 55rem;
    background-size: 100%;
    overflow: hidden;
  }
  #g-kv .bg {
    background-size: 160% 100%;
    background-position: 0;
    -webkit-mask-image: linear-gradient(to bottom, #000, #000);
  }
  #g-kv #g-logo {
    width: 29vw;
    top: 4%;
    left: 5.5%;
  }
  #g-kv header {
    padding-top: 8.1rem;
    margin-left: 5.6%;
  }
  #g-kv .chars .car {
    width: 33.9rem;
    height: 25.8rem;
    top: 43.5%;
    left: -17%;
  }
  #g-kv .chars .fog-1 {
    width: 23rem;
    height: 31rem;
    top: 39%;
    left: -24%;
  }

  #g-nav .group {
    width: 100%;
    z-index: 1;
    position: relative;
  }
  #g-nav .group:before, #g-nav .group:after {
    display: none;
  }
  #g-nav ol {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  #g-nav ol:before {
    content: "";
    width: 110%;
    height: 0.2rem;
    background: #000;
    position: absolute;
    top: 48%;
    left: -5%;
  }
  #g-nav ol:after {
    width: 110%;
    left: -5%;
  }
  #g-nav li {
    width: 50%;
  }
  #g-nav li:nth-of-type(2):after {
    display: none;
  }
  #g-nav a {
    padding: 0 0.8rem;
    text-align: center;
  }

  #g-product {
    padding-top: 7rem;
  }
  #g-product .bg {
    background-size: 220%, 100% 20rem;
    background-position: 50% -2rem, 50% 32rem;
  }
  #g-product:before {
    top: 10rem;
  }

  #product-nav header {
    margin-top: 0;
    margin-bottom: 0;
  }
  #product-nav ol {
    width: 96%;
  }

  [class*=g-bt-] {
    transform: scale(0.95);
  }

  .product-page .btns a {
    margin: 0 -1rem;
  }

  #product-GLN0MF .product-img, #product-ENJ .product-img {
    width: 18.4rem;
  }

  #product-GLN0MF .product-img {
    margin: 2rem auto 0;
  }

  #product-ENJ .product-img {
    margin: 4rem auto -2rem;
  }

  .badge-japan-pride {
    width: 90%;
  }
  .badge-japan-pride .txt {
    margin-left: 0;
    padding: 1.5rem;
  }
  .badge-japan-pride .img img {
    top: -3.7rem;
    left: 21.7rem;
    width: 7.5rem;
  }

  #g-knowledge {
    margin-bottom: 8rem;
  }
  #g-knowledge picture {
    width: 90%;
    margin: 2rem auto 1rem;
  }
  #g-knowledge ol {
    width: 86%;
    margin: 0 auto;
  }
  #g-knowledge li {
    position: relative;
    width: 100%;
    padding-left: 8%;
    top: 0 !important;
    left: 0 !important;
    margin-bottom: 0.5rem;
  }
  #g-knowledge .no {
    background: #875a15;
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0.4rem;
    left: 0;
  }

  #g-pros ol {
    width: 90%;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  #g-pros ol li {
    width: 50%;
  }
  #g-pros ol li:nth-of-type(1) {
    width: 55%;
    margin-left: 23%;
    margin-bottom: 5%;
  }
  #g-pros .img {
    margin-bottom: 0;
  }

  .feature-a-list {
    width: 90%;
  }

  .feature-b-list {
    width: 80%;
    margin-top: 5%;
  }
  .feature-b-list > li {
    margin-bottom: 5%;
    align-items: flex-start;
  }

  .problem-list {
    width: 90%;
    display: block;
  }
  .problem-list > li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .problem-list > li:nth-of-type(2) .list-no {
    margin-left: 1.5rem;
  }
  .problem-list > li:nth-of-type(3) .list-no {
    margin-left: 1.5rem;
  }
  .problem-list > li:nth-of-type(3) .list-no li {
    white-space: normal;
  }
  .problem-list [class^=icon-problem-] {
    width: 50%;
  }
  .problem-list .txt {
    width: 50%;
  }
  .problem-list ~ header {
    margin-top: 5rem;
  }

  .g-hr {
    margin: 2rem auto;
    width: 90%;
  }
  .g-hr ~ header {
    margin-top: 5rem;
  }

  .product-page {
    padding-bottom: 5rem;
  }
  .product-page .btns .g-bt-1 {
    margin: 0 0.5rem;
  }

  #product-nav {
    padding-bottom: 8rem;
  }
  #product-nav li:nth-of-type(2) {
    margin-top: 8.7%;
  }

  .g-bt-1, .g-bt-2 {
    width: 15rem;
    font-size: 1.5rem;
  }

  .guarantee p {
    line-height: 1.4;
  }
}