@charset "UTF-8";
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: "Alte DIN 1451 Mittelschrift";
  src: url("../font/AlteDIN1451Mittelschrift.eot");
  src: url("../font/AlteDIN1451Mittelschrift.eot?#iefix") format("embedded-opentype"), url("../font/AlteDIN1451Mittelschrift.woff2") format("woff2"), url("../font/AlteDIN1451Mittelschrift.woff") format("woff"), url("../font/AlteDIN1451Mittelschrift.ttf") format("truetype");
  font-weight: normal !important;
  font-style: normal !important;
}
/*Mixin*/
/*Reset*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

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

.hide {
  display: none;
}

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

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

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

*:focus {
  outline: none;
}

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

a:hover {
  color: #cc161d;
}

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

html {
  font-size: 1.5vw;
}

html, body {
  overflow-x: hidden;
}

body {
  font-size: 0.72rem;
  line-height: 1.7;
  color: #333;
  font-family: 微軟正黑體, Arial;
  overflow-x: hidden;
  text-align: center;
}
body.lock {
  overflow: hidden;
}

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

.is-m {
  display: none;
}

.is-pc {
  display: inline-block;
}

/*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;
}

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

.color-blue {
  color: #444e54;
}

.color-pink {
  color: #ff4e8a;
}

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

.color-yellow {
  color: orange;
}

.g-bt-1 {
  width: 100%;
  max-width: 210px;
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  transform: scale(1);
  transition: 0.5s;
  background: url(../img/btn.png);
  background-size: 100% 100%;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  line-height: 1.8;
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  border-radius: 50px;
  font-family: 微軟正黑體;
  cursor: pointer;
}
.g-bt-1: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%;
  }
}
.g-bt-1:after {
  content: "";
  width: 9px;
  height: 15px;
  background: url(../img/arrow.png);
  position: absolute;
  top: 50%;
  right: 25%;
  margin-top: -7px;
  animation: arrow-right 0.5s infinite alternate;
}
@keyframes arrow-right {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.g-bt-1 span {
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: block;
}
.g-bt-1:hover {
  color: #fff;
  transform: scale(1.1);
}

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

.owl-carousel.owl-drag .owl-item {
  touch-action: auto;
}

.owl-btn-prev,
.owl-btn-next {
  width: 65px;
  height: 65px;
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid #d39f26;
  position: absolute;
  top: 47%;
  z-index: 1;
  cursor: pointer;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.4s;
  text-indent: -9999px;
}

.owl-btn-prev {
  left: -4%;
  background-image: url(../img/if_back_000.svg);
}
.owl-btn-prev:hover {
  transform: translateX(-10px);
  background-color: #d39f26;
  background-image: url(../img/if_back_fff.svg);
}

.owl-btn-next {
  right: -4%;
  background-image: url(../img/if_forward_000.svg);
}
.owl-btn-next:hover {
  transform: translateX(10px);
  background-color: #d39f26;
  background-image: url(../img/if_forward_fff.svg);
}

#video-btn-prev, #video-btn-next {
  top: 300px;
}

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 10px;
}
.owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background-color: #cc161d;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #FFF;
  text-decoration: none;
}
.owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-nav.disabled + .owl-dots {
  margin-top: 17px;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 15px;
  background-color: #cc161d;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 50%;
  transition: 0.2s;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #fff;
}

#g-wrap {
  position: relative;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  background: url(../img/bg-pc.jpg?v1) no-repeat center top #fff;
  background-size: 100%;
}
#g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
.g-section header {
  text-align: center;
}
.g-section header h2 {
  font-size: 30px;
  font-weight: bold;
}
#kv {
  position: relative;
  margin: 0 auto;
}
#kv #g-logo {
  position: absolute;
  left: 9%;
  top: 2.7%;
  width: 9.7rem;
  z-index: 2;
}
#kv header {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding-bottom: 68%;
}
#kv header:before {
  content: "";
  width: 11.8%;
  padding-bottom: 2.9%;
  top: 6.2%;
  left: 36%;
  background: url(../img/t1-arrow.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
}
#kv header h1 {
  background: url(../img/t1.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  width: 54.5%;
  height: 0;
  padding-bottom: 7.2%;
  top: 7%;
  left: 22.7%;
  text-indent: -9999px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: 1s;
  transition-delay: 0.5s;
}
#kv header h1:before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 108%;
  background: url(../img/t1-shine.svg) no-repeat center top;
  background-size: 100%;
}
#kv .benefit {
  background: url(../img/t2.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  width: 45.9%;
  height: 0;
  padding-bottom: 15.7%;
  top: 19.4%;
  left: 27%;
  text-indent: -9999px;
  transform: scale(0);
  transition: 1s;
  transition-delay: 1s;
}
#kv .cars {
  position: absolute;
  top: 47%;
  left: 16.5%;
  width: 67%;
  display: flex;
}
#kv .cars li {
  padding-bottom: 20%;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
#kv .cars li:nth-of-type(1) {
  width: 37%;
}
#kv .cars li:nth-of-type(2) {
  width: 35%;
}
#kv .cars li:nth-of-type(3) {
  width: 28%;
}
#kv .cars li:nth-of-type(1) {
  transition-delay: 1.7s;
}
#kv .cars li:nth-of-type(2) {
  transition-delay: 1.9s;
}
#kv .cars li:nth-of-type(3) {
  transition-delay: 2.1s;
}
#kv .cars [class^=logo-] {
  width: 13rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin: 0 auto;
  display: block;
}
#kv .cars .logo-sport {
  background-image: url(../img/logo-sport.png);
}
#kv .cars .logo-cross {
  background-image: url(../img/logo-cross.png);
}
#kv .cars .logo-altis {
  background-image: url(../img/logo-altis.png);
}
#kv .cars a span {
  font-size: 1rem;
  font-weight: bold;
  transform: skew(-10deg);
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}
#kv .cars a .icon-arrow {
  width: 1.2rem;
  height: 1.2rem;
  border: 0.1rem solid #fff;
  background: url(../img/if_forward_bold_fff.svg) no-repeat center;
  background-size: 70%;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin-left: 0.2rem;
  transition: 0.2s;
}
#kv .cars a:hover span {
  color: #ffeab9;
}
#kv .cars a:hover .icon-arrow {
  transform: translateX(10%);
}
#kv .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transition-delay: 1.8s;
  position: absolute;
  top: 88.2%;
  left: 0;
  width: 100%;
}
#kv .btns a {
  background: linear-gradient(35deg, #e10019, #ff6969, #ff3e3e);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
  padding: 0.28rem 4rem;
  overflow: hidden;
  border-radius: 0.2rem;
  display: block;
  position: relative;
  margin: 0 0.8rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#kv .btns a span {
  font-weight: bold;
  position: relative;
  z-index: 1;
}
#kv .btns a i.icon-arrow {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  z-index: 1;
  background: url(../img/if_forward_bold_fff.svg) no-repeat center;
  background-size: 100%;
}
#kv .btns a:after {
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(to top, #000, #666);
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
#kv .btns a:hover span {
  color: #fff;
}
#kv .btns a:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}
#kv.is-animate header h1 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#kv.is-animate .benefit {
  transform: scale(1);
}
#kv.is-animate .cars li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
#kv.is-animate .btns {
  opacity: 1;
  visibility: visible;
}

#more-car {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 13% 0 0 8%;
  width: 81.5%;
}
#more-car li {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ccc, #000 40%);
  border-radius: 50rem;
}
#more-car li a {
  display: block;
  color: #fff;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
#more-car li a u {
  text-decoration: none;
}
#more-car li:hover a {
  color: #000;
}
#more-car li:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}
#more-car li:hover span:after {
  background-image: url(../img/if_forward_bold_000.svg);
}
#more-car li:before {
  content: "";
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 234, 185, 0) 0%, #ffeab9 40%, #ffeab9 60%, rgba(255, 234, 185, 0) 100%);
  display: block;
  position: absolute;
  bottom: 0;
  right: 0%;
  z-index: 1;
}
#more-car li:after {
  content: "";
  width: 0;
  height: 100%;
  background: #ffeab9;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
#more-car li span {
  font-weight: bold;
  display: block;
  font-size: 0.55rem;
  position: relative;
  padding: 0.15rem 0.9rem;
}
#more-car li span:after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: url(../img/if_forward_bold_fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  margin-left: 0.2rem;
  margin-right: -0.2rem;
}

.g-nav ol {
  display: flex;
  justify-content: center;
  align-items: center;
}
.g-nav ol li {
  margin: 0 1%;
}

#g-feature {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 964px;
  position: relative;
  left: 50%;
  margin-left: -482px;
}
#g-feature header h2 {
  font-size: 70px;
  font-weight: bold;
  font-family: "Noto Sans TC", sans-serif;
}
#g-feature header h2 img {
  max-width: 69%;
  width: auto;
  margin: 0 auto;
}
#g-feature .owl-item {
  opacity: 0;
  transition: 1s;
  transform: scale(0.9);
}
#g-feature .owl-item.active {
  opacity: 1;
  transform: scale(1);
}

#fea-nav {
  width: 100%;
  position: relative;
}
#fea-nav ol {
  width: 98%;
  margin: 0 auto;
  display: flex;
}
#fea-nav ol li {
  flex: 1;
  background-color: #7a5c54;
  border-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.2s;
  margin-left: 2px;
  margin-right: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fea-nav ol li a {
  color: #fff;
  font-size: 0.8rem;
  display: block;
  padding: 0.3rem 0;
}
#fea-nav ol li a p {
  display: inline-block;
  vertical-align: middle;
}
#fea-nav ol li a p span {
  display: block;
  line-height: 1;
  font-size: 14px;
}
#fea-nav ol li a p.hide {
  display: none;
}
#fea-nav ol li a [class^=icon-], #fea-nav ol li a i {
  background: url(../img/pd-nav.png?v2);
  background-size: 1127%;
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  font-style: normal;
}
#fea-nav ol li a [class^=icon-].icon-about, #fea-nav ol li a i.icon-about {
  width: 120px;
  background-position: 0 -2px;
  background-size: 340%;
}
#fea-nav ol li a [class^=icon-].icon-tech, #fea-nav ol li a i.icon-tech {
  background-position: -130px 0;
}
#fea-nav ol li a [class^=icon-].icon-program, #fea-nav ol li a i.icon-program {
  background-position: -176px 0;
}
#fea-nav ol li a [class^=icon-].icon-acupoint, #fea-nav ol li a i.icon-acupoint {
  background-position: -222px 0;
}
#fea-nav ol li a [class^=icon-].icon-design, #fea-nav ol li a i.icon-design {
  background-position: -268px 0;
}
#fea-nav ol li a i.no-icon {
  width: auto;
  height: auto;
  background: none;
  color: #fef6a0;
}
#fea-nav ol li:hover {
  background-color: #403732;
}
#fea-nav ol li.active, #fea-nav ol li:hover.active {
  background: linear-gradient(to bottom, #8a7770, #403732);
}

#fea-infos {
  border: 2px solid #be8f29;
  background: #ddd;
  border-radius: 7px;
  overflow: hidden;
}

#feature-about {
  background-image: url(../img/pd-detail-1.jpg?v1);
}

#feature-tech {
  background-image: url(../img/pd-detail-2.jpg?v1);
}

#feature-program {
  background-image: url(../img/pd-detail-3.jpg?v1);
}

#feature-acupoint {
  background-image: url(../img/pd-detail-4.jpg?v1);
}

#feature-design {
  background-image: url(../img/pd-detail-5.jpg?v1);
}

.fea-info {
  width: 100%;
  height: 0;
  padding-bottom: 62.6%;
  background-size: 100%;
}

#g-video {
  width: 75%;
  border: 2px solid #fff;
  box-shadow: 1vw 1vw 1vw rgba(0, 0, 0, 0.2);
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  margin: 2% auto 6%;
}

.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:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/video.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.5s;
}
.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: -50px 0 0 -50px;
  z-index: 2;
}
.video-wrap p {
  font-size: 15px;
}
.video-wrap.is-active .img {
  opacity: 0;
  visibility: hidden;
}
.video-wrap:hover .img:after {
  transform: scale(1.1);
}
.video-wrap:hover .img:before {
  opacity: 0;
}
.video-wrap:hover .video-btn-play:before {
  border: 60px 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 orange;
}

.video-btn-play {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  text-indent: -9999px;
}
.video-btn-play:before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  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: 30px 0 30px 45px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}

#g-qna {
  width: 90%;
  max-width: 960px;
  margin: 2.3rem auto 0;
}
#g-qna header {
  margin-bottom: 2%;
}
#g-qna header p {
  width: 42%;
  height: 0;
  padding-bottom: 14%;
  background: url(../img/qa-title.png) no-repeat center top;
  background-size: 100%;
  text-indent: -9999px;
  margin: 0 auto -8%;
}
#g-qna header h2 {
  font-size: 2.7rem;
  letter-spacing: 0.3rem;
  color: #fff;
}

.tab-content {
  position: fixed;
  top: 100%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
  margin-bottom: 3rem;
}
.tab-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2%;
  color: #fff;
}
.tab-content.active {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.qa-list {
  width: 100%;
}
.qa-list li {
  margin-bottom: 1.7%;
}
.qa-list li.active .q {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.qa-list li.active .q:before {
  transform: rotate(180deg) translateY(-50%);
}
.qa-list li.active .a {
  max-height: 1000px;
  padding: 20px 30px;
  opacity: 1;
}
.qa-list .q {
  display: flex;
  justify-content: flex-start;
  font-size: 20px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  padding-left: 3%;
  padding-right: 15%;
  position: relative;
  text-align: left;
  line-height: 1.2;
  background-color: #483e39;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.qa-list .q:hover {
  background-color: #594f4a;
}
.qa-list .q .label {
  font-family: "Alte DIN 1451 Mittelschrift", sans-serif;
  font-size: 30px;
  line-height: 0.9;
  width: 50px;
}
.qa-list .q:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1%;
  width: 70px;
  height: 70px;
  background: url(../img/if_down_fff.svg) no-repeat center;
  background-size: 50%;
  transform: rotate(0deg) translateY(-50%);
  transform-origin: 50% 0;
}
.qa-list .a {
  background-color: #7a5c54;
  color: #fff;
  text-align: left;
  padding: 20px 30px;
  padding: 0 30px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s;
}
.qa-list .a a {
  text-decoration: underline;
  color: #fff;
}
.qa-list .a img {
  margin: 3% auto;
  display: block;
}

#rule {
  text-align: left;
  color: #000;
  width: 76%;
  margin: 0 auto;
  padding: 0rem 4rem 0.5rem 1.5rem;
  line-height: 2.2;
}
#rule header {
  text-align: left;
}
#rule ol.list-dot {
  padding-left: 2rem;
}
#rule ol.list-dot > li {
  list-style-type: disc;
}
#rule ol.list-r {
  padding-left: 2rem;
}
#rule ol.list-r > li {
  position: relative;
  margin-bottom: 2%;
}
#rule ol.list-r > li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: -20px;
}
#rule a {
  word-break: break-all;
  text-decoration: underline;
  color: #000;
}

#g-footer {
  clear: both;
  font-weight: bold;
  letter-spacing: 2px;
  width: 100%;
  margin-top: 60px;
  font-size: 15px;
  background: #000;
  color: #fff;
  padding: 1rem 0;
}
#g-footer p.note {
  letter-spacing: 0;
  margin: 20px;
}

#g-quick {
  width: 3.7vw;
  background: linear-gradient(to right, #871924, #670a14);
  background-size: 100%;
  position: fixed;
  top: 50%;
  right: 0;
  overflow: hidden;
  transform: skewY(10deg) translateY(-50%);
  display: block;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
#g-quick.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#g-quick: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;
  pointer-events: none;
}
#g-quick a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 2vw 0;
}
#g-quick a:hover {
  color: #fff;
}
#g-quick a div {
  transform: skewY(-10deg);
}
#g-quick span {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  line-height: 1.1;
}
#g-quick span u {
  font-size: 2.2rem;
  text-decoration: none;
  font-family: "Alte DIN 1451 Mittelschrift";
  transform: skewX(-10deg);
  display: inline-block;
}
#g-quick span.icon-space {
  height: 0.5rem;
}
#g-quick span.icon-dash {
  text-indent: -9999px;
  width: 38%;
  height: 2px;
  background: #fff;
  display: block;
  margin: 1rem auto;
}
#g-quick .icon-arrow {
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/icon-double-arrow.svg?v2) no-repeat center top;
  background-size: 100%;
  display: block;
  margin: 1rem 0 0 0.7rem;
  transform: rotate(-90deg);
}

@media screen and (max-width: 990px) {
  html {
    font-size: 4vw;
  }

  #g-wrap {
    background: url(../img/bg-m.jpg) no-repeat center top #fff;
    background-size: 100%;
  }

  #kv {
    width: 100%;
  }
  #kv #g-logo {
    width: 29%;
    margin-left: 0;
    top: 1%;
    left: 4%;
  }
  #kv header {
    padding-bottom: 213%;
  }
  #kv header:before {
    width: 27.3%;
    padding-bottom: 5.8%;
    top: 5.7%;
    left: 40%;
  }
  #kv header h1 {
    background-image: url(../img/t1-m.png);
    width: 79%;
    padding-bottom: 24.2%;
    top: 6.5%;
    left: 10.8%;
  }
  #kv header h1:before {
    top: 39.3%;
    left: -36%;
    width: 136%;
    height: 108%;
  }
  #kv .benefit {
    width: 90.7%;
    padding-bottom: 30.7%;
    top: 19%;
    left: 5%;
  }
  #kv .cars {
    top: 42%;
    left: 0;
    width: 100%;
    display: block;
  }
  #kv .cars li {
    padding-bottom: 14%;
  }
  #kv .cars li:nth-of-type(1), #kv .cars li:nth-of-type(2), #kv .cars li:nth-of-type(3) {
    width: 100%;
  }
  #kv .cars li:nth-of-type(1), #kv .cars li:nth-of-type(3) {
    padding-left: 50%;
  }
  #kv .cars li:nth-of-type(2) {
    padding-right: 50%;
  }
  #kv .cars [class^=logo-] {
    width: 9rem;
    height: 3rem;
  }
  #kv .btns {
    display: block;
    width: 90%;
    top: 90%;
    left: 5%;
  }
  #kv .btns a {
    width: 100%;
    margin: 3% 0;
  }

  .is-m {
    display: block !important;
  }

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

  #g-video {
    width: 100%;
    margin: 6% auto 5%;
    border: 0;
    border-radius: 0;
  }

  #rule {
    width: 90%;
    padding: 2rem 0rem 2rem 0;
  }
  #rule ol.list-dot {
    padding-left: 0;
  }
  #rule ol.list-r {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #g-footer {
    letter-spacing: 0;
    padding: 20px 0;
    margin: 0;
  }
}
@media screen and (max-width: 321px) {
  #g-footer {
    font-size: 12px;
  }
}