@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Inter: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: #3c9ee7;
  color: #fff;
  text-decoration: none;
}

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

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

*:focus {
  outline: none;
}

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

a:hover {
  color: #d74a58;
}

*::-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: #000;
  font-family: "toyota_type", "Noto Sans TC", 微軟正黑體, Arial;
  text-align: center;
}
body.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-radius: 50%;
  border: 0;
  z-index: 1;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.4s;
  background-color: #a5061f;
}
.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-red.svg) 50% 50% no-repeat;
  background-size: 65%;
  display: block;
  filter: brightness(200%);
}
.tns-controls button:after, .tns-controls div:after, .tns-cus-controls button:after, .tns-cus-controls div:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border: 1px solid #a5061f;
  border-radius: 50%;
}
.tns-controls button:hover, .tns-controls div:hover, .tns-cus-controls button:hover, .tns-cus-controls div:hover {
  background-color: rgba(165, 6, 31, 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: -3rem;
  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: -3rem;
}

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

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

.color-red {
  color: #a5061f;
}

.color-blue {
  color: #3c9ee7;
}

.color-pink {
  color: #ff4e8a;
}

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

.color-yellow {
  color: orange;
}

.text-gradient-1 {
  color: #fff;
  background: linear-gradient(to right, #fff 25%, #999, #fff 55%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
  color: #fff;
  background: linear-gradient(to right, #fff 30%, #999, #fff 70%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-border-1 {
  color: #d71518;
  background: #fff;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.3rem transparent;
}

[class*=g-bt-] {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #000;
  line-height: 1.8;
  font-size: 0.8rem;
  color: #fff;
  cursor: pointer;
}
[class*=g-bt-] div {
  position: relative;
}
[class*=g-bt-]:after {
  content: "";
  width: 0;
  height: 100%;
  background: #a5061f;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
[class*=g-bt-]: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-] p {
  padding: 0 0.8rem;
  position: relative;
  z-index: 1;
}
[class*=g-bt-] i {
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
  left: 0.2rem;
}
[class*=g-bt-] i:after {
  content: "";
  width: 0.8rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
[class*=g-bt-] i:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.2rem 0 0.2rem 0.3rem;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: calc(50% - .15rem);
  right: 0;
}
[class*=g-bt-]:hover {
  filter: brightness(120%);
  color: #fff;
}
[class*=g-bt-]:hover div:after {
  left: 0;
}
[class*=g-bt-]:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}
[class*=g-bt-].g-bt-2 {
  background: #fff;
  border: 1px solid #000;
  border-radius: 50rem;
  padding: 0.3rem;
}
[class*=g-bt-].g-bt-2 p {
  background: linear-gradient(124deg, #fff 70%, #000 70.1%, #000 71%, #d74a58 71.1%);
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  border: 1px solid #000;
  border-radius: 50rem;
  padding: 0 1.4rem 0 2.2rem;
}
[class*=g-bt-].g-bt-2 i {
  width: 1.5rem;
  margin-left: 1.5rem;
}
[class*=g-bt-].g-bt-2 i:after {
  width: 1.5rem;
}
[class*=g-bt-].g-bt-2 i:before {
  width: 0.5rem;
  height: 1px;
  border: 0;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(45deg);
  transform-origin: 100% 50%;
}

.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;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
}
.msg-box .msg-wrap {
  background: #fff;
  width: 60%;
  border-radius: 0.5rem;
  max-height: 90%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  box-shadow: 0 0 1rem #000;
  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(165, 6, 31, 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.5rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 0.2rem solid #d74a58;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background: linear-gradient(to right, #a5061f, #650212);
  width: 50%;
  display: block;
  margin: 2rem auto 0;
  padding: 0.5rem 0;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  border-radius: 0.4rem;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #a5061f;
  transition: 0.2s;
}

#msg-alert .msg-wrap {
  height: auto;
  min-height: 100px;
  max-width: 500px;
}
#msg-alert .msg-content {
  text-align: center;
}
.g-form > ul > li {
  position: relative;
  padding: 0.75rem 0 0.75rem 20%;
}
.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.5rem 1rem;
  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.5rem 1rem;
  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: #3c9ee7;
  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%;
  border: 1px solid #999;
  background: #fff;
  color: #3c9ee7;
  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: #3c9ee7;
  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;
}

#g-wrap {
  position: relative;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: url(../img/bg-1.webp) no-repeat;
  background-size: 100%;
  background-color: #202020;
}
#g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
.g-section header {
  text-align: center;
}
#g-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent);
          mask-image: linear-gradient(to bottom, #000 90%, transparent);
}
#g-bg [class^=confetti-] {
  width: 62rem;
  height: 62rem;
  background: url(../img/confetti.webp) no-repeat;
  background-size: 100%;
  position: absolute;
}
#g-bg .confetti-1 {
  top: 0%;
  left: -63%;
}
#g-bg .confetti-2 {
  top: 4%;
  left: 77%;
  z-index: 1;
}
#g-bg .confetti-3 {
  top: 25%;
  left: -47%;
}
#g-bg .confetti-4 {
  top: 28%;
  left: 82%;
}
#g-bg .confetti-5 {
  top: 47%;
  left: -5%;
  transform: rotate(35deg);
}
#g-bg .confetti-6 {
  top: 55%;
  left: 82%;
  transform: rotate(-35deg);
}
#g-bg .confetti-7 {
  top: 75%;
  left: -17%;
  transform: rotate(35deg);
}
#g-bg .confetti-8 {
  top: 80%;
  left: 82%;
  transform: rotate(-35deg);
}
#g-bg [class^=flag-] {
  width: 110%;
  height: 8.4rem;
  background-image: repeating-conic-gradient(#ffffff 0% 25%, #000 0% 50%);
  background-size: 3.4rem 3.4rem;
  background-color: #000;
  position: absolute;
  left: -5%;
}
#g-bg .flag-1 {
  top: 50%;
  transform: rotate(-11.5deg);
}
#g-bg .flag-2 {
  top: 62.5%;
}
#g-bg .flag-3 {
  top: 77%;
  transform: rotate(11.5deg);
}
#g-bg .flag-4 {
  top: 83.5%;
}

#g-header {
  padding: 0.8rem 3.1rem;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background: #000;
}
#g-header .logo-GR {
  width: 16rem;
  height: 1.8rem;
  background: url(../img/logo-GR.svg) center no-repeat;
  background-size: 100%;
  text-indent: -9999rem;
  display: block;
}

#g-nav-trigger {
  width: 12vw;
  height: 12vw;
  position: fixed;
  top: 0;
  right: 0%;
  cursor: pointer;
  z-index: 1;
}
#g-nav-trigger p {
  font-size: 2.7vw;
  margin-top: 6.5vw;
}
#g-nav-trigger > div {
  right: 31%;
  height: 3px;
  background: #a5061f;
  display: block;
  position: absolute;
  border-radius: 50px;
  overflow: hidden;
  transition: 0.4s;
}
#g-nav-trigger > div div {
  background: #fff;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
}
#g-nav-trigger [class^=line-] {
  pointer-events: auto;
  width: 40%;
}
#g-nav-trigger [class^=line-] div {
  transition: 0.4s;
}
#g-nav-trigger .line-1 {
  top: 35%;
}
#g-nav-trigger .line-2 {
  top: 49%;
}
#g-nav-trigger .line-3 {
  top: 63%;
}
#g-nav-trigger [class^=cross-] {
  top: 50%;
  left: 26%;
  opacity: 0 !important;
  pointer-events: none;
  width: 50%;
}
#g-nav-trigger .cross-1 {
  transform: rotate(45deg);
}
#g-nav-trigger .cross-2 {
  transform: rotate(-45deg);
}
#g-nav-trigger.active [class^=line-] {
  opacity: 0 !important;
  pointer-events: none;
}
#g-nav-trigger.active [class^=line-] div {
  transform: translateX(0);
}
#g-nav-trigger.active [class^=cross-] {
  opacity: 1 !important;
  pointer-events: auto;
}
#g-nav-trigger.active [class^=cross-] div {
  animation: cross_active 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes cross_active {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
#g-nav-trigger.active .cross-1 div {
  animation-delay: 0s;
}
#g-nav-trigger.active .cross-2 div {
  animation-delay: 0.1s;
}
#g-nav-trigger:hover > div div {
  transform: translateX(100%);
}
#g-nav-trigger:hover .line-1 div {
  transition-delay: 0s;
}
#g-nav-trigger:hover .line-2 div {
  transition-delay: 0.1s;
}
#g-nav-trigger:hover .line-3 div {
  transition-delay: 0.2s;
}

#g-nav > ol {
  display: flex;
}
#g-nav > ol > li {
  position: relative;
}
#g-nav > ol > li:after {
  content: "/";
  color: #d74a58;
  position: absolute;
  top: 25%;
  right: 96%;
  font-size: 0.7rem;
}
#g-nav > ol > li a {
  padding: 0.1rem 0.8rem 0.3rem;
}
#g-nav > ol > li a:hover {
  color: #d74a58;
}
#g-nav > ol > li:first-child:after {
  display: none;
}
#g-nav > ol > li:last-child a {
  background: #d74a58;
  border-radius: 0.5rem;
}
#g-nav > ol > li:last-child a:hover {
  color: #fff;
  background: #a5061f;
}
#g-nav > ol > li:last-child:after {
  display: none;
}
#g-nav > ol > li:hover .sub {
  max-height: 7rem;
}
#g-nav a {
  font-size: 0.82rem;
  color: #fff;
  transition: 0.2s;
}
#g-nav .sub {
  width: 210%;
  margin-left: -55%;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 110%;
  left: 0;
  background: #000;
}
#g-nav .sub li {
  margin-bottom: 1px;
}
#g-nav .sub a {
  font-size: 0.78rem;
  background: #a5061f;
  display: block;
  line-height: 1.4;
}
#g-nav .sub a:hover {
  background: #650212;
  color: #fff;
}

.logo-GRDay {
  width: 32rem;
  height: 6.8rem;
  background: url(../img/logo-GRDay.svg) center no-repeat;
  background-size: 100%;
  text-indent: -9999rem;
  display: block;
}

#kv {
  height: 32.3rem;
}
#kv .logo-GRDay {
  top: 15%;
  left: 13%;
  position: absolute;
}
#kv .kv-car {
  position: absolute;
  top: 35%;
  left: 48%;
  width: 34%;
}
#kv .kv-car img {
  width: 100%;
  position: relative;
  z-index: 1;
}
#kv .kv-car:before, #kv .kv-car:after {
  content: "";
  width: 30rem;
  height: 30rem;
  background: rgba(245, 179, 147, 0.5);
  position: absolute;
  top: 5%;
  left: -8%;
  border-radius: 50%;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(195deg, #000 40%, transparent 60%);
          mask-image: linear-gradient(195deg, #000 40%, transparent 60%);
}
#kv .kv-car:after {
  animation: kv_car_circle_zoom 0.3s linear infinite alternate;
}
@keyframes kv_car_circle_zoom {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.85);
  }
}
#kv .board {
  background: url(../img/kv-board.webp) no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 21.7%;
  width: 22.2%;
  height: 20rem;
}
#kv .board ol {
  padding-top: 1rem;
}
#kv .board li {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.25;
  text-indent: 1rem;
  color: #4d2c01;
}
#kv .board li small {
  font-size: 0.8rem;
}
#kv .board li:nth-of-type(1) {
  transform: rotate(6deg);
}
#kv .board li:nth-of-type(2) {
  transform: rotate(-1deg);
}
#kv .board li:nth-of-type(3) {
  transform: rotate(2deg);
}
#kv .board li:nth-of-type(4) a {
  margin-top: 1.2rem;
  text-indent: 0;
}
#video {
  width: 74%;
  margin: 0 auto;
  background-image: repeating-conic-gradient(#ffffff 0% 25%, #000 0% 50%);
  background-position: 0 0, 1rem 0.4rem;
  background-size: 2rem 0.8rem;
  background-color: #000;
  padding: 0.8rem 0;
  z-index: 1;
}
#video .video {
  position: relative;
  overflow: hidden;
}
#video .tns-nav {
  top: calc(100% + .5rem);
}
.video-wrap {
  margin: 0 0;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.5%;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-wrap .img {
  position: absolute;
  overflow: hidden;
  float: left;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-wrap .img img {
  transition: 0.5s;
  width: 100%;
}
.video-wrap .img:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.5s;
}
.video-wrap .img .video-btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2rem 0 0 -2rem;
  z-index: 2;
}
.video-wrap p {
  font-size: 15px;
}
.video-wrap.is-active .img {
  opacity: 0;
  visibility: hidden;
}
.video-wrap:hover .img img {
  transform: scale(1.03);
}
.video-wrap:hover .img:before {
  opacity: 0;
}
.video-wrap:hover .video-btn-play:before {
  border: 3rem solid #fff;
  transform: translate(-50%, -50%) scale(1.5);
}
.video-wrap:hover .video-btn-play:after {
  transform: translate(-50%, -50%) scale(1.2);
  border-color: transparent transparent transparent #a5061f;
}

.video-btn-play {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  text-indent: -9999px;
}
.video-btn-play:before {
  content: "";
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(35deg, #a5061f, #000 40%);
  box-sizing: border-box;
  transition: 0.2s;
  animation: circle-jump 0.5s linear infinite alternate;
}
@keyframes circle-jump {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.video-btn-play:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 0 1.5rem 2rem;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}

#tns-video-ow button, #tns-GR-parts-ow button {
  background: transparent;
}
#tns-video-ow button:after, #tns-GR-parts-ow button:after {
  border: 0;
}

#tns-GR-parts-ow .tns-controls button:nth-of-type(1) {
  left: 2rem;
}
#tns-GR-parts-ow .tns-controls button:nth-of-type(2) {
  right: 2rem;
}

#highlight {
  background: #ececec;
  -webkit-mask-image: url(../img/mask-brush-1.webp), url(../img/mask-brush-2.webp), linear-gradient(to bottom, transparent 1rem, #000 2.5rem, #000 calc(100% - 2.5rem), transparent calc(100% - 1rem));
          mask-image: url(../img/mask-brush-1.webp), url(../img/mask-brush-2.webp), linear-gradient(to bottom, transparent 1rem, #000 2.5rem, #000 calc(100% - 2.5rem), transparent calc(100% - 1rem));
  -webkit-mask-size: 100% 2.5rem, 100% 2.5rem, 100% 100%;
          mask-size: 100% 2.5rem, 100% 2.5rem, 100% 100%;
  -webkit-mask-position: 0 0, 0 100%;
          mask-position: 0 0, 0 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  padding-top: 14rem;
  margin-top: -14rem;
}

.hightlight-list {
  width: 70%;
  margin: 4.3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hightlight-list li {
  width: 31%;
  position: relative;
  text-align: left;
  padding-left: 5rem;
  margin-bottom: 1.5rem;
}
.hightlight-list [class^=icon-highlight-] {
  width: 4.4rem;
  height: 4.4rem;
  background: url(../img/icon-highlight.svg?v3);
  background-size: 600%;
  background-color: #d74a58;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0.7rem;
  left: 0;
}
.hightlight-list [class^=icon-highlight-].icon-highlight-1 {
  background-position: 0% 0;
}
.hightlight-list [class^=icon-highlight-].icon-highlight-2 {
  background-position: 20% 0;
}
.hightlight-list [class^=icon-highlight-].icon-highlight-3 {
  background-position: 40% 0;
}
.hightlight-list [class^=icon-highlight-].icon-highlight-4 {
  background-position: 60% 0;
}
.hightlight-list [class^=icon-highlight-].icon-highlight-5 {
  background-position: 80% 0;
}
.hightlight-list [class^=icon-highlight-].icon-highlight-6 {
  background-position: 100% 0;
}
.hightlight-list .txt h2 {
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.hightlight-list .txt > p {
  font-size: 0.7rem;
}
.hightlight-list .txt .btns {
  margin-top: 0.2rem;
}

#event {
  padding-top: 6rem;
}

.g-header-1 {
  color: #fff;
}
.g-header-1 h2 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  line-height: 0.9;
}
.g-header-1 u {
  font-size: 3rem;
  text-decoration: none;
  line-height: 0.9;
  display: block;
  opacity: 0;
}

.bg-fff {
  background: #fff;
  width: 83%;
  margin: 0 auto;
  border-radius: 1rem;
  position: relative;
}

.verticle-h3 {
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  top: 2.7rem;
  right: 0.8rem;
  height: calc(100% - 5.4rem);
}
.verticle-h3 p {
  background: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.verticle-h3:before {
  content: "";
  width: 0.15rem;
  height: 100%;
  background: #a5061f;
  position: absolute;
  bottom: 0;
  left: 50%;
}

#star {
  padding: 2.8rem 0 3.5rem;
  margin-bottom: 3rem;
  height: 36rem;
}
#star [class^=star-] {
  position: absolute;
  font-size: 0.9rem;
  overflow: hidden;
}
#star [class^=star-] h4 {
  position: absolute;
}
#star .star-1 {
  top: 7.7%;
  left: 8.8%;
  width: 78.8%;
  height: 29.6rem;
}
#star .star-1 img {
  transform: translateX(-20%);
}
#star .star-1 h4 {
  top: 15%;
  left: 37.6%;
}
#star .star-2 {
  top: 38%;
  left: 26.9%;
  width: 66%;
  height: 18.7rem;
}
#star .star-2 img {
  transform: translateX(20%);
}
#star .star-2 h4 {
  top: 18%;
  left: 91%;
}
#star.is-animate .star-1 img {
  animation: star_1_in 1.5s forwards;
}
@keyframes star_1_in {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0);
  }
}
#star.is-animate .star-2 img {
  animation: star_2_in 1.5s forwards;
}
@keyframes star_2_in {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0%);
  }
}

#drive {
  padding: 8.7rem 0 1.4rem;
}
#drive .bg-fff {
  padding: 3rem 0 1.1rem;
  margin-top: 2.5rem;
}
#drive ol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84%;
  margin: 0 auto;
}
#drive li {
  width: 33.3%;
  margin: 0 -1.2rem;
  opacity: 0;
}
#drive li h4 {
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 0.2rem solid #d74a58;
  width: 50%;
  margin: 0 auto;
}
#drive li p {
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
#drive li img {
  width: 100%;
  margin-top: 1rem;
}
#drive li:nth-child(2) img {
  margin-left: 1rem;
}
#drive.is-animate li {
  animation: drive_li_in 1s forwards;
}
@keyframes drive_li_in {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#drive.is-animate li:nth-child(1) {
  animation-delay: 0.3s;
}
#drive.is-animate li:nth-child(2) {
  animation-delay: 0.6s;
}
#drive.is-animate li:nth-child(3) {
  animation-delay: 0.9s;
}

#racing {
  padding-top: 6.3rem;
  min-height: 79.2rem;
}
#racing .verticle-h3 {
  right: auto;
  left: 0.8rem;
}
#racing ol {
  width: 72%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  perspective: 20rem;
}
#racing li {
  width: 24%;
  position: relative;
  background: linear-gradient(to bottom, #fff, #a4a4a4 78%, #a5061f 78.1%);
  margin-bottom: 3.3rem;
  opacity: 0;
}
#racing img {
  width: 127%;
  max-width: 127%;
  margin-top: -0.4rem;
  margin-left: -13.5%;
}
#racing .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22%;
  background: rgba(188, 42, 42, 0.5);
  text-align: left;
  color: #fff;
  padding-left: 1.4rem;
  text-shadow: 0 0 0.2rem #000;
}
#racing .txt:before {
  content: "";
  width: 0.18rem;
  height: 70%;
  background: #fff;
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
}
#racing .txt h4 {
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
  position: relative;
  padding-top: 0.4rem;
}
#racing .txt h4:after {
  content: "/";
  font-size: 80%;
  position: relative;
  top: -0.1rem;
}
#racing .txt h4 small {
  font-size: 1rem;
  position: absolute;
  left: 100%;
  bottom: 0;
  white-space: nowrap;
}
#racing .txt p {
  font-size: 0.9rem;
  line-height: 1;
}
#racing.is-animate li {
  animation: racing_li_in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes racing_li_in {
  0% {
    opacity: 0;
    transform: rotateY(-60deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}
#racing.is-animate li:nth-child(1) {
  animation-delay: 0.1s;
}
#racing.is-animate li:nth-child(2) {
  animation-delay: 0.2s;
}
#racing.is-animate li:nth-child(3) {
  animation-delay: 0.3s;
}
#racing.is-animate li:nth-child(4) {
  animation-delay: 0.4s;
}
#racing.is-animate li:nth-child(5) {
  animation-delay: 0.5s;
}
#racing.is-animate li:nth-child(6) {
  animation-delay: 0.6s;
}
#racing.is-animate li:nth-child(7) {
  animation-delay: 0.7s;
}
#racing.is-animate li:nth-child(8) {
  animation-delay: 0.8s;
}
#racing.is-animate li:nth-child(9) {
  animation-delay: 0.9s;
}
#racing.is-animate li:nth-child(10) {
  animation-delay: 1s;
}
#racing.is-animate li:nth-child(11) {
  animation-delay: 1.1s;
}
#racing.is-animate li:nth-child(12) {
  animation-delay: 1.2s;
}

.activity-cars {
  position: relative;
  margin-top: -10.9rem;
  margin-bottom: 6.5rem;
}

.activity-car-1 {
  position: absolute;
  width: 49.7%;
  top: 12.2%;
  left: 11.2%;
}

.activity-car-2 {
  width: 41.5%;
  margin-left: 46.7%;
}

.logo-corolla-cup {
  width: 16.5rem;
  height: 4.2rem;
  background: url(../img/logo-corolla-cup.svg) no-repeat center;
  background-size: 100%;
  text-indent: -9999rem;
  display: inline-block;
  margin-right: 0.5rem;
  position: relative;
  top: -1rem;
}

#corolla-cup {
  padding-top: 5rem;
}
#corolla-cup header u {
  margin-top: -2.2rem;
}
#corolla-cup .verticle-h3 {
  right: auto;
  left: 0.8rem;
}
#corolla-cup .intro {
  margin: 1rem 0;
  line-height: 1.9;
}
#corolla-cup.is-animate .right {
  animation: cup_car_right_in 1.5s forwards;
}
@keyframes cup_car_right_in {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}

#car-zoom {
  width: 85%;
  margin: 0 auto;
  padding-top: 8.4rem;
  display: flex;
}
#car-zoom > div {
  position: relative;
}
#car-zoom .left {
  width: 31%;
  top: -2rem;
}
#car-zoom .right {
  width: 69%;
  height: 20.6rem;
  transform: translateX(20%);
}
#car-zoom .bg {
  width: 99%;
  margin: 0.3rem 0 0 0;
}

#tns-GR-wrap {
  width: 81%;
  margin: 0 auto;
}
#tns-GR-wrap .box {
  padding: 1rem;
  text-align: left;
  background: #000;
  color: #fff;
}
#tns-GR-wrap img {
  width: 100%;
}
#tns-GR-wrap h4 {
  border: 1px solid #fff;
  border-radius: 50rem;
  display: inline-block;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  margin: 1rem 0 0.5rem;
  font-size: 0.94rem;
  white-space: nowrap;
}
#tns-GR-wrap p {
  font-size: 0.8rem;
  line-height: 1.3;
}

#tns-GR {
  display: flex;
  align-items: center;
}

#tns-nav-GR li {
  width: 1.3rem;
  height: 1.3rem;
  background: #ff9000;
  margin: 1px;
  border-radius: 50%;
  position: absolute;
  transition: 0.2s;
  cursor: pointer;
}
#tns-nav-GR li:before {
  content: "+";
  font-size: 1.3rem;
  position: relative;
  top: -0.6rem;
  display: block;
  transition: 0.2s;
  transform-origin: 50% 54%;
  color: #fff;
}
#tns-nav-GR li:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0.14rem solid #fff;
  border-radius: 50%;
}
#tns-nav-GR li:nth-of-type(1) {
  top: 12%;
  left: 50.8%;
}
#tns-nav-GR li:nth-of-type(2) {
  top: 17%;
  left: 67.3%;
}
#tns-nav-GR li:nth-of-type(3) {
  top: 38%;
  left: 26%;
}
#tns-nav-GR li:nth-of-type(4) {
  top: 72%;
  left: 13.4%;
}
#tns-nav-GR li:nth-of-type(5) {
  top: 51%;
  left: 52.4%;
}
#tns-nav-GR li:nth-of-type(6) {
  top: 69%;
  left: 52.2%;
}
#tns-nav-GR li:nth-of-type(7) {
  top: 83%;
  left: 49.4%;
}
#tns-nav-GR li:nth-of-type(8) {
  top: 27%;
  left: 48.9%;
}
#tns-nav-GR li:nth-of-type(9) {
  top: 25%;
  left: 70.9%;
}
#tns-nav-GR li:nth-of-type(10) {
  top: 26%;
  left: 24.4%;
}
#tns-nav-GR li:nth-of-type(11) {
  top: 48%;
  left: 97.1%;
}
#tns-nav-GR li:hover, #tns-nav-GR li.tns-nav-active {
  background: linear-gradient(to bottom, #ccc, #fff);
  transform: scale(1.4);
}
#tns-nav-GR li:hover:after, #tns-nav-GR li.tns-nav-active:after {
  border-color: #000;
}
#tns-nav-GR li:hover:before, #tns-nav-GR li.tns-nav-active:before {
  transform: rotate(45deg);
  color: #000;
}

#tns-GR-parts-wrap {
  width: 90%;
  margin: 6.5rem auto 0;
  padding-bottom: 7.8rem;
}
#tns-GR-parts-wrap img {
  width: 81%;
  margin: 0 auto 0.6rem;
  box-shadow: 0.6rem 0.6rem 0 #a5061f;
  position: relative;
  left: -0.3rem;
}

#schedule {
  background: #fff;
  -webkit-mask-image: url(../img/mask-brush-1.webp), url(../img/mask-brush-2.webp), linear-gradient(to bottom, transparent 1rem, #000 2.5rem, #000 calc(100% - 2.5rem), transparent calc(100% - 1rem));
          mask-image: url(../img/mask-brush-1.webp), url(../img/mask-brush-2.webp), linear-gradient(to bottom, transparent 1rem, #000 2.5rem, #000 calc(100% - 2.5rem), transparent calc(100% - 1rem));
  -webkit-mask-size: 100% 2.5rem, 100% 2.5rem, 100% 100%;
          mask-size: 100% 2.5rem, 100% 2.5rem, 100% 100%;
  -webkit-mask-position: 0 0, 0 100%;
          mask-position: 0 0, 0 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-top: 5rem;
  padding: 5.3rem 0;
}
#schedule .group {
  width: 93%;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  background: #fbda3d;
  border-radius: 1.5rem;
  position: relative;
}
#schedule .group:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  border: 0.2rem solid #fbda3d;
  border-radius: 1.9rem;
}
#schedule header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}
#schedule header .deco-line {
  width: 45%;
  height: 1px;
  background: #000;
  position: relative;
}
#schedule header .deco-line:before, #schedule header .deco-line:after {
  content: "";
  width: 1px;
  height: 0.7rem;
  background: #000;
  position: absolute;
  top: -0.35rem;
}
#schedule header .deco-line:before {
  left: 0;
}
#schedule header .deco-line:after {
  right: 0;
}
#schedule header .logo-GRDay {
  width: 22.3rem;
  height: 2.3rem;
}
#schedule header h2 {
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 2rem;
}
#schedule .m-scroll {
  width: 98%;
  margin: 1rem auto 0;
}
#schedule .table {
  display: flex;
}
#schedule .left {
  width: 3.95%;
}
#schedule .left .th, #schedule .left .td, #schedule .right .th, #schedule .right .td {
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#schedule .left .th, #schedule .right .th {
  border-bottom: 0.2rem solid #fff;
}
#schedule .left .th:nth-of-type(1), #schedule .right .th:nth-of-type(1) {
  height: 4.2rem;
}
#schedule .left .th:nth-of-type(2), #schedule .right .th:nth-of-type(2) {
  height: 2.2rem;
}
#schedule .left .td, #schedule .right .td {
  height: 3.4rem;
  border-bottom: 0.1rem solid #fff;
}
#schedule .left .td.is-half, #schedule .right .td.is-half {
  height: 2rem;
}
#schedule .bg-red {
  background: #bc2a2a;
  color: #fff;
}
#schedule .bg-000 {
  background: #000;
  color: #fff;
}
#schedule .bg-eee {
  background: #e7e7e7;
}
#schedule .right {
  width: 94.85%;
}
#schedule .right [class^=row-] {
  width: 25%;
  border-left: 0.2rem solid #fff;
}
#schedule .right .row-2 .bg-eee, #schedule .right .row-4 .bg-eee {
  background: #d3d3d3;
}
#schedule .icon-winner {
  width: 6rem;
  height: 7rem;
  top: -108%;
  left: -9%;
  background: url(../img/icon-winner.svg);
  background-size: 100%;
  position: absolute;
}
#schedule #show-1-1 {
  height: 5.1rem;
}
#schedule #show-1-2 {
  margin-top: 11.9rem;
  height: 1.7rem;
}
#schedule #show-1-3 {
  margin-top: 0.1rem;
}
#schedule #show-2-1 {
  margin-top: 5rem;
}
#schedule #show-2-2 {
  margin-top: 4.5rem;
  height: 4.1rem;
  color: #d74a58;
}
#schedule #show-2-3 {
  margin-top: 5.1rem;
  height: 3.7rem;
}
#schedule #show-3-1 {
  height: 10.3rem;
}
#schedule #show-3-2 {
  margin-top: 0.2rem;
  margin-left: 0.3rem;
  height: 6.2rem;
  width: 197%;
  z-index: 1;
  position: relative;
  border: 1px solid #666;
  background: #fff;
}
#schedule #show-3-3 {
  margin-top: 0.3rem;
  height: 8.8rem;
}
#schedule #show-4-1 {
  height: 10.3rem;
}
#schedule #show-4-3 {
  margin-top: 6.66rem;
  height: 8.8rem;
}
#schedule .note {
  width: 88%;
  margin: 0rem auto;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: left;
  display: block;
}
#schedule .note-2 {
  margin: 0.4rem 7%;
}

#traffic {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
#traffic article {
  text-align: left;
  padding: 2.5rem 3.5rem 2rem;
}
#traffic article h3 {
  font-size: 1.6rem;
  font-weight: bold;
}
#traffic .guide {
  display: flex;
  margin-top: 1rem;
}
#traffic .gmap {
  width: 38%;
  position: relative;
}
#traffic .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#traffic .txt {
  width: 61%;
  padding-left: 1rem;
}
#traffic .txt h4 {
  color: #a5061f;
  font-weight: bold;
  background: linear-gradient(to right, #ccc 50%, transparent 50.1%) repeat-x center;
  background-size: 0.2rem 1px;
  margin-top: 1rem;
}
#traffic .txt h4 span {
  background: #fff;
  padding-right: 0.5rem;
}
#traffic .txt h4 a {
  color: blue;
  position: relative;
}
#traffic .txt h4 a:before {
  content: "";
  width: 100%;
  height: 2px;
  background: blue;
  position: absolute;
  top: 100%;
  left: 0;
}
#traffic .txt h5 {
  font-size: 0.9rem;
  font-weight: bold;
}
#traffic .txt p {
  font-size: 0.82rem;
}
#traffic .txt .flex {
  display: flex;
  margin-bottom: 1rem;
}
#traffic .txt .flex div:nth-of-type(1) {
  padding-right: 1rem;
}
#traffic .txt .double-arrow {
  letter-spacing: -0.5rem;
  font-style: normal;
  margin-right: 0.5rem;
}
#traffic .free-bus {
  display: flex;
  justify-content: space-between;
}
#traffic .list-arrow-right li {
  font-size: 0.82rem;
}
#traffic .map {
  margin-top: 3.8rem;
}
#traffic .map-note {
  margin: 1.6rem 0 0 1rem;
  overflow: hidden;
}
#traffic .map-note li {
  font-size: 0.82rem;
  float: left;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
#traffic .map-note [class^=icon-map-note-] {
  background: url(../img/icon-map-note.svg) no-repeat;
  background-size: 1000%;
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -0.1rem;
  text-indent: -9999rem;
}
#traffic .map-note .icon-map-note-1 {
  background-position: 0% 0;
}
#traffic .map-note .icon-map-note-2 {
  background-position: 11.1111111111% 0;
}
#traffic .map-note .icon-map-note-3 {
  background-position: 22.2222222222% 0;
}
#traffic .map-note .icon-map-note-4 {
  background-position: 33.3333333333% 0;
}
#traffic .map-note .icon-map-note-5 {
  background-position: 44.4444444444% 0;
}
#traffic .map-note .icon-map-note-6 {
  background-position: 55.5555555556% 0;
}
#traffic .map-note .icon-map-note-7 {
  background-position: 66.6666666667% 0;
}
#traffic .map-note .icon-map-note-8 {
  background-position: 77.7777777778% 0;
}
#traffic .map-note .icon-map-note-9 {
  background-position: 88.8888888889% 0;
}
#traffic .map-note .icon-map-note-10 {
  background-position: 100% 0;
}

#sponsor {
  padding-top: 6.3rem;
  padding-bottom: 3.4rem;
  background: #fff;
  -webkit-mask-image: url(../img/mask-brush-1.webp), linear-gradient(to bottom, transparent 1rem, #000 2.5rem, #000 100%);
          mask-image: url(../img/mask-brush-1.webp), linear-gradient(to bottom, transparent 1rem, #000 2.5rem, #000 100%);
  -webkit-mask-size: 100% 2.5rem, 100% 100%;
          mask-size: 100% 2.5rem, 100% 100%;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}
#sponsor header h2 {
  color: #000;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
#sponsor a {
  margin: 1.4rem 0.5rem;
  display: inline-block;
}
#sponsor a:hover {
  opacity: 0.8;
}
#sponsor [class^=logo-sponsor-] {
  width: 10rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  display: inline-block;
  text-indent: -9999rem;
}
#sponsor .logo-sponsor-1 {
  background-image: url(../img/logo-sponsor-1.svg);
}
#sponsor .logo-sponsor-2 {
  background-image: url(../img/logo-sponsor-2.svg);
}
#sponsor .logo-sponsor-3 {
  background-image: url(../img/logo-sponsor-3.svg);
}
#sponsor .logo-sponsor-4 {
  background-image: url(../img/logo-sponsor-4.svg);
}
#sponsor .logo-sponsor-5 {
  background-image: url(../img/logo-sponsor-5.svg);
}
#sponsor .logo-sponsor-6 {
  background-image: url(../img/logo-sponsor-6.svg);
}
#sponsor .logo-sponsor-7 {
  background-image: url(../img/logo-sponsor-7.svg);
}
#sponsor .logo-sponsor-8 {
  background-image: url(../img/logo-sponsor-8.svg);
}
#sponsor .logo-sponsor-9 {
  background-image: url(../img/logo-sponsor-9.svg);
}
#sponsor .logo-sponsor-1 {
  width: 16rem;
  height: 2.5rem;
}
#sponsor .logo-sponsor-4,
#sponsor .logo-sponsor-5 {
  width: 7rem;
}
#sponsor .logo-sponsor-8 {
  width: 5rem;
}
#sponsor .logo-sponsor-9 {
  width: 13rem;
}

#msg-privacy .msg-wrap {
  width: 90%;
  height: 60%;
  max-width: 600px;
  max-height: 90%;
}

.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 {
  padding-left: 1.5rem;
}
.list-dot > li {
  list-style-type: disc;
}

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

.list-r {
  padding-left: 1.5rem;
}
.list-r > li {
  position: relative;
  margin-bottom: 2%;
}
.list-r > li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: -20px;
}

#g-footer {
  background: #333;
  color: #fff;
  padding: 1rem 0;
  font-size: 0.75rem;
}
#g-footer .group {
  margin: 0 auto;
  display: flex;
  width: 75%;
}
#g-footer .left {
  width: 50%;
}
#g-footer .right {
  width: 50%;
  text-align: right;
}
#g-footer ol {
  text-align: left;
}
#g-footer ol li {
  display: inline-block;
}
#g-footer ol li:after {
  content: "|";
  display: inline-block;
  margin: 0 0.2rem;
}
#g-footer ol li:last-child:after {
  display: none;
}
#g-footer a {
  color: #fff;
}
#g-footer a:hover {
  color: #d74a58;
}
#g-footer .tel {
  text-align: left;
}
#g-footer .recommend {
  color: #666;
  font-size: 0.6rem;
}
#g-footer .icon-toyota-white {
  width: 5rem;
  height: 1rem;
  background: url(../img/logo-toyota-fff.svg) no-repeat center top;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999px;
  text-align: left;
  margin-right: 0.5rem;
}

#g-quick {
  position: fixed;
  top: calc(50% - 5rem);
  right: 1%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: 0.2s;
}
#g-quick span {
  width: 3rem;
  display: block;
  line-height: 1;
  font-size: 1.3rem;
  padding: 1rem 0.7rem 1rem;
}
#g-quick i {
  transform: rotate(90deg);
  top: 0;
  left: -0.3rem;
}
#g-quick.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

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

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

  .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;
  }

  #g-wrap {
    background-size: 187%;
    background-position: 53% 0;
  }

  #g-header {
    padding: 0.8rem 1rem;
  }

  #g-nav {
    position: fixed;
    top: 3.3rem;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
  }
  #g-nav > ol {
    display: block;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background: #111;
    padding-top: 5rem;
    transform: translateX(100%);
    transition: 0.4s;
  }
  #g-nav > ol > li:after {
    display: none;
  }
  #g-nav > ol > li:hover .sub {
    max-height: 20rem;
  }
  #g-nav > ol > li:first-child {
    border-top: 1px solid #333;
  }
  #g-nav > ol > li:last-child a {
    display: none;
    width: 60%;
    margin: 1rem auto 0;
  }
  #g-nav > ol a {
    line-height: 3;
    border-bottom: 1px solid #333;
    width: 100%;
    display: block;
    font-size: 1rem;
  }
  #g-nav .sub {
    max-height: 20rem;
    position: relative;
    width: 100%;
    margin-left: 0;
    box-shadow: inset 0 0.5rem 0.4rem rgba(0, 0, 0, 0.5);
    background: #650212;
    padding: 0.5rem 0;
  }
  #g-nav .sub a {
    line-height: 2;
    font-size: 0.9rem;
    background: transparent;
  }
  #g-nav .sub a:hover {
    background: transparent;
  }
  #g-nav .sub li:last-child a {
    border-bottom: 0;
  }
  #g-nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  #g-nav.active > ol {
    transform: translateX(0);
  }

  .m-header-join {
    background: #d74a58;
    position: absolute;
    top: 24%;
    left: 69%;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.3rem 0.7rem 0.5rem;
    line-height: 1;
  }
  .m-header-join:hover {
    background: #a5061f;
    color: #fff;
  }

  #g-bg {
    opacity: 0;
  }
  #g-bg.is-loaded {
    animation: g_bg_delay_in 1s 0.5s forwards;
  }
  @keyframes g_bg_delay_in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #g-bg video {
    top: 0.6%;
    left: -53%;
    width: 187%;
  }
  #g-bg [class^=confetti-] {
    width: 42rem;
    height: 42rem;
  }
  #g-bg .confetti-1 {
    top: 4.2%;
    left: -63%;
  }
  #g-bg .confetti-2 {
    display: none;
  }
  #g-bg .confetti-3 {
    top: 14.5%;
    left: -20%;
  }
  #g-bg .confetti-4 {
    top: 34%;
    left: 65%;
  }
  #g-bg .confetti-7 {
    top: 68%;
    left: -31%;
  }
  #g-bg .confetti-8 {
    left: 4%;
  }
  #g-bg .flag-1 {
    top: 35%;
  }
  #g-bg .flag-2 {
    top: 58.5%;
  }
  #g-bg .flag-3 {
    display: none;
  }
  #g-bg .flag-4 {
    top: 88.5%;
  }

  #kv {
    height: 26rem;
  }
  #kv .logo-GRDay {
    width: 27rem;
    height: 6.8rem;
    top: 17%;
    left: 3%;
  }
  #kv .kv-car {
    top: 49%;
    left: 49%;
    width: 48%;
  }
  #kv .kv-car:before, #kv .kv-car:after {
    width: 16rem;
    height: 16rem;
    top: 6%;
    left: -15%;
  }
  #kv .board {
    left: -7.3%;
    width: 63.2%;
    height: 21rem;
    transform: scale(0.7);
    transform-origin: 50% 100%;
  }
  #kv .board ol {
    padding-top: 1.2rem;
  }

  .g-bt-1 p {
    padding-bottom: 0.2rem;
  }

  #video {
    width: 83%;
  }

  .video-btn-play {
    transform: scale(0.5);
  }

  #highlight {
    padding-top: 5rem;
    margin-top: -5rem;
  }

  .hightlight-list {
    width: 90%;
  }
  .hightlight-list [class^=icon-highlight-] {
    width: 4rem;
    height: 4rem;
    top: 0rem;
  }
  .hightlight-list li {
    width: 100%;
  }
  .hightlight-list .txt h2 {
    line-height: 1.2;
    width: 120%;
    font-size: 1.3rem;
  }
  .hightlight-list .txt > p {
    font-size: 1rem;
  }

  .g-header-1 u {
    font-size: 2.6rem;
  }

  .bg-fff {
    width: 96%;
  }

  #star {
    padding-right: 2rem;
    height: 30rem;
  }
  #star [class^=star-] {
    overflow: inherit;
  }
  #star .star-1 {
    top: 9.7%;
    height: auto;
  }
  #star .star-1 h4 {
    top: -11%;
    left: 2.6%;
  }
  #star .star-2 {
    top: 35%;
    left: 13.9%;
    height: auto;
  }
  #star .star-2 h4 {
    top: 54%;
    left: 99%;
  }

  #drive {
    padding-top: 5rem;
  }
  #drive ol {
    width: 90%;
    margin-left: 0;
    align-items: flex-start;
  }
  #drive li {
    margin: 0;
  }
  #drive li h4 {
    width: 80%;
    font-size: 1.3rem;
    position: relative;
  }
  #drive li p {
    font-size: 0.9rem;
    line-height: 1.3;
    position: relative;
  }
  #drive li img {
    width: 140%;
    max-width: 140%;
    margin-left: -20%;
  }
  #drive li:nth-child(1) h4, #drive li:nth-child(1) p {
    left: 7%;
  }
  #drive li:nth-child(2) img {
    margin-top: 1.8rem;
    margin-left: -15%;
  }
  #drive li:nth-child(3) h4, #drive li:nth-child(3) p {
    left: -7%;
  }

  #racing {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #racing ol {
    width: 72%;
    margin-right: 8%;
  }
  #racing ol li {
    width: 48%;
  }
  #racing .txt h4 {
    font-size: 1.3rem;
  }
  #racing .txt h4 small {
    font-size: 0.7rem;
    letter-spacing: -0.05rem;
  }
  #racing .txt p {
    font-size: 0.7rem;
  }

  .activity-cars {
    margin-top: -3rem;
    margin-bottom: 4.5rem;
  }

  .activity-car-1 {
    width: 61.5%;
    top: 25.2%;
    left: 1.2%;
  }

  .activity-car-2 {
    width: 51.5%;
    margin-left: 45.7%;
  }

  #corolla-cup .bg-fff {
    padding-left: 4rem;
    padding-right: 2rem;
  }
  #corolla-cup .intro {
    text-align: justify;
    margin-top: 2rem;
  }
  #corolla-cup .verticle-h3 {
    top: 17.5rem;
    height: calc(100% - 20rem);
  }

  #car-zoom {
    width: 100%;
    padding-top: 2.4rem;
    display: block;
  }
  #car-zoom .bg {
    width: 100%;
  }
  #car-zoom .left {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
  #car-zoom .right {
    width: 120%;
    height: 12.8rem;
    margin-left: -15%;
  }
  #car-zoom .tns-wrap {
    margin-top: 17vh;
  }
  #car-zoom.active .left {
    opacity: 1;
    pointer-events: auto;
  }
  #car-zoom.active #tns-GR-m-close {
    opacity: 1;
    transform: scale(1);
  }
  #car-zoom.active #tns-GR-wrap {
    pointer-events: none;
  }

  #tns-GR-m-close {
    cursor: pointer;
    position: absolute;
    width: 3rem;
    height: 3rem;
    top: 8.5rem;
    right: 1.5rem;
    transition: 0.2s;
    background: rgba(165, 6, 31, 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);
    z-index: 4;
  }
  #tns-GR-m-close:before, #tns-GR-m-close:after {
    content: "";
    width: 1.8rem;
    height: 0.2rem;
    top: 1.4rem;
    left: 0.6rem;
    background: #fff;
    transform: rotate(45deg) translate3d(0, 0, 0);
    position: absolute;
  }
  #tns-GR-m-close:before {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }
  #tns-GR-m-close:after {
    transform: rotate(-45deg) translate3d(0, 0, 0);
  }

  #tns-GR {
    align-items: flex-start;
  }
  #tns-GR > .tns-item .box {
    min-height: 30rem;
  }

  #tns-GR-wrap h4 {
    font-size: 1.2rem;
  }
  #tns-GR-wrap p {
    font-size: 1rem;
    line-height: 1.5;
  }

  #tns-nav-GR li:hover, #tns-nav-GR li.tns-nav-active {
    background: #a5061f;
    transform: scale(1.1);
  }
  #tns-nav-GR li:hover:before, #tns-nav-GR li.tns-nav-active:before {
    transform: rotate(0);
    color: #fff;
  }
  #tns-nav-GR li:hover:after, #tns-nav-GR li.tns-nav-active:after {
    border-color: #fff;
  }
  #tns-nav-GR li:nth-of-type(2) {
    top: 14%;
  }
  #tns-nav-GR li:nth-of-type(9) {
    top: 30%;
  }

  #tns-GR-parts-wrap {
    width: 100%;
    margin-top: 2rem;
    padding-bottom: 4.5rem;
  }
  #tns-GR-parts-wrap img {
    width: calc(100% - .6rem);
  }

  #tns-GR-parts-ow .tns-controls button:nth-of-type(1) {
    left: -2.7rem;
  }
  #tns-GR-parts-ow .tns-controls button:nth-of-type(2) {
    right: -2.7rem;
  }

  #schedule {
    margin-top: 7rem;
  }
  #schedule header {
    flex-wrap: wrap;
    justify-content: center;
  }
  #schedule header h2 {
    margin-right: 0;
  }
  #schedule header .deco-line {
    display: none;
  }
  #schedule header .logo-GRDay {
    width: 20.3rem;
  }
  #schedule .group {
    padding: 2rem 1rem;
  }
  #schedule .table {
    width: 64rem;
  }
  #schedule .table .left {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #schedule .m-scroll {
    width: 94%;
    margin-top: 2rem;
  }
  #schedule .note {
    width: 94%;
    font-size: 0.8rem;
    margin-top: 2rem;
  }
  #schedule .note-2 {
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .m-scroll {
    overflow-x: scroll;
    scroll-behavior: smooth;
  }

  .tip-scroll-zone {
    position: relative;
  }
  .tip-scroll-zone.active .tip-drag {
    display: none;
  }

  .tip-drag {
    position: absolute;
    top: calc(50% - 10rem);
    left: calc(50% - 10rem);
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, #fff 20%, transparent 60%);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
  }
  .tip-drag p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a5061f;
    text-align: center;
  }

  .icon-drag {
    width: 8rem;
    height: 4rem;
    background: url(../img/icon-drag.svg) no-repeat;
    background-size: 100%;
    display: block;
    margin: 7rem 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%);
    }
  }

  #traffic {
    padding-top: 5rem;
  }
  #traffic article {
    margin-top: -2rem;
    padding: 2.5rem 2rem 4rem;
  }
  #traffic .guide {
    flex-wrap: wrap;
  }
  #traffic .gmap {
    width: 100%;
    height: 15rem;
  }
  #traffic .txt {
    width: 100%;
    padding-left: 0;
    padding-top: 1rem;
  }
  #traffic .txt p {
    font-size: 1rem;
  }
  #traffic .txt h4 {
    font-size: 1.3rem;
  }
  #traffic .txt h5 {
    font-size: 1rem;
    margin-top: 0.7rem;
  }
  #traffic .txt .flex div:first-child {
    width: 50%;
  }
  #traffic .txt .flex div:last-child {
    width: 50%;
  }
  #traffic .list-arrow-right li {
    font-size: 1rem;
  }
  #traffic .free-bus {
    display: block;
  }
  #sponsor div:nth-of-type(2) {
    margin: 1rem 0;
  }
  #sponsor div:nth-of-type(2) a {
    margin: 0.5rem 0.5rem;
  }
  #sponsor .logo-sponsor-7 {
    width: 9rem;
  }
  #sponsor .logo-sponsor-8 {
    width: 3rem;
  }
  #sponsor .logo-sponsor-9 {
    width: 11rem;
  }

  .tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
    top: 40%;
  }

  #g-footer {
    font-size: 1rem;
    padding: 2rem 0;
  }
  #g-footer .group {
    flex-wrap: wrap;
    width: 100%;
  }
  #g-footer .left {
    width: 100%;
  }
  #g-footer .left ol {
    text-align: center;
  }
  #g-footer .tel {
    text-align: center;
  }
  #g-footer .right {
    width: 100%;
    text-align: center;
  }
  #g-footer .icon-toyota-white {
    display: block;
    margin: 1rem auto 0;
  }
  #g-footer .recommend {
    margin-top: 1rem;
  }
}