@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 ==============================================*/
@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*/
.hide {
  display: none;
}

[class^=g-bt-] {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 2.4;
  padding: 0.5rem 3rem;
  border-left: 1px solid #e2bc48;
  border-right: 1px solid #e2bc48;
  cursor: pointer;
  background: #225150;
}
[class^=g-bt-]:after {
  content: "";
  border: 1px solid #e2bc48;
  position: absolute;
  top: 0;
  right: -0.3rem;
  bottom: 0;
  left: -0.3rem;
}
[class^=g-bt-]:hover {
  background: #29656b;
  color: #fff;
  text-decoration: none;
}

.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.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: -4rem;
  right: 0;
  width: 3rem;
  height: 3rem;
  transition: 0.2s;
  background: url(../img/icon-close.svg) no-repeat center;
  background-size: 100%;
  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;
}
.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: linear-gradient(to right, #b6a171, #e6d9bb);
  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: #000;
  transition: 0.2s;
}

#msg-alert .msg-wrap, #msg-outside-link .msg-wrap, #msg-login-failed .msg-wrap, #msg-login .msg-wrap, #msg-cw-mag-1 .msg-wrap, #msg-cw-mag-2 .msg-wrap, #msg-cw-learn-1 .msg-wrap, #msg-cw-learn-2 .msg-wrap, #msg-rm-1 .msg-wrap {
  width: 620px;
  max-width: 620px;
  height: 580px;
}
#msg-alert header:after, #msg-outside-link header:after, #msg-login-failed header:after, #msg-login header:after, #msg-cw-mag-1 header:after, #msg-cw-mag-2 header:after, #msg-cw-learn-1 header:after, #msg-cw-learn-2 header:after, #msg-rm-1 header:after {
  content: "";
  width: 86%;
  height: 0.4rem;
  background: #b6a171;
  display: block;
  margin: 0 auto;
}
#msg-alert .msg-content, #msg-outside-link .msg-content, #msg-login-failed .msg-content, #msg-login .msg-content, #msg-cw-mag-1 .msg-content, #msg-cw-mag-2 .msg-content, #msg-cw-learn-1 .msg-content, #msg-cw-learn-2 .msg-content, #msg-rm-1 .msg-content {
  text-align: center;
}
#msg-alert .msg-content p, #msg-outside-link .msg-content p, #msg-login-failed .msg-content p, #msg-login .msg-content p, #msg-cw-mag-1 .msg-content p, #msg-cw-mag-2 .msg-content p, #msg-cw-learn-1 .msg-content p, #msg-cw-learn-2 .msg-content p, #msg-rm-1 .msg-content p {
  font-size: 2rem;
  font-weight: bold;
  margin: 1.5rem 0;
}
#msg-alert .msg-content a, #msg-outside-link .msg-content a, #msg-login-failed .msg-content a, #msg-login .msg-content a, #msg-cw-mag-1 .msg-content a, #msg-cw-mag-2 .msg-content a, #msg-cw-learn-1 .msg-content a, #msg-cw-learn-2 .msg-content a, #msg-rm-1 .msg-content a {
  width: 86%;
}
#msg-alert .msg-content small, #msg-outside-link .msg-content small, #msg-login-failed .msg-content small, #msg-login .msg-content small, #msg-cw-mag-1 .msg-content small, #msg-cw-mag-2 .msg-content small, #msg-cw-learn-1 .msg-content small, #msg-cw-learn-2 .msg-content small, #msg-rm-1 .msg-content small {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  display: block;
  margin-top: 1rem;
}

#msg-alert header:after {
  display: none;
}
#msg-alert .msg-wrap {
  height: 300px;
}
#msg-alert .msg-content header {
  margin-top: 1rem;
}
#msg-alert .msg-content .g-bt-1 {
  margin-top: 2rem;
  padding-right: 0;
}

.tns-wrap {
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: 1s;
}
.tns-wrap.is-animate {
  transform: scale(1);
  opacity: 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: 45%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: transparent;
  z-index: 3;
  text-indent: -9999px;
  border: 0;
  background-image: url(../img/icon-right-000.svg);
  cursor: pointer;
  mix-blend-mode: difference;
}
.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: 9.7%;
  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: 9.7%;
}
.tns-controls button[disabled], .tns-controls div[disabled], .tns-cus-controls button[disabled], .tns-cus-controls div[disabled] {
  opacity: 0;
}

[id^=gallery-prev-],
[id^=gallery-next-] {
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url(../img/icon-right.svg);
  cursor: pointer;
}
[id^=gallery-prev-][disabled],
[id^=gallery-next-][disabled] {
  opacity: 0;
}

[id^=gallery-prev-] {
  transform: scale(-1, 1);
}

.tns-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
}
.tns-nav button {
  width: 2rem;
  height: 2rem;
  border: 0;
  margin: 2px;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: #fff;
  border-radius: 0.7rem;
  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: #ae8457;
}
.tns-nav button.tns-nav-active:after {
  background-color: #ae8457;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

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

html {
  font-size: 1.25vw;
}

body {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  font-family: "toyota_type", "Noto Sans TC", 微軟正黑體, Arial;
}

#g-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #000, #333, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: 1s;
  z-index: 10;
}
#g-loader .center {
  width: 100%;
  height: 150px;
  color: #fff;
}
#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;
}

#g-wrap {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  font-family: "toyota_type", "Noto Sans TC", 微軟正黑體, Arial;
}
#g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
.g-hr {
  width: 5rem;
  height: 0.2rem;
  background: linear-gradient(to right, #e2bc48 30%, #beae9c);
  display: block;
  margin: 2.8rem auto;
}

#g-header {
  background: #fff;
}

#g-logo {
  padding: 1rem;
  display: block;
}
#g-logo img {
  width: 10rem;
}

#g-kv {
  height: 39.8rem;
  overflow: hidden;
  background: #000;
}
#g-kv img {
  opacity: 0;
  margin-top: -17.5rem;
}
#g-kv header {
  background: #bd000b;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 7.7rem;
  bottom: 0;
  left: 0;
}
#g-kv h1 {
  margin-top: -3.3rem;
  margin-left: 2.3rem;
}
#g-kv h1 div {
  background: #000;
  color: #fff;
  font-weight: bold;
  transform: skew(-10deg);
  display: inline-block;
  font-size: 3rem;
  line-height: 1.7;
  position: relative;
}
#g-kv h1 div::before {
  content: "";
  width: 2.7rem;
  height: 100%;
  background: url(../img/deco-pixel-1.svg) no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  right: 100%;
}
#g-kv h1 div:nth-of-type(1) {
  padding: 0 5.4rem 0.4rem;
}
#g-kv h1 div:nth-of-type(2) {
  margin-top: -0.7rem;
  padding: 0 2.1rem 1.5rem 2.7rem;
  margin-left: -1rem;
  line-height: 1;
  font-size: 3.1rem;
}
#g-kv h1 div:nth-of-type(2) p {
  display: inline-block;
}
#g-kv h1 div:nth-of-type(2)::before {
  width: 2.9rem;
  right: auto;
  left: 100%;
  transform: rotate(180deg);
  background-size: 100%;
}
#g-kv .logo-GR {
  width: 8.2rem;
  height: 2.1rem;
  background: url(../img/logo-GR.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  transform: skew(10deg);
  margin-right: 1.1rem;
}
#g-kv.is-animate img {
  animation: kv_img_in 2s forwards;
}
@keyframes kv_img_in {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#g-kv.is-animate div:nth-of-type(1) {
  animation: h1_bar_1_in 1s forwards;
}
@keyframes h1_bar_1_in {
  0% {
    opacity: 0;
    transform: translateX(50%) skew(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skew(-10deg);
  }
}
#g-kv.is-animate div:nth-of-type(2) {
  opacity: 0;
  animation: h1_bar_1_in 1s 0.5s forwards;
}
#g-kv.is-animate .effect-1.is-animate span {
  animation: se1 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(1) {
  animation-delay: 0.83s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(2) {
  animation-delay: 0.86s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(3) {
  animation-delay: 0.89s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(4) {
  animation-delay: 0.92s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(5) {
  animation-delay: 0.95s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(6) {
  animation-delay: 0.98s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(7) {
  animation-delay: 1.01s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(8) {
  animation-delay: 1.04s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(9) {
  animation-delay: 1.07s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(10) {
  animation-delay: 1.1s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(11) {
  animation-delay: 1.13s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(12) {
  animation-delay: 1.16s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(13) {
  animation-delay: 1.19s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(14) {
  animation-delay: 1.22s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(15) {
  animation-delay: 1.25s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(16) {
  animation-delay: 1.28s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(17) {
  animation-delay: 1.31s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(18) {
  animation-delay: 1.34s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(19) {
  animation-delay: 1.37s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(20) {
  animation-delay: 1.4s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(21) {
  animation-delay: 1.43s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(22) {
  animation-delay: 1.46s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(23) {
  animation-delay: 1.49s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(24) {
  animation-delay: 1.52s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(25) {
  animation-delay: 1.55s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(26) {
  animation-delay: 1.58s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(27) {
  animation-delay: 1.61s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(28) {
  animation-delay: 1.64s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(29) {
  animation-delay: 1.67s !important;
}
#g-kv.is-animate .effect-1.is-animate.delay-200 span:nth-of-type(30) {
  animation-delay: 1.7s !important;
}

@keyframes se1 {
  0% {
    opacity: 0;
    transform: translateX(200%) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateX(0%) scale(1);
  }
}
.split-text span {
  display: inline-block;
  opacity: 0;
}
.split-text span.is-space {
  margin-right: 0.5rem;
}
.split-text span:nth-of-type(1) {
  animation-delay: 0.03s !important;
}
.split-text span:nth-of-type(2) {
  animation-delay: 0.06s !important;
}
.split-text span:nth-of-type(3) {
  animation-delay: 0.09s !important;
}
.split-text span:nth-of-type(4) {
  animation-delay: 0.12s !important;
}
.split-text span:nth-of-type(5) {
  animation-delay: 0.15s !important;
}
.split-text span:nth-of-type(6) {
  animation-delay: 0.18s !important;
}
.split-text span:nth-of-type(7) {
  animation-delay: 0.21s !important;
}
.split-text span:nth-of-type(8) {
  animation-delay: 0.24s !important;
}
.split-text span:nth-of-type(9) {
  animation-delay: 0.27s !important;
}
.split-text span:nth-of-type(10) {
  animation-delay: 0.3s !important;
}
.split-text span:nth-of-type(11) {
  animation-delay: 0.33s !important;
}
.split-text span:nth-of-type(12) {
  animation-delay: 0.36s !important;
}
.split-text span:nth-of-type(13) {
  animation-delay: 0.39s !important;
}
.split-text span:nth-of-type(14) {
  animation-delay: 0.42s !important;
}
.split-text span:nth-of-type(15) {
  animation-delay: 0.45s !important;
}
.split-text span:nth-of-type(16) {
  animation-delay: 0.48s !important;
}
.split-text span:nth-of-type(17) {
  animation-delay: 0.51s !important;
}
.split-text span:nth-of-type(18) {
  animation-delay: 0.54s !important;
}
.split-text span:nth-of-type(19) {
  animation-delay: 0.57s !important;
}
.split-text span:nth-of-type(20) {
  animation-delay: 0.6s !important;
}
.split-text span:nth-of-type(21) {
  animation-delay: 0.63s !important;
}
.split-text span:nth-of-type(22) {
  animation-delay: 0.66s !important;
}
.split-text span:nth-of-type(23) {
  animation-delay: 0.69s !important;
}
.split-text span:nth-of-type(24) {
  animation-delay: 0.72s !important;
}
.split-text span:nth-of-type(25) {
  animation-delay: 0.75s !important;
}
.split-text span:nth-of-type(26) {
  animation-delay: 0.78s !important;
}
.split-text span:nth-of-type(27) {
  animation-delay: 0.81s !important;
}
.split-text span:nth-of-type(28) {
  animation-delay: 0.84s !important;
}
.split-text span:nth-of-type(29) {
  animation-delay: 0.87s !important;
}
.split-text span:nth-of-type(30) {
  animation-delay: 0.9s !important;
}
.split-text span:nth-of-type(31) {
  animation-delay: 0.93s !important;
}
.split-text span:nth-of-type(32) {
  animation-delay: 0.96s !important;
}
.split-text span:nth-of-type(33) {
  animation-delay: 0.99s !important;
}
.split-text span:nth-of-type(34) {
  animation-delay: 1.02s !important;
}
.split-text span:nth-of-type(35) {
  animation-delay: 1.05s !important;
}
.split-text span:nth-of-type(36) {
  animation-delay: 1.08s !important;
}
.split-text span:nth-of-type(37) {
  animation-delay: 1.11s !important;
}
.split-text span:nth-of-type(38) {
  animation-delay: 1.14s !important;
}
.split-text span:nth-of-type(39) {
  animation-delay: 1.17s !important;
}
.split-text span:nth-of-type(40) {
  animation-delay: 1.2s !important;
}
.split-text span:nth-of-type(41) {
  animation-delay: 1.23s !important;
}
.split-text span:nth-of-type(42) {
  animation-delay: 1.26s !important;
}
.split-text span:nth-of-type(43) {
  animation-delay: 1.29s !important;
}
.split-text span:nth-of-type(44) {
  animation-delay: 1.32s !important;
}
.split-text span:nth-of-type(45) {
  animation-delay: 1.35s !important;
}
.split-text span:nth-of-type(46) {
  animation-delay: 1.38s !important;
}
.split-text span:nth-of-type(47) {
  animation-delay: 1.41s !important;
}
.split-text span:nth-of-type(48) {
  animation-delay: 1.44s !important;
}
.split-text span:nth-of-type(49) {
  animation-delay: 1.47s !important;
}
.split-text span:nth-of-type(50) {
  animation-delay: 1.5s !important;
}
.split-text span:nth-of-type(51) {
  animation-delay: 1.53s !important;
}
.split-text span:nth-of-type(52) {
  animation-delay: 1.56s !important;
}
.split-text span:nth-of-type(53) {
  animation-delay: 1.59s !important;
}
.split-text span:nth-of-type(54) {
  animation-delay: 1.62s !important;
}
.split-text span:nth-of-type(55) {
  animation-delay: 1.65s !important;
}
.split-text span:nth-of-type(56) {
  animation-delay: 1.68s !important;
}
.split-text span:nth-of-type(57) {
  animation-delay: 1.71s !important;
}
.split-text span:nth-of-type(58) {
  animation-delay: 1.74s !important;
}
.split-text span:nth-of-type(59) {
  animation-delay: 1.77s !important;
}
.split-text span:nth-of-type(60) {
  animation-delay: 1.8s !important;
}

.effect-2.is-animate span {
  animation: se1 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.effect-2.is-animate.delay-200 span:nth-of-type(1) {
  animation-delay: 0.63s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(2) {
  animation-delay: 0.66s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(3) {
  animation-delay: 0.69s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(4) {
  animation-delay: 0.72s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(5) {
  animation-delay: 0.75s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(6) {
  animation-delay: 0.78s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(7) {
  animation-delay: 0.81s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(8) {
  animation-delay: 0.84s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(9) {
  animation-delay: 0.87s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(10) {
  animation-delay: 0.9s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(11) {
  animation-delay: 0.93s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(12) {
  animation-delay: 0.96s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(13) {
  animation-delay: 0.99s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(14) {
  animation-delay: 1.02s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(15) {
  animation-delay: 1.05s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(16) {
  animation-delay: 1.08s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(17) {
  animation-delay: 1.11s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(18) {
  animation-delay: 1.14s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(19) {
  animation-delay: 1.17s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(20) {
  animation-delay: 1.2s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(21) {
  animation-delay: 1.23s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(22) {
  animation-delay: 1.26s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(23) {
  animation-delay: 1.29s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(24) {
  animation-delay: 1.32s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(25) {
  animation-delay: 1.35s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(26) {
  animation-delay: 1.38s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(27) {
  animation-delay: 1.41s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(28) {
  animation-delay: 1.44s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(29) {
  animation-delay: 1.47s !important;
}
.effect-2.is-animate.delay-200 span:nth-of-type(30) {
  animation-delay: 1.5s !important;
}

.ck-zone {
  width: 63%;
  margin: 0 auto;
}
.ck-zone:last-child {
  margin-bottom: 0;
}
.ck-zone.is-center {
  text-align: center;
}
.ck-zone .size-135 {
  font-size: 135%;
}
.ck-zone a {
  text-decoration: underline;
  color: #333;
}
.ck-zone a:hover {
  text-decoration: none;
}
.ck-zone h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-align: justify;
}
.ck-zone h3 {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.ck-zone h3 small {
  font-size: 80%;
}
.ck-zone > p {
  letter-spacing: 0.04rem;
  margin-bottom: 0.6rem;
  text-align: justify;
}

.ck-img {
  width: 67.7%;
  margin: 2rem auto;
}
.ck-img img {
  width: 100%;
}

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

.list-square li {
  padding-left: 1rem;
  position: relative;
}
.list-square li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.en {
  text-decoration: none;
  font-size: 110%;
}

[class^=tire-brush-] {
  width: 92rem;
  height: 60rem;
  background: url(../img/tire-brush.webp) no-repeat;
  background-size: 100%;
  position: absolute;
  pointer-events: none;
}

.tire-brush-1 {
  top: -67%;
  left: -16.7%;
  opacity: 0.1;
}

.tire-brush-2 {
  top: 26%;
  left: -67.7%;
  opacity: 0.1;
  transform: rotate(7deg) scale(1.2);
}

.tire-brush-3 {
  top: 11.5%;
  left: 14.3%;
  transform: rotate(-50deg) scale(1.4);
}

.tire-brush-4 {
  top: 51.5%;
  left: 7.3%;
  transform: rotate(2deg) scale(1.4);
}

.tire-brush-5 {
  top: 80.5%;
  left: -7.7%;
  transform: rotate(-40deg) scale(1.4);
}

#g-intro {
  background: #ececec;
  padding: 2.2rem 0 3.5rem;
  overflow: hidden;
}
#g-intro h2 {
  margin-bottom: 1rem;
}

#g-feature {
  background: #000;
  color: #fff;
  padding-bottom: 5rem;
  overflow: hidden;
}
#g-feature article {
  padding: 3.8rem 0 1.5rem;
  position: relative;
}
#g-feature header {
  margin-bottom: 1.1rem;
  position: relative;
}
#g-feature header::before {
  content: "";
  width: 7.5rem;
  height: 5rem;
  top: 0.8rem;
  right: 103.4%;
  background: url(../img/deco-pixel-2.svg) no-repeat;
  background-size: 100%;
  position: absolute;
}
#g-feature header small {
  font-size: 1.7rem;
}
#g-feature header h2 {
  line-height: 1.2;
}
#g-feature header h2 p {
  line-height: 1.2;
  margin-bottom: 0;
  color: #fff;
}
#g-feature p {
  line-height: 1.5;
  margin-bottom: 0.9rem;
  color: #b1b1b1;
}

#gallery-tns-1-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-2-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-3-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-4-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-5-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-6-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-7-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-8-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-9-iw {
  position: relative;
  left: 11.5rem;
}

#gallery-tns-10-iw {
  position: relative;
  left: 11.5rem;
}

.function {
  width: 68%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.pager {
  display: flex;
  align-items: center;
}

[id^=gallery-caption-] {
  transition: 0.2s;
  font-size: 1rem;
  padding-left: 2rem;
  transform: translate3d(0, 0, 1px);
}
[id^=gallery-caption-].is-fade {
  opacity: 0;
}

[id^=gallery-pager-] {
  line-height: 1;
  margin: 0 0.6rem;
  -webkit-mask-image: linear-gradient(to right, #000 30%, rgba(0, 0, 0, 0.5) 30.1%);
          mask-image: linear-gradient(to right, #000 30%, rgba(0, 0, 0, 0.5) 30.1%);
}

.tns-wrap {
  overflow: hidden;
}
.tns-wrap li {
  padding: 0 1.3rem;
}
.tns-wrap li img {
  width: 100%;
}

.bg-pixel-3 {
  background: url(../img/deco-pixel-3.svg), url(../img/deco-pixel-3.svg);
  background-repeat: repeat-y;
  background-size: 4.5%;
  background-position: 0 0, 100% 0;
}

#g-schedule {
  padding: 3rem 0;
}
#g-schedule header h2 {
  font-size: 2.3rem;
  font-weight: 500;
  text-align: center;
}
#g-schedule header h2::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}
#g-schedule .schedule {
  width: 83.5%;
  margin: 1.3rem auto 1.7rem;
}
#g-schedule dl {
  overflow: hidden;
  width: 44%;
  margin: 0.7rem auto;
}
#g-schedule dt, #g-schedule dd {
  float: left;
}
#g-schedule dt {
  width: 17%;
}
#g-schedule dd {
  width: 83%;
}

#schedule-sheet {
  width: 140%;
  max-width: 140%;
  margin-left: -20%;
  margin-bottom: 3rem;
}

#g-register {
  width: 63%;
  margin: 0 auto;
  padding: 1.8rem 0;
}
#g-register header h2 {
  font-size: 2.3rem;
  font-weight: 500;
  text-align: center;
}
#g-register header h2::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}
#g-register .step {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
}
#g-register .step > li {
  width: 31.8%;
  opacity: 0;
}
#g-register .step > li .img {
  background: url(../img/icon-step.svg) no-repeat;
  background-size: 300%;
  background-color: #000;
}
#g-register .step > li:nth-child(1) .img {
  background-position: 0 100%;
}
#g-register .step > li:nth-child(2) .img {
  background-position: 50% 100%;
}
#g-register .step > li:nth-child(3) .img {
  background-position: 100% 100%;
}
#g-register .step.is-animate > li {
  animation: step_li_in 1.2s forwards;
}
@keyframes step_li_in {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#g-register .step.is-animate > li:nth-child(1) {
  animation-delay: 0.2s;
}
#g-register .step.is-animate > li:nth-child(2) {
  animation-delay: 0.4s;
}
#g-register .step.is-animate > li:nth-child(3) {
  animation-delay: 0.6s;
}
#g-register .img {
  height: 9.3rem;
  position: relative;
}
#g-register .no {
  color: #fff;
  position: absolute;
  left: 10%;
  bottom: -0.3rem;
  font-size: 4.8rem;
  font-weight: 100;
  line-height: 1;
  display: none;
}
#g-register .txt {
  margin-top: 0.7rem;
}
#g-register .txt h3 {
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  text-align: center;
}
#g-register .list-dot {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.4;
}
#g-register .list-dot li {
  margin-bottom: 0.5rem;
}
#g-register .list-dot a {
  text-decoration: underline;
  color: #333;
}
#g-register .list-dot a:hover {
  text-decoration: none;
}

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

.list-dot li {
  position: relative;
  margin-left: 1rem;
}
.list-dot li:before {
  content: "．";
  position: absolute;
  top: 0;
  right: 100%;
  transform: scale(1.8);
}

.cta {
  width: 51%;
  display: block;
  margin: 2rem auto;
  text-align: center;
  padding: 0.8rem 0;
  background: #d80000;
  border: 0.25rem solid #faa7a2;
  border-radius: 50rem;
  color: #fff;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}
.cta: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%;
  }
}
.cta p {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
}
.cta i {
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon-right.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  animation: cta_i_move 0.5s infinite alternate;
}
@keyframes cta_i_move {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0);
  }
}
.cta:hover {
  filter: brightness(150%);
}

.contact {
  width: 90%;
  border: 1px solid #000;
  margin: 14.5rem auto 7rem;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}
.contact p {
  font-size: 1.2rem;
  line-height: 2;
}
.contact dl {
  width: 60%;
  margin: 2rem auto 0;
}
.contact dt, .contact dd {
  float: left;
  text-align: left;
}
.contact dt {
  width: 25%;
}
.contact dd {
  width: 75%;
}
.contact a {
  color: #000;
  text-decoration: underline;
}
.contact a:hover {
  text-decoration: none;
}

#g-rule {
  padding: 3rem 0 5rem;
  background: #ececec;
}
#g-rule h3 {
  text-align: center;
  font-weight: bold;
}
#g-rule .list-dot li {
  font-size: 0.85rem;
}
#g-rule .list-dot li::before {
  transform: scale(1.2);
}

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

#g-quick {
  position: fixed;
  top: 30%;
  right: 0;
  transition: 0.2s;
  opacity: 0;
  z-index: 3;
}
#g-quick a {
  font-size: 1.4rem;
  background: #000;
  display: block;
  color: #fff;
  line-height: 1.2;
  padding: 1.5rem 0.8rem;
  transition: 0.2s;
}
#g-quick a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#g-quick.active {
  opacity: 1;
  pointer-events: auto;
}

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

  html {
    font-size: 3.6vw;
  }

  #g-kv {
    height: auto;
  }
  #g-kv img {
    margin-top: 0;
  }
  #g-kv header {
    position: static;
  }
  #g-kv h1 {
    margin-top: -1rem;
    margin-left: 0;
  }
  #g-kv h1 div {
    font-size: 2rem;
  }
  #g-kv h1 div::before {
    width: 1.8rem;
  }
  #g-kv h1 div:nth-of-type(1) {
    margin-left: 1.5rem;
    padding: 0 0.5rem;
  }
  #g-kv h1 div:nth-of-type(2) {
    margin-top: -0.2rem;
    font-size: 2rem;
    padding: 0 0.7rem 1.1rem;
    margin-left: -0.5rem;
  }
  #g-kv h1 div:nth-of-type(2)::before {
    width: 1.8rem;
  }
  #g-kv .logo-GR {
    margin-right: 0.1rem;
    position: relative;
    top: 0.3rem;
  }

  .tire-brush-1 {
    top: -84%;
    left: -226.7%;
  }

  .tire-brush-2 {
    display: none;
  }

  .tire-brush-3 {
    top: 16.5%;
  }

  .tire-brush-4 {
    top: 57.5%;
  }

  .ck-zone {
    width: 90%;
  }
  .ck-zone h2 {
    font-size: 2.08rem;
  }
  .ck-zone h3 {
    line-height: 1.2;
  }

  .ck-img {
    width: 100%;
  }

  #g-intro {
    padding-bottom: 0;
  }
  #g-intro .ck-img {
    margin-bottom: 0;
  }

  #g-feature header {
    position: relative;
  }
  #g-feature header::before {
    position: absolute;
    top: 0;
    left: 0;
  }
  #g-feature header small {
    margin-left: 9rem;
    display: block;
    line-height: 1.2;
  }
  #g-feature header small b {
    display: block;
  }
  #g-feature header h2 {
    margin-top: 1.5rem;
  }

  #gallery-tns-1-iw {
    left: 1.7rem;
  }

  #gallery-tns-2-iw {
    left: 1.7rem;
  }

  #gallery-tns-3-iw {
    left: 1.7rem;
  }

  #gallery-tns-4-iw {
    left: 1.7rem;
  }

  #gallery-tns-5-iw {
    left: 1.7rem;
  }

  #gallery-tns-6-iw {
    left: 1.7rem;
  }

  #gallery-tns-7-iw {
    left: 1.7rem;
  }

  #gallery-tns-8-iw {
    left: 1.7rem;
  }

  #gallery-tns-9-iw {
    left: 1.7rem;
  }

  #gallery-tns-10-iw {
    left: 1.7rem;
  }

  .tns-wrap li {
    padding: 0 0.4rem;
  }

  .tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
    width: 3rem;
    height: 3rem;
    top: 105%;
  }
  .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: 0;
  }
  .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: 0;
  }

  .function {
    flex-wrap: wrap;
    width: 84%;
    padding-top: 0.5rem;
  }

  [id^=gallery-caption-] {
    padding-left: 0;
    line-height: 2;
  }

  #g-register {
    width: 90%;
  }
  #g-register .step {
    flex-wrap: wrap;
  }
  #g-register .step > li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  #g-register .step > li:nth-child(1) .img {
    background-position: 0 50%;
  }
  #g-register .step > li:nth-child(2) .img {
    background-position: 50% 50%;
  }
  #g-register .step > li:nth-child(3) .img {
    background-position: 100% 50%;
  }
  #g-register .step > li .img {
    width: 30%;
    height: 100%;
  }
  #g-register .step > li .txt {
    width: 70%;
    padding-left: 1rem;
    margin-top: 0;
  }
  #g-register .step > li h3 {
    text-align: left;
  }

  .cta {
    width: 100%;
    margin: 3rem auto;
  }
  .cta p {
    font-size: 2rem;
  }

  .contact {
    width: 100%;
    margin: 6rem 0 0;
  }
  .contact p {
    line-height: 1.5;
  }
  .contact dl {
    width: 80%;
    position: relative;
    left: 2%;
  }
  .tip-scroll-zone {
    position: relative;
  }
  .tip-scroll-zone.active .tip-drag {
    display: none;
  }

  .m-scroll {
    overflow-x: scroll;
    scroll-behavior: smooth;
  }
  .m-scroll .table-2 {
    width: 710px;
  }

  .tip-drag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95rem;
    -webkit-backdrop-filter: blur(0.2rem);
            backdrop-filter: blur(0.2rem);
    z-index: 1;
    pointer-events: none;
  }
  .tip-drag .box {
    width: 15rem;
    height: 15rem;
    background: url("../img/tire-brush.webp"), linear-gradient(to right, #000, #000);
    background-size: 400%, 100%;
    background-position: 80% 50%, 0;
    border-radius: 1rem;
    margin: 0 auto;
    padding-top: 2rem;
    position: relative;
    top: 10rem;
  }
  .tip-drag p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .icon-drag {
    width: 8rem;
    height: 4rem;
    background: url(../img/icon-drag.svg) no-repeat;
    background-size: 100%;
    display: block;
    margin: 2rem auto 0;
    animation: icon_drag_move 0.5s ease-in-out infinite alternate;
  }
  @keyframes icon_drag_move {
    0% {
      transform: translateX(-10%);
    }
    100% {
      transform: translateX(10%);
    }
  }

  #g-schedule .schedule {
    width: 70rem;
    max-width: 70rem;
    margin-left: -2rem;
  }
  #g-schedule dl {
    width: 90%;
  }
  #g-schedule dt {
    width: 22%;
  }
  #g-schedule dd {
    width: 78%;
  }

  .bg-pixel-3 {
    background: none;
  }

  #g-footer {
    letter-spacing: 0;
  }
}