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

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

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

*:focus {
  outline: none;
}

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

a:hover {
  color: #485a00;
}

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

html {
  font-size: 1.25vw;
  overflow-x: hidden;
}

body {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  font-family: "toyota_type", "Noto Sans TC", Arial;
  background: url(../img/bg-2.webp);
  background-size: 100% 100%;
  text-align: left;
}
body.lock {
  overflow: hidden;
}

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

.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: 1px solid #ccc;
  width: 100%;
  background: rgba(145, 47, 50, 0.1);
  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: rgba(145, 47, 50, 0.2);
}
.g-form > ul > li select {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  width: 100%;
  background: url(../img/icon-arrow-down-000.svg) no-repeat calc(100% - 1rem) 50% rgba(145, 47, 50, 0.1);
  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: rgba(145, 47, 50, 0.2);
}
.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: 1rem;
  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: 0;
  background: #fff;
  color: #912f32;
  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: rgba(145, 47, 50, 0.2);
}
.g-form > ul > li input[type=checkbox] + label:before {
  background-image: none;
  border: 1px solid #ccc;
  background-color: rgba(145, 47, 50, 0.1);
}
.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 #ccc;
  background: #fff;
  color: #912f32;
  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: rgba(145, 47, 50, 0.2);
}
.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: #912f32;
  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-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-red {
  color: #912f32;
}

.color-blue {
  color: #2168a6;
}

.color-pink {
  color: #ff4e8a;
}

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

.color-yellow {
  color: orange;
}

.color-brown {
  color: #d4b887;
}

[class*=g-bt-] {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
  transition: 0.5s;
  background: transparent;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 0.4rem;
  letter-spacing: 0.2rem;
  font-family: "toyota_type", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  cursor: pointer;
}
[class*=g-bt-]::before {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  bottom: -0.2rem;
  left: -0.2rem;
  border-radius: 0.5rem;
}
[class*=g-bt-] div {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(to bottom, #e21d1e, #991616);
  border-radius: 0.4rem;
  padding: 0.4rem 1.4rem 0.6rem;
}
[class*=g-bt-] div.is-2-row {
  line-height: 1.3;
  padding: 0.2rem 2.5rem;
}
[class*=g-bt-] div.is-2-row span {
  line-height: 1;
}
[class*=g-bt-] div.is-2-row small {
  line-height: 1;
}
[class*=g-bt-] div:after {
  content: "";
  width: 200%;
  height: 6rem;
  position: absolute;
  top: 45%;
  left: -50%;
  background: linear-gradient(to bottom, black 0%, rgba(255, 255, 255, 0) 20%);
  border-radius: 40%;
  box-shadow: 0 0 1rem white;
  mix-blend-mode: overlay;
  transition: 0.4s;
  z-index: 1;
}
[class*=g-bt-] span {
  position: relative;
}
[class*=g-bt-] small {
  display: block;
}
[class*=g-bt-] i {
  width: 0.8rem;
  height: 0.8rem;
  margin-right: -0.5rem;
  margin-left: 0.2rem;
  background: url(../img/if_forward_fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  animation: arrow_shine 0.2s infinite alternate;
}
[class*=g-bt-]:hover {
  color: #fff;
}
[class*=g-bt-]:hover div:after {
  top: 60%;
}

.g-bt-2 div {
  background: linear-gradient(to bottom, #596538, #2a3213);
}

.text-gradient-1 {
  color: #605c5c;
  background: linear-gradient(to bottom, #666, #222);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-2 {
  position: relative;
  text-indent: -9999rem;
  font-size: 3.8rem;
  display: block;
  line-height: 1;
}
.text-gradient-2:before, .text-gradient-2:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  text-indent: 0;
  padding: 0 1rem;
  letter-spacing: 0.1rem;
}
.text-gradient-2:before {
  color: #fef7c6;
  background: #fff;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.2rem transparent;
  filter: drop-shadow(0.1rem 0.15rem 0 #000);
}
.text-gradient-2:after {
  background: linear-gradient(135deg, #9d6c31 20%, #e9d38d, #c28b46 50%, #fff1a9 70%, #9b6724 80%);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s;
  text-align: center;
  color: #fff;
}

[class^=icon-star-] {
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-star.webp) center;
  background-size: 100%;
  position: absolute;
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: icon_star_scale 0.5s linear infinite alternate;
}
@keyframes icon_star_scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.5);
  }
}
[class^=icon-star-]:nth-child(1) {
  animation-delay: 0.2s;
}
[class^=icon-star-]:nth-child(2) {
  animation-delay: 0.4s;
}
[class^=icon-star-]:nth-child(3) {
  animation-delay: 0.6s;
}
[class^=icon-star-]:nth-child(4) {
  animation-delay: 0.8s;
}

.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;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
}
.msg-box .msg-wrap {
  background: #fff;
  width: 60%;
  max-height: 90%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  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(145, 47, 50, 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.8rem;
  font-weight: bold;
  text-align: center;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background-color: #000;
  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: #912f32;
  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;
}

#g-wrap {
  width: 100%;
  position: relative;
  margin: 0 auto;
  position: relative;
}
#g-wrap #bg-spots {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  object-fit: cover;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}
#g-wrap img {
  max-width: 100%;
  margin: 0 auto;
}

.g-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.g-section header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  transition: 1s;
}
.g-center-contain {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  border: 1px solid transparent;
  position: relative;
}

#g-logo {
  display: block;
  position: absolute;
  top: 3.4%;
  left: 10.6%;
  width: 11.1%;
  z-index: 1;
}
#g-logo img {
  width: 100%;
}

#g-quick {
  position: fixed;
  top: 30%;
  right: 0.5rem;
  z-index: 10;
}
#g-quick .g-bt-3 {
  transition: 0.2s;
}
#g-quick .g-bt-3 div {
  background: linear-gradient(to bottom, #dca852, #b57521, #dbab51, #dcb066, #a45f2f);
  font-size: 1.2rem;
  border: 0.15rem solid #fff;
  border-radius: 50rem;
  padding: 1.5rem 0.2rem;
}
#g-quick .g-bt-3:hover {
  filter: brightness(110%);
}
#g-quick span {
  writing-mode: vertical-lr;
  color: #fff;
}
#g-quick i {
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.3rem 0 0.3rem;
  border-color: #fff transparent transparent transparent;
}

.logo-LC {
  background: url(../img/logo-LC.svg) no-repeat;
  background-size: 100%;
  display: block;
  text-indent: -9999rem;
}

#g-kv {
  height: 50rem;
}
#g-kv .kv-grasses-1 {
  width: 60%;
  height: 2rem;
  top: 48%;
  left: 40%;
  position: absolute;
}
#g-kv .kv-grasses-1 i {
  width: 0.2rem;
  height: 3rem;
  background: linear-gradient(to bottom, #d4b887, #485a00 90%, rgba(72, 90, 0, 0));
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  transform-origin: 50% 100%;
  animation: grass_swing 1s ease-in-out infinite alternate;
}
@keyframes grass_swing {
  0% {
    transform: skewX(-10deg);
  }
  100% {
    transform: skewX(10deg);
  }
}
#g-kv .kv-grasses-1 i:nth-child(3n) {
  width: 0.3rem;
  height: 5rem;
}
#g-kv .kv-grasses-1 i:nth-of-type(1) {
  left: 85.5009299733%;
  top: 4.6629400917%;
  animation-delay: -0.2s;
}
#g-kv .kv-grasses-1 i:nth-of-type(2) {
  left: 50.77446393%;
  top: 6.3039363778%;
  animation-delay: -0.4s;
}
#g-kv .kv-grasses-1 i:nth-of-type(3) {
  left: 31.2992251455%;
  top: 36.0195690859%;
  animation-delay: -0.6s;
}
#g-kv .kv-grasses-1 i:nth-of-type(4) {
  left: 7.3237944123%;
  top: 1.9337566156%;
  animation-delay: -0.8s;
}
#g-kv .kv-grasses-1 i:nth-of-type(5) {
  left: 44.7356749441%;
  top: 48.4209377474%;
  animation-delay: -1s;
}
#g-kv .kv-grasses-1 i:nth-of-type(6) {
  left: 41.8353474233%;
  top: 59.6037956644%;
  animation-delay: -1.2s;
}
#g-kv .kv-grasses-1 i:nth-of-type(7) {
  left: 79.1508443911%;
  top: 15.4771421168%;
  animation-delay: -1.4s;
}
#g-kv .kv-grasses-1 i:nth-of-type(8) {
  left: 64.1656051657%;
  top: 16.0490612003%;
  animation-delay: -1.6s;
}
#g-kv .kv-grasses-1 i:nth-of-type(9) {
  left: 34.0091890621%;
  top: 26.2787502527%;
  animation-delay: -1.8s;
}
#g-kv .kv-grasses-1 i:nth-of-type(10) {
  left: 56.5488778387%;
  top: 12.9758482662%;
  animation-delay: -2s;
}
#g-kv .kv-grasses-1 i:nth-of-type(11) {
  left: 76.9486173962%;
  top: 32.3933645057%;
  animation-delay: -2.2s;
}
#g-kv .kv-grasses-1 i:nth-of-type(12) {
  left: 71.0442532821%;
  top: 58.0989361547%;
  animation-delay: -2.4s;
}
#g-kv .kv-grasses-1 i:nth-of-type(13) {
  left: 25.8598219733%;
  top: 57.4703544122%;
  animation-delay: -2.6s;
}
#g-kv .kv-grasses-1 i:nth-of-type(14) {
  left: 54.8739745021%;
  top: 54.1344480662%;
  animation-delay: -2.8s;
}
#g-kv .kv-grasses-1 i:nth-of-type(15) {
  left: 77.6927515182%;
  top: 50.8701957537%;
  animation-delay: -3s;
}
#g-kv .kv-grasses-1 i:nth-of-type(16) {
  left: 95.6795636187%;
  top: 19.4413277028%;
  animation-delay: -3.2s;
}
#g-kv .kv-grasses-1 i:nth-of-type(17) {
  left: 25.9537534405%;
  top: 4.4678856141%;
  animation-delay: -3.4s;
}
#g-kv .kv-grasses-1 i:nth-of-type(18) {
  left: 93.8920669087%;
  top: 10.2404980468%;
  animation-delay: -3.6s;
}
#g-kv .kv-grasses-1 i:nth-of-type(19) {
  left: 1.8774067616%;
  top: 42.1394134468%;
  animation-delay: -3.8s;
}
#g-kv .kv-grasses-1 i:nth-of-type(20) {
  left: 53.7804634757%;
  top: 45.1545539153%;
  animation-delay: -4s;
}
#g-kv .kv-grasses-2 {
  width: 40%;
  height: 10rem;
  top: 40%;
  left: 0%;
  position: absolute;
  filter: blur(0.3rem);
}
#g-kv .kv-grasses-2 i {
  width: 2rem;
  height: 15rem;
  background: linear-gradient(to bottom, #d4b887, #2a3213 90%, rgba(42, 50, 19, 0));
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  transform-origin: 50% 100%;
  animation: grass_swing 2s ease-in-out infinite alternate;
}
#g-kv .kv-grasses-2 i:nth-of-type(1) {
  left: 31.9075084713%;
  top: 19.6679040923%;
  animation-delay: -0.2s;
}
#g-kv .kv-grasses-2 i:nth-of-type(2) {
  left: 1.2899069817%;
  top: 32.1678229276%;
  animation-delay: -0.4s;
}
#g-kv .kv-grasses-2 i:nth-of-type(3) {
  left: 94.8543546779%;
  top: 14.8746396909%;
  animation-delay: -0.6s;
}
#g-kv .kv-grasses-2 i:nth-of-type(4) {
  left: 9.9193673817%;
  top: 48.3420727424%;
  animation-delay: -0.8s;
}
#g-kv .kv-grasses-2 i:nth-of-type(5) {
  left: 43.011382235%;
  top: 38.1818949372%;
  animation-delay: -1s;
}
#g-kv .kv-grasses-2 i:nth-of-type(6) {
  left: 55.7525299198%;
  top: 36.6081535108%;
  animation-delay: -1.2s;
}
#g-kv .kv-grasses-2 i:nth-of-type(7) {
  left: 9.9178033179%;
  top: 52.3815842966%;
  animation-delay: -1.4s;
}
#g-kv .kv-grasses-2 i:nth-of-type(8) {
  left: 10.9908552608%;
  top: 21.7357810076%;
  animation-delay: -1.6s;
}
#g-kv .kv-grasses-2 i:nth-of-type(9) {
  left: 61.7708638094%;
  top: 48.6863754888%;
  animation-delay: -1.8s;
}
#g-kv .kv-grasses-2 i:nth-of-type(10) {
  left: 59.6476576879%;
  top: 32.0475637866%;
  animation-delay: -2s;
}
#g-kv .bg-kv {
  width: 100%;
  height: 100%;
  background: url(../img/bg-1.webp);
  background-size: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
          mask-image: linear-gradient(to bottom, #000 70%, transparent);
  transform: 20% 50%;
  transform: scale(1.2);
  transition: 1s;
  position: absolute;
  top: 0;
  left: 0;
}
#g-kv .kv-sky {
  width: 100%;
  height: 100%;
  background: url(../img/bg-sky.webp);
  background-size: 200%;
  background-position: 0 110%;
  animation: kv_sky_move 140s linear infinite;
  -webkit-mask-image: url(../img/kv-sky-mask.webp);
          mask-image: url(../img/kv-sky-mask.webp);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}
@keyframes kv_sky_move {
  0% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: -100%;
  }
}
#g-kv header {
  width: 39%;
  margin-left: 10.5%;
  padding-top: 12.5rem;
}
#g-kv h1 {
  filter: drop-shadow(0 0 1rem #fff);
}
#g-kv .logo-LC {
  width: 29.1rem;
  height: 3.2rem;
  transform: translateX(30%);
  transition: 1s;
}
#g-kv [class^=text-h1-] {
  display: inline-block;
  width: 4.85rem;
  height: 4.85rem;
  text-indent: -9999rem;
  margin-left: -0.4rem;
  position: relative;
  background: url(../img/text-h1.svg) no-repeat;
  background-size: 600%;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#g-kv .text-h1-1 {
  background-position: 0% 0;
  transition-delay: 1s;
}
#g-kv .text-h1-2 {
  background-position: 20% 0;
  transition-delay: 1.2s;
}
#g-kv .text-h1-3 {
  background-position: 40% 0;
  transition-delay: 1.4s;
}
#g-kv .text-h1-4 {
  background-position: 60% 0;
  transition-delay: 1.6s;
}
#g-kv .text-h1-5 {
  background-position: 80% 0;
  transition-delay: 1.8s;
}
#g-kv .text-h1-6 {
  background-position: 100% 0;
  transition-delay: 2s;
}
#g-kv .text-h1-3,
#g-kv .text-h1-4,
#g-kv .text-h1-5,
#g-kv .text-h1-6 {
  transform: translateX(100%) rotateY(90deg);
  opacity: 0;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#g-kv .text-h1-1,
#g-kv .text-h1-2 {
  opacity: 0;
}
#g-kv .text-h1-2 {
  margin-right: 1.5rem;
}
#g-kv.is-animate .bg-kv {
  transform: scale(1);
}
#g-kv.is-animate .logo-LC {
  transform: translateX(0);
}
#g-kv.is-animate .text-h1-1,
#g-kv.is-animate .text-h1-2 {
  animation: kv_h1_1n2_in 0.5s ease-out forwards;
}
@keyframes kv_h1_1n2_in {
  0% {
    opacity: 0;
    transform: scale(4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#g-kv.is-animate .text-h1-1 {
  animation-delay: 0.4s;
}
#g-kv.is-animate .text-h1-2 {
  animation-delay: 0.6s;
}
#g-kv.is-animate .text-h1-3,
#g-kv.is-animate .text-h1-4,
#g-kv.is-animate .text-h1-5,
#g-kv.is-animate .text-h1-6 {
  transform: translateX(0);
  opacity: 1;
}

#g-nav {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  margin-top: -21.1rem;
  padding: 1rem 0;
  z-index: 2;
}
#g-nav .btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-nav .btns a {
  margin: 0 0.5rem;
}
#g-nav.is-sticky {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(0.4rem);
          backdrop-filter: blur(0.4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#g-video {
  width: 76%;
  margin: 2.7rem auto 0;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.4rem;
}
#g-video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0.2rem solid #d4b887;
  border-radius: 1.4rem;
  -webkit-mask-image: linear-gradient(to right, #000 2.2rem, transparent 2.3rem, transparent calc(100% - 2.3rem), #000 calc(100% - 2.2rem)), linear-gradient(to right, #000 2.2rem, transparent 2.3rem, transparent calc(100% - 2.3rem), #000 calc(100% - 2.2rem));
          mask-image: linear-gradient(to right, #000 2.2rem, transparent 2.3rem, transparent calc(100% - 2.3rem), #000 calc(100% - 2.2rem)), linear-gradient(to right, #000 2.2rem, transparent 2.3rem, transparent calc(100% - 2.3rem), #000 calc(100% - 2.2rem));
  -webkit-mask-size: 100% 2.2rem;
          mask-size: 100% 2.2rem;
  -webkit-mask-position: 0 0, 0 100%;
          mask-position: 0 0, 0 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
#g-video iframe, #g-video .img {
  border-radius: 1rem;
}
#g-video .btns {
  display: flex;
  justify-content: space-between;
  width: 101%;
  margin-top: 2.9rem;
  margin-left: -0.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:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/video-cover.webp?v2) no-repeat center;
  background-size: 100% 100%;
  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: -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:after {
  transform: scale(1.1);
}
.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 #2a3213;
}

.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%;
  border: 0.6rem solid rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  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: 1rem 0 1rem 1.5rem;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}

#g-feature {
  width: 76%;
  margin: 5rem auto;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.3), 0 0 2rem rgba(0, 0, 0, 0.5);
}
#g-feature [class^=item-] {
  width: 104%;
  margin-left: -2%;
  position: relative;
}
#g-feature .img {
  box-shadow: -0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.5);
}
#g-feature .item-1 .img, #g-feature .item-5 .img {
  border-radius: 1.4rem;
  overflow: hidden;
}
#g-feature .item-1 .txt, #g-feature .item-5 .txt {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  text-align: center;
}
#g-feature .item-1 .txt h2, #g-feature .item-1 .txt h3, #g-feature .item-5 .txt h2, #g-feature .item-5 .txt h3 {
  margin-bottom: 1rem;
}
#g-feature .item-1 .txt strong, #g-feature .item-5 .txt strong {
  background: #d4b887;
  color: #000;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
}
#g-feature .item-2, #g-feature .item-3, #g-feature .item-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}
#g-feature .item-2 .txt, #g-feature .item-3 .txt, #g-feature .item-4 .txt {
  width: 54.5%;
  padding-left: 8.5%;
  padding-right: 8.5%;
  padding-bottom: 2rem;
}
#g-feature .item-2 .txt header h3, #g-feature .item-3 .txt header h3, #g-feature .item-4 .txt header h3 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
#g-feature .item-2 .txt header::after, #g-feature .item-3 .txt header::after, #g-feature .item-4 .txt header::after {
  content: "";
  width: 32%;
  height: 1px;
  background: #fff;
  display: block;
  margin: 2.5rem 0 2.5rem;
}
#g-feature .item-2 .img, #g-feature .item-3 .img, #g-feature .item-4 .img {
  width: 45.5%;
  border-radius: 1.3rem;
  overflow: hidden;
}
#g-feature .item-3 .img {
  width: 49%;
  order: -1;
}
#g-feature .item-3 .txt {
  width: 51%;
  padding-bottom: 0;
  padding-left: 5%;
}
#g-feature .item-4 .txt {
  padding-left: 5%;
  padding-right: 3%;
}
#g-feature .item-5 .txt {
  top: 67%;
}
#g-feature .item-5 .txt header h3 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
#g-feature .item-5 .txt header h3:before, #g-feature .item-5 .txt header h3::after {
  content: "";
  width: 11%;
  height: 1px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5rem;
  position: relative;
  top: -0.2rem;
}
#g-signup .wrap {
  width: 76%;
  margin: 11rem auto 5rem;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.3), 0 0 2rem rgba(0, 0, 0, 0.5);
}
#g-signup header {
  position: relative;
}
#g-signup header .img {
  width: 85%;
  margin: -16.5rem auto 0;
}
#g-signup header .txt {
  position: absolute;
  top: 70.8%;
  left: 0;
  width: 100%;
  text-align: center;
}
#g-signup header .txt h2 {
  line-height: 1.3;
}
#g-signup header .deco-big-arrow {
  width: 7rem;
  height: 0.12rem;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  text-indent: -9999rem;
  position: relative;
  margin-left: 0.5rem;
}
#g-signup header .deco-big-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0 0 1.5rem;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  bottom: 0;
  right: -0.2rem;
}
#g-signup .group {
  margin-top: 1.5rem;
  text-align: center;
}
#g-signup .group h3 {
  width: 21%;
  background: #fff;
  border-radius: 50rem;
  font-size: 1.3rem;
  color: #2a3213;
  margin: 0.5rem auto 0;
  position: relative;
}
#g-signup .group h3:before, #g-signup .group h3::after {
  content: "";
  width: 11rem;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
}
#g-signup .group h3::before {
  left: 107%;
}
#g-signup .group h3::after {
  right: 107%;
}
#g-signup .group p {
  font-size: 1.3rem;
}
#g-signup .group small {
  font-size: 90%;
  color: #999;
  display: block;
}
#g-signup .group hr {
  border: 0;
  display: block;
  opacity: 0;
}
#g-signup .group .btns {
  margin-top: 2rem;
}
#g-signup .group .btns a {
  display: block;
  width: 24%;
  margin: 1rem auto;
  box-shadow: 0 0 1rem #000;
}
#g-signup .group .qrcode {
  width: 14%;
  margin: 0.5rem auto 0;
  box-shadow: 0 0 1rem #000;
}

table {
  width: 100%;
}
table th, table td {
  border: 0;
  font-size: 1.1rem;
  line-height: 1.85;
  text-align: center;
  padding: 0.43rem 0;
}
table th {
  width: 100%;
  text-align: left;
  font-size: 2rem;
  line-height: 1.4;
  padding-left: 2.7rem;
  background: #485a00;
  color: #fff;
}
table td {
  border-bottom: 1px solid #485a00;
}
table td:nth-of-type(1) {
  width: 37%;
  text-align: left;
  padding-left: 2.7rem;
  border-right: 0.2rem solid #485a00;
}
table td:nth-of-type(2) {
  width: 63%;
}
table td.align-center {
  text-align: center;
  padding-left: 0;
  border-right: 0;
}
table tr:last-child td {
  border-bottom: 0;
}
table .no-bottom-border {
  border-bottom: 0;
}

.table-2-wrap {
  width: 92%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 1.6rem 0 0;
  box-shadow: 0 0 1rem #000;
}

.table-2 {
  margin: 0 auto;
  border-radius: 1.3rem;
  overflow: hidden;
}

#g-spec {
  width: 76%;
  margin: 0rem auto;
  padding-top: 3.8rem;
  padding-bottom: 4.2rem;
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.3), 0 0 2rem rgba(0, 0, 0, 0.5);
}
#g-spec header {
  width: 104%;
  height: 13.8rem;
  margin-left: -2%;
  position: relative;
  background: url(../img/spec-1.webp);
  background-size: 100%;
  border-radius: 1.3rem;
  box-shadow: -0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.5);
}
#g-spec header h2 {
  width: 37%;
  margin-left: 51.5%;
  padding-top: 4rem;
  filter: drop-shadow(0 0 1rem #000);
}
#g-spec header .logo-LC {
  width: 21.8rem;
  background-image: url(../img/logo-LC-fff.svg);
  margin: 0 auto;
}
#g-spec header p {
  text-align: center;
  color: #fff;
}
#g-spec header p:before, #g-spec header p::after {
  content: "";
  width: 6.2rem;
  height: 1px;
  margin: 0 0.4rem;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
}
#g-spec .list-dot {
  font-size: 90%;
  width: 84%;
  margin: 2rem auto 0;
}

#g-note {
  width: 76%;
  margin: 5rem auto;
  padding-top: 1.8rem;
  padding-bottom: 4.2rem;
  border-radius: 1.3rem;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.3), 0 0 2rem rgba(0, 0, 0, 0.5);
}
#g-note header {
  text-align: center;
}
#g-note header p, #g-note header strong {
  font-size: 2.5rem;
  font-weight: bold;
}
#g-note header strong {
  background: #d4b887;
  color: #000;
  padding: 0 1.8rem;
  line-height: 1.3;
  margin: 0.3rem;
  display: inline-block;
}
#g-note #note-readmore {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: url(../img/icon-arrow-down-000.svg) #d4b887 no-repeat center;
  background-size: 70%;
  margin: 1rem auto 0;
  cursor: pointer;
  display: none;
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 1.2rem);
}
#g-note #note-readmore:hover {
  background-color: #fff;
}
#g-note #note-readmore.active {
  display: block;
}
#g-note #note-detail {
  width: 92%;
  margin: 0 auto;
  border-radius: 1.3rem;
  padding: 0 2.3rem;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.3), 0 0 2rem rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s ease-in-out;
  line-height: 1.5;
}
#g-note #note-detail h3 {
  font-weight: bold;
  font-size: 120%;
  position: relative;
  margin: 1.5rem 0 0.5rem -2rem;
  padding-left: 2rem;
}
#g-note #note-detail h3 time {
  word-wrap: break-word;
}
#g-note #note-detail h3::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #d4b887;
  display: inline-block;
  margin-right: 1rem;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
#g-note #note-detail .list-no li {
  margin-bottom: 0.5rem;
}
#g-note #note-detail > * {
  overflow: hidden;
}
#g-note #note-detail > div {
  padding-left: 2rem;
}
#g-note #note-detail small {
  color: #999;
}
#g-note #note-detail table th {
  width: 33.3%;
  font-size: 1.5rem;
  padding-left: 0;
  text-align: center;
}
#g-note #note-detail table td {
  width: 33.3%;
}
#g-note #note-detail table td:nth-of-type(1) {
  padding-left: 0;
  text-align: center;
}
#g-note #note-detail table td:nth-of-type(2) {
  border-right: 0.2rem solid #485a00;
  border-left: 0.2rem solid #485a00;
}
#g-note #note-detail table tr:last-child td {
  background: rgba(72, 90, 0, 0.3);
}
#g-note #note-detail .table-1 {
  width: 80%;
  margin: 1rem auto 2rem;
  border-radius: 1.3rem;
  box-shadow: 0 0 1rem #000;
  overflow: hidden;
}
#g-note #note-detail.active {
  grid-template-rows: 1fr;
  padding: 2.3rem;
  margin: 1.5rem auto;
}

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

.list-dot li {
  position: relative;
  padding-left: 1rem;
}
.list-dot li:before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50rem;
  background: #fff;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

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

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

#spec-more {
  margin: -4rem auto 2.5rem;
  width: 28%;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  background: url(../img/cta.webp);
  background-size: 100% 100%;
  border-radius: 50rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 0.15rem;
  font-weight: bold;
  z-index: 1;
  position: absolute;
  bottom: 0rem;
  left: 20%;
  width: 60%;
}
#spec-more p {
  display: block;
  background: linear-gradient(to bottom, #eee, #fff);
  border-radius: 50rem;
}
#spec-more.active {
  display: none;
}

#g-footer {
  clear: both;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  background: #000;
  color: #95ab47;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

  html {
    font-size: 4vw;
  }

  body {
    background-size: cover;
  }

  .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-section {
    overflow: hidden;
  }
  .g-section header h2 {
    font-size: 2rem;
  }

  #g-kv {
    height: 38rem;
  }
  #g-kv .kv-grasses-1 {
    width: 100%;
    top: 57%;
    left: 6%;
  }
  #g-kv .kv-grasses-2 {
    width: 90%;
    height: 10rem;
    top: 56%;
  }
  #g-kv .bg-kv {
    background-size: 190%;
    background-position: 100% 8rem;
  }
  #g-kv .kv-sky {
    background-size: 400%;
    background-position: 0 0;
    -webkit-mask-image: url(../img/kv-sky-mask.webp), linear-gradient(#000, #000);
            mask-image: url(../img/kv-sky-mask.webp), linear-gradient(#000, #000);
    -webkit-mask-repeat: no-repeat, no-repeat;
            mask-repeat: no-repeat, no-repeat;
    -webkit-mask-size: 190%, 100% 10rem;
            mask-size: 190%, 100% 10rem;
    -webkit-mask-position: 100% 8rem, 0 0;
            mask-position: 100% 8rem, 0 0;
    animation: kv_sky_move_m 100s linear infinite;
  }
  @keyframes kv_sky_move_m {
    0% {
      background-position-x: 100%;
    }
    100% {
      background-position-x: -300%;
    }
  }
  #g-kv #g-logo {
    width: 30%;
    left: 5%;
  }
  #g-kv header {
    width: 100%;
    padding-top: 5rem;
    margin-left: 1.6rem;
  }
  #g-kv .logo-LC {
    width: 21.5rem;
    height: 2.2rem;
  }
  #g-kv [class^=text-h1-] {
    width: 3.6rem;
    height: 3.6rem;
  }

  #g-nav {
    margin-top: -12rem;
  }
  #g-nav .btns {
    justify-content: space-between;
    padding: 0 3%;
  }
  #g-nav .btns a {
    letter-spacing: 0;
    margin: 0;
  }
  #g-nav .btns a div {
    padding: 0.4rem 0.8rem 0.6rem;
  }

  #g-video {
    width: 100%;
    padding: 1rem;
  }

  #g-feature {
    width: 100%;
  }
  #g-feature [class^=item-] {
    width: 100%;
    margin-left: 0;
  }
  #g-feature header h2 span {
    font-size: 1.5rem;
    line-height: 1.2;
    display: inline-block;
    margin-top: 0.5rem;
  }
  #g-feature .item-1 {
    background: url(../img/feature-1.webp) no-repeat center top #000;
    background-size: 200%;
    border-radius: 1.3rem;
    padding-bottom: 2rem;
  }
  #g-feature .item-1 .img {
    display: none;
  }
  #g-feature .item-1 .txt {
    position: static;
    padding-top: 13rem;
    padding-left: 5%;
    padding-right: 5%;
  }
  #g-feature .item-2, #g-feature .item-3, #g-feature .item-4 {
    flex-wrap: wrap;
  }
  #g-feature .item-2 .txt, #g-feature .item-3 .txt, #g-feature .item-4 .txt {
    width: 100%;
    padding: 2rem 5% 2rem;
    text-align: center;
  }
  #g-feature .item-2 .txt header h3, #g-feature .item-3 .txt header h3, #g-feature .item-4 .txt header h3 {
    font-size: 2rem;
  }
  #g-feature .item-2 .txt header::after, #g-feature .item-3 .txt header::after, #g-feature .item-4 .txt header::after {
    margin: 1rem auto;
  }
  #g-feature .item-2 .img, #g-feature .item-3 .img, #g-feature .item-4 .img {
    width: 60%;
    margin: 0 auto;
    order: -1;
  }
  #g-feature .item-4 .txt header h3 {
    white-space: nowrap;
    font-size: 1.85rem;
  }
  #g-feature .item-5 {
    background: #000;
    border-radius: 1.3rem;
    padding-bottom: 2rem;
  }
  #g-feature .item-5 .txt {
    position: static;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: -3rem;
  }
  #g-feature .item-5 .txt header h3 {
    font-size: 2rem;
    position: relative;
  }
  #g-feature .item-5 .txt header h3:before, #g-feature .item-5 .txt header h3::after {
    position: absolute;
    width: 2rem;
    top: 50%;
  }
  #g-feature .item-5 .txt header h3::before {
    left: 88%;
  }
  #g-feature .item-5 .txt header h3::after {
    right: 88%;
  }

  #g-signup .wrap {
    width: 100%;
  }
  #g-signup .group {
    margin-top: 5rem;
    padding-left: 5%;
    padding-right: 5%;
  }
  #g-signup .group h3 {
    width: 60%;
  }
  #g-signup .group h3:before, #g-signup .group h3::after {
    width: 3rem;
  }
  #g-signup header .img {
    width: 105%;
    margin-left: -2.5%;
  }
  #g-signup header .txt {
    top: 62.8%;
  }
  #g-signup header .txt h2 {
    font-size: 1.8rem;
  }
  #g-signup header .deco-big-arrow {
    width: 5rem;
  }
  #g-signup .group {
    margin-top: 2rem;
  }
  #g-signup .group .btns a {
    width: 90%;
  }
  #g-signup .group .qrcode {
    width: 100%;
    box-shadow: none;
  }

  #g-spec {
    width: 100%;
  }
  #g-spec header {
    width: 100%;
    margin-left: 0;
    background-repeat: no-repeat;
  }
  #g-spec header h2 {
    margin-left: 0;
    width: 100%;
    padding-top: 7rem;
  }
  #g-spec header .logo-LC {
    width: 19.8rem;
  }

  table th, table td {
    font-size: 1rem;
    line-height: 1.6;
  }
  table th {
    padding-left: 1rem;
    font-size: 1.5rem;
  }
  table td {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  table td:nth-of-type(1) {
    padding-left: 1rem;
  }

  #g-note {
    width: 100%;
  }
  #g-note header h2 p {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  #g-note header h2 p:last-child {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
  #g-note header h2 strong {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin: 1rem 0;
    line-height: 1.2;
    padding: 0.5rem 5%;
  }
  #g-note #note-detail.active {
    padding: 1rem;
  }
  #g-note #note-detail .table-1 {
    width: 100%;
  }
  #g-note #note-detail .table-1 th {
    font-size: 1.2rem;
  }
  #g-note #note-detail table td {
    padding-left: 0;
    padding-right: 0;
  }

  #g-footer {
    font-size: 0.8rem;
  }
}