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

.clearfix:after {
  clear: both;
}

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

.hide {
  display: none;
}

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

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

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

*:focus {
  outline: none;
}

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

a:hover {
  color: #df4080;
}

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

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

.color-blue {
  color: #0d6fb8;
}

.color-red {
  color: #e60113;
}

.color-pink {
  color: #c0061a;
}

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

.color-yellow {
  color: #f0cf00;
}

.color-orange {
  color: #e15300;
}

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

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

[class*=g-bt-] {
  width: 19rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0.2rem;
  font-family: "toyota_type", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  cursor: pointer;
}
[class*=g-bt-] > div {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 1rem 0 1.2rem;
}
[class*=g-bt-] > div:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
  z-index: 1;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
[class*=g-bt-] [class^=icon-arrow-] {
  width: 2rem;
  height: 2rem;
  background: url(../img/icon-next-fff.svg) no-repeat center;
  background-size: 50%;
  border-radius: 50rem;
  display: inline-block;
  vertical-align: middle;
  transition: 0.2s;
  position: relative;
  top: 0.2rem;
}
[class*=g-bt-] .icon-arrow-left {
  transform: rotate(180deg);
}
[class*=g-bt-]:hover {
  color: #fff;
}
[class*=g-bt-]:hover .icon-arrow-left {
  transform: rotate(180deg) translateX(0.5rem) scale(1.1);
}
[class*=g-bt-]:hover .icon-arrow-right {
  transform: translateX(0.5rem) scale(1.1);
}

.g-bt-1 {
  background: #df4080;
}
.g-bt-1 [class^=icon-arrow-] {
  background-image: url(../img/icon-next-fff.svg);
}

.g-bt-2 {
  background: #583615;
}

.g-bt-3 {
  background: #e60113;
  color: #000;
}
.g-bt-3 [class^=icon-arrow-] {
  transform: scale(-1, 1);
}
.g-bt-3:hover [class^=icon-arrow-] {
  transform: scale(-1, 1) translateX(0.5rem);
}

.g-bt-4 {
  background: #013e98;
}
.msg-box {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 0;
  transform: scale(1);
  perspective: 700px;
  pointer-events: none;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 102;
  pointer-events: auto;
}
.msg-box > .close {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.msg-box .msg-wrap {
  background: #fff;
  max-width: 550px;
  width: 90%;
  height: 60%;
  max-width: 600px;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 30px;
  transform: scale(1) translate3d(0, -50%, 0);
  transform-style: preserve-3d;
  transition-delay: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.msg-box .msg-wrap > .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 5%;
  height: 0;
  padding-bottom: 5%;
  transition: 0.2s;
  background: url(../img/icon-close.svg) #0d6fb8 no-repeat center;
  background-size: 45%;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}
.msg-box.is-active .msg-wrap {
  transform: scale(1) translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
}
.msg-box.is-active .msg-wrap > .close {
  transform: scale(1);
  opacity: 1;
}
.msg-box.is-active .msg-wrap > .close:hover {
  transform: rotate(90deg);
}
.msg-box .msg-content {
  overflow-y: auto;
  overflow-x: hidden;
  height: 95%;
  text-align: left;
  font-size: 20px;
  -webkit-overflow-scrolling: touch;
  color: #000;
}
.msg-box .msg-content header {
  font-size: 40px;
  font-weight: bold;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background-color: #000;
  border-radius: 10px;
  width: auto;
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #f0cf00;
  color: #000;
  transition: 0.2s;
}

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

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

html {
  font-size: 1.13vw;
}

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

body {
  line-height: 1.7;
  color: #333;
  font-family: "toyota_type", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden;
  background: url(../img/bg-2.png) no-repeat 50% 53.7rem #faf8dc;
  background-size: 100%;
  text-align: left;
}
body.lock {
  overflow: hidden;
}

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

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

.g-section header {
  text-align: center;
}
.g-section header h2 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.6rem;
  color: #fff;
}
.g-section header h2 span[class^=color-] {
  position: relative;
}
.g-section header h2 span[class^=color-]::before {
  content: attr(data-text);
  color: transparent;
  text-shadow: 1px 1px 0.1rem white, 0px 0px 0px #000;
  position: absolute;
  mix-blend-mode: multiply;
}
.g-section header h2.text-shadow {
  text-shadow: 0.1rem 0.1rem 0.1rem #013e98;
}

#g-kv {
  height: 45.2rem;
  background: url(../img/bg-kv.png);
  background-size: 100%;
}
#g-kv .bg-shine {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: kv_bg_change 0.4s forwards infinite;
  background-size: 100%;
}
@keyframes kv_bg_change {
  0%, 50% {
    background-image: url(../img/bg-kv-shine-01.png);
  }
  51%, 100% {
    background-image: url(../img/bg-kv-shine-02.png);
  }
}
#g-kv [class^=deco-gift-] {
  filter: drop-shadow(0.4rem 0.4rem 0.2rem rgba(0, 0, 0, 0.5));
  opacity: 0;
}
#g-kv #g-logo {
  position: absolute;
  width: 8.7rem;
  top: 3%;
  left: 1.7%;
  z-index: 1;
}
#g-kv #g-logo img {
  width: 100%;
}
#g-kv header {
  width: 41%;
  margin: 6rem 0 0 4.7%;
  position: relative;
  text-align: center;
}
#g-kv header p {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
#g-kv header p b {
  background: #38a1ed;
  color: #fff;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.1;
  position: relative;
  top: -0.2rem;
  margin-right: 0.4rem;
}
#g-kv header p:last-child {
  margin-top: -0.7rem;
}
#g-kv time {
  width: 19rem;
  height: 12rem;
  background: url(../img/text-h1-time.svg) no-repeat;
  background-size: 100%;
  text-indent: -9999rem;
  display: block;
  margin: 0 auto 0 19%;
}
#g-kv h1 {
  position: relative;
  width: 32.1rem;
  height: 13.8rem;
  background: url(../img/kv-h1.svg) no-repeat;
  background-size: 100%;
  display: block;
  margin: 0 auto 1rem;
  text-indent: -9999rem;
}
#g-kv.is-animate .deco-gift-1 {
  animation: kv_gift_1 1s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes kv_gift_1 {
  0% {
    transform: translate(-30%, -30%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
#g-kv.is-animate .deco-gift-2 {
  animation: kv_gift_2 1.5s 0.5s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes kv_gift_2 {
  0% {
    transform: translate(30%, -30%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
#g-kv.is-animate .deco-gift-3 {
  animation: kv_gift_3 1s 1s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes kv_gift_3 {
  0% {
    transform: translate(30%, 30%) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

[class^=deco-gift-] {
  position: absolute;
  width: 10em;
  height: 10em;
  top: 0;
  left: 0;
}
[class^=deco-gift-]::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
}

.deco-gift-1:before {
  background-image: url(../img/gift-1.webp);
}

.deco-gift-2:before {
  background-image: url(../img/gift-2.webp);
}

.deco-gift-3:before {
  background-image: url(../img/gift-3.webp);
}

.deco-gift-4:before {
  background-image: url(../img/gift-4.webp);
}

.deco-gift-1 {
  width: 17.5rem;
  height: 18rem;
  top: 7.8%;
  left: 49.1%;
}

.deco-gift-2 {
  width: 30.4rem;
  height: 27rem;
  top: 23.2%;
  left: 54.6%;
}

.deco-gift-3 {
  width: 17.5rem;
  height: 17rem;
  top: 62%;
  left: 74%;
}

#g-nav {
  position: sticky;
  top: -1px;
  left: 0;
  z-index: 5;
  width: 100%;
  background: url(../img/bg-nav.png) no-repeat #faf8dc;
  background-size: 100% 100%;
}
#g-nav.is-sticky {
  z-index: 6;
}
#g-nav ol {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-nav li {
  padding: 0 0.5rem;
  position: relative;
  text-align: center;
}
#g-nav li:after {
  content: "";
  width: 0.1rem;
  height: 2.5rem;
  background: #583615;
  position: absolute;
  left: 100%;
  top: calc(50% - 1.25rem);
}
#g-nav li:last-child:after {
  display: none;
}
#g-nav a {
  display: block;
  position: relative;
  font-weight: bold;
  padding: 2rem 2.7rem;
  font-size: 2rem;
  color: #583615;
}
#g-nav a span {
  display: block;
}
#g-nav a:hover {
  color: #fff;
  text-shadow: 0 0 2rem #e15300, 0 0 2rem #e15300, 0 0 2rem #e15300, 0 0 2rem #e15300;
}
#g-nav:hover {
  color: #fff;
}
#g-nav:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

[class^=text-event-h2-] {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: auto 100%;
  height: 5.5rem;
  text-indent: -9999rem;
}

.text-event-h2-1 {
  background-image: url("../img/text-event-h2-1.png");
}

.text-event-h2-2 {
  background-image: url("../img/text-event-h2-2.png");
}

.text-event-h2-2 {
  height: 4.8rem;
}

[class^=text-h2-] {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: auto 100%;
  height: 4.8rem;
  text-indent: -9999rem;
  margin: 2.6rem auto 2rem;
  display: block;
}

.text-h2-1 {
  background-image: url("../img/text-h2-1.png");
}

.text-h2-2 {
  background-image: url("../img/text-h2-2.png");
}

.text-h2-3 {
  background-image: url("../img/text-h2-3.png");
}

.text-h2-4 {
  background-image: url("../img/text-h2-4.png");
}

.text-h2-5 {
  background-image: url("../img/text-h2-5.png");
}

.text-h2-6 {
  background-image: url("../img/text-h2-6.png");
}

.text-h2-7 {
  background-image: url("../img/text-h2-7.png");
}

.text-h2-8 {
  background-image: url("../img/text-h2-8.png");
}

.text-h2-9 {
  background-image: url("../img/text-h2-9.png");
}

.text-h2-10 {
  background-image: url("../img/text-h2-10.png");
}

[class^=text-event-h3-] {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: auto 100%;
  height: 4.8rem;
  text-indent: -9999rem;
  margin: 2.6rem auto 2rem;
  display: block;
}

.text-event-h3-1, .text-event-h3-2 {
  height: 2.5rem;
  margin-top: 4rem;
  margin-bottom: 1.2rem;
}

.text-event-h3-1 {
  background-image: url("../img/text-event-h3-1.svg");
}

.text-event-h3-2 {
  margin-top: 2.5rem;
  background-image: url("../img/text-event-h3-2.svg");
}

[class^=text-btn-] {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: auto 100%;
  width: 13rem;
  height: 1.8rem;
  text-indent: -9999rem;
}

.text-btn-1 {
  background-image: url("../img/text-btn-1.png");
}

.text-btn-2 {
  background-image: url("../img/text-btn-2.png");
}

.text-btn-3 {
  background-image: url("../img/text-btn-3.png");
}

#g-event .group {
  width: 84.7%;
  margin: 1.3rem auto;
  position: relative;
  border: 0.4rem solid #583615;
  border-radius: 0.3rem;
  padding: 4.6rem 7.6%;
  background: url(../img/bg-3.png) 50%;
  background-size: 15rem;
}
#g-event .deco-gift-1 {
  top: 3.1rem;
  left: 90.6%;
  width: 9.5rem;
  height: 9.5rem;
}
#g-event .deco-gift-1::before {
  transform: rotate(-20deg);
}
#g-event .deco-gift-2 {
  top: 20.3rem;
  left: 74.6%;
  width: 15.4rem;
  height: 15.4rem;
}
#g-event .deco-gift-2::before {
  transform: rotate(9deg);
}
#g-event .deco-gift-3 {
  top: 21.5rem;
  left: 4.4%;
  width: 8.3rem;
  height: 8.3rem;
}
#g-event .deco-gift-3::before {
  transform: rotate(-42deg);
}
#g-event [class^=deco-gift-]::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.5);
  background-repeat: no-repeat;
  background-size: contain;
  animation: deco_gift_sun_rotate 10s linear infinite;
}
@keyframes deco_gift_sun_rotate {
  0% {
    transform: rotate(0deg) scale(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1.5);
  }
}
#g-event [class^=deco-gift-]::before {
  position: relative;
  z-index: 1;
}
#g-event .deco-gift-1::after {
  background-image: url(../img/icon-flat-sun-1.webp);
}
#g-event .deco-gift-2::after {
  background-image: url(../img/icon-flat-sun-2.webp);
}
#g-event .deco-gift-3::after {
  background-image: url(../img/icon-flat-sun-3.webp);
}
#g-event header h2 {
  margin-bottom: 1.4rem;
}
#g-event header p {
  font-size: 1.6rem;
  line-height: 1.55;
}
#g-event header b {
  font-size: 115%;
  line-height: 1;
}
#g-event h3 {
  border-bottom: 0.2rem solid #583615;
}
#g-event .rule {
  display: flex;
  flex-wrap: wrap;
  margin: 1.8rem 0 1.1rem;
}
#g-event .rule dt {
  width: 11.5%;
}
#g-event .rule dt h4 {
  background: #e15300;
  font-size: 1.2rem;
  line-height: 2.2;
  text-align: center;
  color: #fff;
  border-radius: 50rem;
}
#g-event .rule dd {
  width: 87.5%;
  padding-left: 0.5rem;
  font-size: 1.2rem;
}
#g-event .rule dt, #g-event .rule dd {
  margin-bottom: 1.2rem;
}
#g-event .rule.is-center {
  display: block;
}
#g-event .rule.is-center dt {
  width: auto;
  text-align: center;
}
#g-event .rule.is-center dt h4 {
  display: inline-block;
  width: 30%;
}
#g-event .rule.is-center dd {
  width: 100%;
  margin-bottom: 0;
}
#g-event .gift {
  font-size: 2.2rem;
  line-height: 1.5;
}
#g-event .gift p {
  font-weight: bold;
  color: #013e98;
}
#g-event .gift b {
  font-size: 150%;
  color: #e60113;
  line-height: 1;
}
#g-event .gift small {
  font-size: 60%;
  display: block;
}
#g-event .table-wrap {
  font-size: 90%;
  text-align: justify;
  text-shadow: none;
  border: 0.24rem solid #583615;
  border-radius: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
#g-event .table-wrap table {
  border: 0;
  width: 100%;
  text-align: center;
}
#g-event .table-wrap thead {
  background: #f0cf00;
}
#g-event .table-wrap thead th {
  border-left: 0.2rem solid #583615;
  font-size: 1.2rem;
  color: #000;
}
#g-event .table-wrap thead th:first-child {
  border-left: 0;
  width: 69%;
}
#g-event .table-wrap thead th:last-child {
  width: 31%;
}
#g-event .table-wrap tbody td {
  border-left: 0.2rem solid #583615;
}
#g-event .table-wrap tbody th, #g-event .table-wrap tbody td {
  border-bottom: 0.2rem solid #583615;
}
#g-event .table-wrap th {
  text-align: center;
}
#g-event .table-wrap th, #g-event .table-wrap td {
  padding: 0.8rem;
}
#g-event .table-wrap th p, #g-event .table-wrap td p {
  font-size: 1.5rem;
  font-weight: bold;
}
#g-event .table-wrap th small, #g-event .table-wrap td small {
  color: #e15300;
  display: block;
  font-size: 110%;
}
#g-event .table-wrap th strong, #g-event .table-wrap td strong {
  color: #e15300;
  font-size: 140%;
  line-height: 1;
}

#event-rule {
  transition: 0.2s;
}
#event-rule.active #event-rule-q i.icon-arrow-down {
  transform: scale(1, 1);
}
#event-rule.active #event-rule-a {
  max-height: 150rem;
  padding: 2rem 0;
}

#event-rule-q {
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
#event-rule-q i.icon-arrow-down {
  width: 2rem;
  height: 2rem;
  display: block;
  background: url(../img/icon-up-fff.svg) no-repeat center #583615;
  background-size: 50%;
  border-radius: 5rem;
  position: absolute;
  top: 0.4rem;
  right: 35%;
  transition: 0.2s;
  transform: scale(1, -1);
}
#event-rule-q:hover {
  opacity: 0.8;
}

#event-rule-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  margin: 0 auto;
  font-size: 1.1rem;
}

#g-plus {
  padding-top: 3rem;
}
#g-plus header {
  margin-bottom: 2.5rem;
}
#g-plus .deco-gift-4 {
  width: 22rem;
  height: 17rem;
  top: -23.5%;
  left: 68%;
}
#g-plus .group {
  width: 84.7%;
  margin: 1.3rem auto;
  position: relative;
  border: 0.4rem solid #583615;
  border-radius: 0.3rem;
  padding: 3rem 4% 2rem;
  background: url(../img/bg-3.png) 50%;
  background-size: 15rem;
}
#g-plus dl {
  display: flex;
  flex-wrap: wrap;
}
#g-plus dt {
  width: 32.2%;
  font-size: 2.7rem;
  font-weight: bold;
  color: #583615;
  text-align: center;
  padding: 1.2rem 0;
  margin-bottom: 1.1rem;
  border-radius: 0.78rem;
}
#g-plus dt b {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #df0615, #b82d38);
  color: #fff;
  display: inline-block;
  border-radius: 50rem;
  margin-right: 1rem;
}
#g-plus dt:nth-of-type(1) {
  background-color: #ffe1ee;
}
#g-plus dt:nth-of-type(2) {
  background-color: #f0cf00;
  padding: 2.7rem 0;
}
#g-plus dd {
  width: 67.8%;
  font-size: 1.6rem;
  padding-left: 5%;
  line-height: 1.3;
}
#g-plus dd:nth-of-type(1) {
  padding-top: 2.3rem;
}
#g-plus dd small {
  font-size: 55%;
}
#g-plus dd a {
  color: #333;
}
#g-plus dd a:hover {
  color: #c0061a;
}

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

#g-product {
  padding-top: 0.5rem;
}

#product-nav header {
  margin-bottom: -1rem;
}
#product-nav ol {
  display: flex;
  width: 66%;
  margin: 5.3% auto 0;
  position: relative;
  z-index: 1;
}
#product-nav li {
  width: 50%;
}
#product-nav li:nth-of-type(1) img {
  margin-bottom: -16%;
}
#product-nav li:nth-of-type(2) {
  margin-top: 5%;
}
#product-nav li:nth-of-type(2) img {
  width: 82%;
  margin-bottom: -33%;
}
#product-nav li:hover img {
  transform: translateY(-2%);
}
#product-nav img {
  width: 77%;
  margin: 0 auto;
  transition: 0.4s;
}
#product-nav a {
  margin: 0.8rem auto -1rem;
  display: block;
}

#product-GLN0MF .product-img, #product-ENJ .product-img {
  margin: 4rem auto 1rem;
  width: 28rem;
  position: relative;
  z-index: 1;
}
#product-GLN0MF .product-img img, #product-ENJ .product-img img {
  width: 100%;
}

#product-ENJ .product-img {
  position: relative;
  width: 32rem;
  margin-bottom: -10rem;
}
#product-ENJ .product-img::after {
  content: "";
  width: 14.3rem;
  height: 15rem;
  top: 12.4%;
  left: 97.5%;
  background: url(../img/text-desc-2.png) no-repeat;
  background-size: 100%;
  position: absolute;
}
#product-ENJ header h2 {
  margin-bottom: 1rem;
}
#product-ENJ header p {
  background: #a17e5d;
  border: 0.4rem solid #583615;
  border-radius: 0.3rem;
  border-radius: 50rem;
  display: inline-block;
  padding: 0.5rem 2.5rem;
  color: #fff;
}
#product-ENJ header p span {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.2rem;
}
#product-ENJ header .text-desc-4 {
  width: 32.7rem;
  height: 2.2rem;
  background: url(../img/text-desc-4.png) no-repeat;
  background-size: 100%;
  text-indent: -9999rem;
  display: block;
}
#product-ENJ .guarantee img {
  width: 23%;
}
#product-ENJ .guarantee .txt {
  width: 61%;
}

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

.feature-a-list {
  width: 94%;
  margin: 4rem auto 0;
  border-radius: 2.5rem;
  padding: 2.2rem;
}
.feature-a-list .group {
  width: 95%;
  margin: 0 auto;
  position: relative;
  border: 0.4rem solid #583615;
  border-radius: 0.3rem;
  padding: 2rem 6%;
  background: url(../img/bg-3.png) 50%;
  background-size: 15rem;
}
.feature-a-list .group > li {
  display: flex;
  align-items: start;
  position: relative;
  padding-bottom: 1rem;
}
.feature-a-list .img {
  width: 9.4rem;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-a-list .img [class^=icon-feature-a-] {
  width: 3.5rem;
  height: 3.5rem;
  background: url(../img/icon-feature-a.svg);
  background-size: 300%;
  display: block;
  margin: 0 auto;
}
.feature-a-list .img .icon-feature-a-1 {
  background-position: 0% 0;
}
.feature-a-list .img .icon-feature-a-2 {
  background-position: 50% 0;
}
.feature-a-list .img .icon-feature-a-3 {
  background-position: 100% 0;
}
.feature-a-list .txt {
  width: calc(100% - 9.4rem);
}
.feature-a-list .txt h4 {
  color: #e15300;
  font-size: 1.4rem;
}
.feature-a-list .list-dot li {
  font-size: 1.25rem;
}

.guarantee {
  margin: 0rem auto 3rem;
  width: 94%;
  border-radius: 2.5rem;
  padding: 1.8rem;
}
.guarantee .group {
  width: 94%;
  margin: 0 auto;
  position: relative;
  border: 0.4rem solid #583615;
  border-radius: 0.3rem;
  background: #f0cf00;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 5%;
}
.guarantee img {
  width: 20%;
  margin-bottom: -4rem;
  margin-right: 5rem;
}
.guarantee .txt {
  width: 54%;
  height: 10.2rem;
  text-align: center;
  line-height: 1.3;
  color: #583615;
}
.guarantee .txt h4 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #e15300;
}
.guarantee .txt p {
  font-size: 3.2rem;
  font-weight: bold;
}
.guarantee .txt small {
  font-size: 1.8rem;
  font-weight: bold;
}

.problem-list {
  width: 86%;
  margin: 0 auto 0;
  display: flex;
  padding-bottom: 2rem;
}
.problem-list > li {
  width: 33.33%;
  padding-top: 4%;
}
.problem-list [class^=icon-problem-] {
  width: 14rem;
  height: 14rem;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0 auto;
}
.problem-list .icon-problem-1 {
  background-image: url(../img/icon-problem-b-1.svg);
}
.problem-list .icon-problem-2 {
  background-image: url(../img/icon-problem-b-2.svg);
}
.problem-list .icon-problem-3 {
  background-image: url(../img/icon-problem-b-3.svg);
}
.problem-list h3 {
  font-size: 1.6rem;
  color: #fff;
  background: #a17e5d;
  border: 0.4rem solid #583615;
  border-radius: 50rem;
  width: 35%;
  padding: 0.2rem 0;
  margin: 0 auto 1rem;
  text-align: center;
  letter-spacing: 0.3rem;
  text-indent: 0.3rem;
}
.problem-list .list-no {
  width: 86%;
  margin: 0 auto;
}
.problem-list .list-no li {
  font-size: 1.1rem;
}

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

#g-knowledge, #g-pros, .outline-group {
  margin: 0rem auto 0;
  width: 90%;
  border-radius: 2.5rem;
  padding: 2.2rem;
}
#g-knowledge .group, #g-pros .group, .outline-group .group {
  position: relative;
  border: 0.4rem solid #583615;
  border-radius: 0.3rem;
  padding: 4.6rem 7.6%;
  background: url(../img/bg-3.png) 50%;
  background-size: 15rem;
}
#g-knowledge header h2, #g-pros header h2, .outline-group header h2 {
  margin-top: -1.6rem;
}

.outline-group {
  padding-bottom: 4rem;
}
.outline-group .group {
  padding: 2.6rem 4.6%;
}

#ENJ-feature-2 .group {
  padding: 0;
}
#ENJ-feature-2 .group .problem-list {
  width: 95%;
}

#ENJ-feature-3 .group, #ENJ-feature-4 .group {
  padding: 2.6rem 4.6%;
}

#g-knowledge {
  padding-top: 4rem;
}
#g-knowledge .group {
  padding: 1.7rem 0 4rem;
}
#g-knowledge picture {
  width: 56%;
  margin: 1.2rem auto;
  display: block;
}
#g-knowledge picture img {
  width: 100%;
}
#g-knowledge li {
  position: absolute;
  width: 14.3rem;
  text-shadow: 0 0 5rem #fff3d8, 0 0 5rem #fff3d8;
}
#g-knowledge li h3 {
  color: #e15300;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 2;
}
#g-knowledge li p {
  font-size: 1.1rem;
  line-height: 1.4;
}
#g-knowledge li small {
  font-size: 0.8rem;
  display: block;
  line-height: 1.4;
  margin-top: 0.3rem;
}
#g-knowledge li.d-1 {
  top: 4.5%;
  left: 1.5%;
}
#g-knowledge li.d-2 {
  top: 21%;
  left: 1.5%;
}
#g-knowledge li.d-3 {
  top: 53%;
  left: 1.5%;
}
#g-knowledge li.d-4 {
  top: 72%;
  left: 1.5%;
}
#g-knowledge li.d-5 {
  top: 4.5%;
  left: 80%;
}
#g-knowledge li.d-6 {
  top: 31%;
  left: 80%;
}
#g-knowledge li.d-7 {
  top: 53%;
  left: 80%;
}

#g-pros {
  padding-top: 4rem;
}
#g-pros .group {
  padding: 3rem 0;
}
#g-pros ol {
  display: flex;
  width: 84%;
  margin: 0.5rem auto;
}
#g-pros li {
  width: 33.3%;
}
#g-pros .img {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 1rem;
  position: relative;
  border: 0.2rem solid #000;
  border-radius: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-pros .img [class^=icon-pros-] {
  width: 9rem;
  height: 7rem;
  background: url(../img/icon-pros.svg?v2) no-repeat;
  background-size: 300%;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
#g-pros .img .icon-pros-1 {
  background-position: 0% 50%;
}
#g-pros .img .icon-pros-2 {
  background-position: 50% 50%;
}
#g-pros .img .icon-pros-3 {
  background-position: 100% 50%;
}
#g-pros .txt {
  text-align: center;
}
#g-pros .txt h3 {
  font-size: 1.4rem;
  line-height: 2;
  color: #e15300;
  font-weight: bold;
}
#g-pros .txt p {
  font-size: 1.1rem;
}

.g-hr {
  width: 72%;
  height: 1.6rem;
  background: url(../img/hr.png);
  background-size: 100%;
  display: block;
  border: 0;
  margin: 4rem auto;
}

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

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

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

#g-gotop {
  background: #000;
  width: 4.2rem;
  height: 4.2rem;
  cursor: pointer;
  transition: 0.2s;
  position: fixed;
  bottom: -5rem;
  border-radius: 50rem;
  right: 1rem;
  z-index: 7;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-gotop p {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
#g-gotop:hover {
  background: #df4080;
}
#g-gotop:hover p {
  color: #fff;
}
#g-gotop.active {
  bottom: 2rem;
}

#g-quick {
  position: fixed;
  top: 40%;
  right: 0;
  background: #df4080;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  box-shadow: inset 0 0 1rem #ffe1ee;
  text-align: center;
  transition: 0.4s;
  z-index: 5;
}
#g-quick a {
  display: block;
  padding: 0.5rem 0.5rem 1rem;
}
#g-quick .line {
  text-indent: -9999rem;
  width: 1px;
  height: 0.7rem;
  background: #fff;
  margin: 0.2rem auto 0;
  overflow: hidden;
}
#g-quick p {
  padding: 0.6rem;
}
#g-quick span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  transition: 0.4s;
}
#g-quick:hover {
  background: #ffe1ee;
}
#g-quick:hover .line {
  background: #000;
}
#g-quick:hover span {
  color: #000;
}

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

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

  html {
    font-size: 3vw;
  }

  body {
    overflow-x: hidden;
    background: #faf8dc;
  }

  .g-section header h2 {
    font-size: 3rem;
    letter-spacing: 0;
  }
  .g-section header h2 p {
    padding: 0 1rem;
  }
  .g-section header h2 span[class^=color-] {
    text-shadow: -1px -1px 0px #000;
  }
  .g-section header h2 span[class^=color-]::before {
    display: none;
  }

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

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

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

  #g-kv {
    height: 50rem;
    overflow: hidden;
    background-image: url(../img/bg-kv-m.png);
  }
  #g-kv .bg-shine {
    animation: kv_bg_change 0.4s forwards infinite;
  }
  @keyframes kv_bg_change {
    0%, 50% {
      background-image: url(../img/bg-kv-shine-01-m.png);
    }
    51%, 100% {
      background-image: url(../img/bg-kv-shine-02-m.png);
    }
  }
  #g-kv #g-logo {
    width: 7rem;
    left: 6%;
    top: 2.2%;
  }
  #g-kv header {
    width: 100%;
    margin: 1rem 0;
  }
  #g-kv header p {
    font-size: 1.8rem;
  }
  #g-kv header p b {
    width: 2.2rem;
    height: 2.2rem;
  }
  #g-kv time {
    width: 11rem;
    height: 7rem;
    margin-left: 28%;
  }
  #g-kv h1 {
    width: 25.4rem;
    height: 10.8rem;
  }
  #g-kv .deco-gift-1 {
    width: 10.5rem;
    height: 18rem;
    top: 54.5%;
    left: 4.1%;
  }
  #g-kv .deco-gift-2 {
    width: 17.8rem;
    height: 17rem;
    top: 55.4%;
    left: 27.8%;
  }
  #g-kv .deco-gift-2:before {
    transform: rotate(10deg);
  }
  #g-kv .deco-gift-3 {
    width: 9rem;
    height: 17rem;
    top: 76.6%;
    left: 67.9%;
  }

  #g-nav {
    padding-top: 1rem;
    background: #faf8dc;
  }
  #g-nav .group {
    width: 100%;
    padding-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  #g-nav ol {
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  #g-nav li {
    width: 48.5%;
    padding: 0;
    border: 0.2rem solid #583615;
    border-radius: 0.3rem;
    margin-bottom: 0.8rem;
    background: #f0cf00;
  }
  #g-nav li::after {
    display: none;
  }
  #g-nav li span {
    width: 100%;
  }
  #g-nav a {
    padding: 0rem 0;
    font-size: 1.7rem;
  }
  #g-nav.is-sticky .group {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .text-nav-3 {
    width: 100%;
  }

  #g-event {
    overflow: hidden;
    margin-top: 0;
  }
  #g-event .deco-gift-1 {
    top: 3.1rem;
    left: 81.6%;
    width: 6.5rem;
    height: 6.5rem;
  }
  #g-event .deco-gift-2 {
    top: 22.3rem;
    left: 58.6%;
    width: 12.4rem;
    height: 12.4rem;
  }
  #g-event .deco-gift-3 {
    top: 20.5rem;
    left: -1.6%;
    width: 6.3rem;
    height: 6.3rem;
  }
  #g-event .group {
    width: 94%;
    padding: 1rem;
  }
  #g-event header p {
    font-size: 1.2rem;
  }
  #g-event header p:last-child {
    text-align: left;
    padding-top: 4rem;
    padding-left: 0.7rem;
  }
  #g-event .rule {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }
  #g-event .rule dt {
    width: 60%;
    margin: 2rem auto 1rem;
  }
  #g-event .rule dd {
    width: 100%;
    text-align: center;
    padding-left: 0;
    font-size: 1.1rem;
  }
  #g-event .rule dd:nth-of-type(1) {
    padding-top: 0;
  }
  #g-event .rule.is-center dt h4 {
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #g-event .gift {
    font-size: 1.4rem;
  }
  #g-event .gift p {
    white-space: nowrap;
  }
  #g-event .gift small {
    font-size: 80%;
  }
  #g-event .table-wrap th, #g-event .table-wrap td {
    padding: 0.4rem;
  }
  #g-event .table-wrap th p, #g-event .table-wrap td p {
    font-size: 1.3rem;
  }
  #g-event .table-wrap thead th:first-child {
    width: 67%;
  }
  #g-event .table-wrap thead th:last-child {
    width: 33%;
  }

  .list-no, .list-dot {
    text-align: justify;
  }

  #event-rule {
    padding-bottom: 4rem;
  }
  #event-rule.active #event-rule-a {
    max-height: 250rem;
  }

  #event-rule-a {
    width: 100%;
  }

  #event-rule-q i.icon-arrow-down {
    right: 0;
  }

  [class^=text-h2-] {
    height: 4.5rem;
    position: relative;
  }

  #g-plus .group {
    width: 94%;
  }
  #g-plus dt {
    width: 100%;
    font-size: 1.4rem;
    padding: 0;
    padding-top: 0.2rem;
    height: 3rem;
    text-align: left;
    padding-left: 1.5rem;
  }
  #g-plus dt:nth-of-type(2) {
    padding-top: 0.2rem;
    padding-bottom: 0;
    padding-left: 1.5rem;
    margin-top: 2rem;
  }
  #g-plus dt b {
    width: 2.6rem;
    height: 2.6rem;
    text-align: center;
    margin-right: 0.5rem;
  }
  #g-plus dd {
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 0;
  }
  #g-plus dd:nth-of-type(1) {
    padding-top: 0;
    text-align: left;
  }
  #g-plus .deco-gift-4 {
    width: 17rem;
    height: 12rem;
    top: -8.5%;
    left: 47%;
  }

  [class^=text-btn-] {
    width: 10.5rem;
    height: 1.5rem;
  }

  [class*=g-bt-] {
    width: 100%;
    transform: scale(0.95);
    font-size: 1.9rem;
    letter-spacing: 0;
  }

  [class^=text-h2-] {
    height: 3.5rem;
  }

  .text-event-h2-1 {
    width: 62%;
    height: 3.5rem;
    background-position: 100% 0;
    margin: 4rem auto 0;
    position: relative;
  }
  .text-event-h2-1::before {
    content: "";
    width: 14rem;
    height: 3.5rem;
    background: url("../img/text-event-h2-1.png");
    background-size: auto 100%;
    background-position: 0 0;
    position: absolute;
    bottom: 100%;
    left: 12%;
  }

  .text-event-h2-2 {
    height: 3.5rem;
  }

  .text-h2-1, .text-h2-11 {
    height: 2.5rem;
  }

  .text-h2-5 {
    background-size: 96% 100%;
  }

  .text-h2-6 {
    background-size: 96% 100%;
  }

  #g-product {
    background-size: 100% 21rem;
  }

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

  #g-knowledge, #g-pros, .outline-group {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

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

  #product-ENJ header .text-desc-4 {
    width: 24.7rem;
    height: 1.8rem;
  }
  #product-ENJ header p {
    padding: 1rem 1.5rem;
  }
  #product-ENJ header p span {
    letter-spacing: 0.1rem;
    font-size: 2.2rem;
  }
  #product-ENJ .product-img {
    margin: 4rem auto 0rem;
  }
  #product-ENJ .product-img img {
    margin-left: -20%;
  }
  #product-ENJ .product-img::after {
    width: 11.3rem;
    height: 12rem;
    top: 10.4%;
    left: 64%;
  }
  #product-ENJ .guarantee img {
    width: 65%;
    margin-bottom: -4rem;
  }
  #product-ENJ .guarantee .txt {
    width: 100%;
  }

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

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

  #g-pros ol {
    width: 80%;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  #g-pros ol li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  #g-pros ol li:last-child {
    margin-bottom: 0;
  }
  #g-pros .img {
    margin-bottom: 0;
    width: 8rem;
    height: 8rem;
  }
  #g-pros .txt {
    width: calc(100% - 8rem);
  }

  .badge-japan-pride .txt h3 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
  }
  .badge-japan-pride .txt p {
    font-size: 1.15rem;
  }

  .feature-a-list {
    width: 100%;
    padding: 2.5rem 0 2.5rem 0;
  }
  .feature-a-list .group {
    width: 94%;
    padding: 2.5rem 2rem 2.5rem 1rem;
  }
  .feature-a-list .img {
    width: 5rem;
  }
  .feature-a-list .txt {
    width: calc(100% - 5rem);
  }

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

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

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

  .product-page {
    padding-bottom: 5rem;
  }
  .product-page .btns {
    width: 96%;
    margin: 0 auto;
  }
  .product-page .btns a {
    margin: 0;
  }

  .guarantee {
    margin-top: 2rem;
  }
  .guarantee .group {
    display: block;
  }
  .guarantee img {
    width: 65%;
    margin: -5rem auto 0;
  }
  .guarantee .txt {
    width: 100%;
    height: auto;
  }
  .guarantee .txt h4 {
    font-size: 2.1rem;
  }
  .guarantee .txt p {
    font-size: 1.8rem;
  }
  .guarantee .txt small {
    font-size: 1.5rem;
  }

  #g-quick {
    top: auto;
    bottom: 8rem;
  }
}