@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&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 ==============================================*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

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

.hide {
  display: none;
}

*:focus {
  outline: none;
}

.video-wrap {
  margin: 0 0;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.5% !important;
}
.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: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 {
  z-index: 2;
}
.video-wrap .img img {
  width: 100%;
  height: 100%;
}
.video-wrap p {
  font-size: 15px;
}
.video-wrap.active .img {
  opacity: 0;
  visibility: hidden;
}
.video-wrap:hover .img:after {
  transform: scale(1.1);
}
.video-wrap:hover .img:before {
  opacity: 0;
}
.video-btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  text-indent: -9999px;
  transform: translate(-50%, -50%);
}
.video-btn-play:before {
  content: "";
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #543c2c;
  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: 4rem;
  height: 4rem;
  background: url(../img/icon-next-fff.svg) no-repeat 50%;
  background-size: auto 100%;
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(50% - 2rem);
  display: block;
}
.video-btn-play:hover:after {
  border-color: transparent transparent transparent #348bbf;
}

.msg-box {
  background: rgba(117, 117, 117, 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;
  font-family: "Inter", "Noto Sans TC", "microsoft jhenghei", Arial, sans-serif;
  pointer-events: none;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.msg-box ::-webkit-scrollbar-track {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
}
.msg-box ::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}
.msg-box ::-webkit-scrollbar-thumb {
  overflow: hidden;
  -webkit-box-shadow: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.msg-box .msg-wrap {
  background: #fff;
  width: 90%;
  height: 90%;
  max-width: 550px;
  max-height: 730px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: rotateY(0deg) scale(0.5) 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: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  transition: 0.2s;
  background: #ffa682;
  z-index: 3;
  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);
  text-indent: -9999px;
}
.msg-box .msg-wrap > .close:before, .msg-box .msg-wrap > .close:after {
  content: "";
  width: 0.1rem;
  height: 2rem;
  background: #fff;
  transform: rotate(45deg) translate3d(0, 0, 0);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}
.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: rotateY(0deg) 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: 100%;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  padding-right: 5%;
  color: #333;
}
.msg-box .msg-content header {
  font-size: 35px;
  font-weight: bold;
}
.msg-box .msg-content p {
  line-height: 2;
  margin: 10px 0;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background: #348bbf;
  width: 70%;
  display: block;
  border-radius: 30px;
  margin: 10px auto;
  cursor: pointer;
  color: #fff;
  line-height: 2.5;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #00c5db;
  color: #fff;
  transition: 0.2s;
}
.msg-box#msg-skin .msg-content {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 5%;
}
.msg-box#msg-skin .msg-content header h2 {
  font-size: 45px;
  margin: 50px 0 20px;
}
.msg-box#msg-skin .msg-content p {
  line-height: 1.5;
  font-size: 22px;
}
.msg-box#msg-skin .msg-content img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

#msg-alert .msg-wrap {
  height: auto;
  min-height: 100px;
  width: 400px;
}
#msg-alert .msg-content {
  text-align: center;
  padding: 5%;
  height: auto;
}
#msg-alert .msg-content header {
  font-size: 25px;
}

#msg-kol .msg-wrap {
  width: 80%;
  height: auto;
  max-height: 100%;
  max-width: 100%;
}
#msg-kol .msg-wrap > .close {
  top: -3.5rem;
  right: 0;
  border: 0.14rem solid #b8b8b8;
  border-radius: 50%;
  background-color: #fff;
}
#msg-kol .msg-wrap > .close:before, #msg-kol .msg-wrap > .close::after {
  background-color: #b8b8b8;
  top: 0.4rem;
  left: 1.4rem;
}
#msg-kol .msg-content {
  overflow-x: hidden;
  padding-right: 0;
  padding: 2rem 4.5rem 3rem 4.5rem;
}
#msg-kol .flex {
  display: flex;
  padding-top: 1rem;
  justify-content: center;
}
#msg-kol .img img {
  width: auto;
  height: 18rem;
}
#msg-kol .txt {
  width: 53%;
  font-size: 0.9rem;
  padding-left: 3%;
  padding-top: 5rem;
  text-align: left;
}
#msg-kol .txt p {
  margin: 0 0 0.5rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
#msg-kol h4 {
  text-align: left;
  width: 100%;
  padding-bottom: 1.5rem;
}
#msg-kol h4 p {
  line-height: 1;
}
#msg-kol h4 b {
  line-height: 1;
  display: block;
}
#msg-kol h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#msg-kol .tns-controls button {
  top: 5%;
}
#msg-kol .tns-controls button[disabled], #msg-kol .tns-controls button:nth-child(1) {
  left: 92%;
}
#msg-kol .tns-controls button:nth-child(2) {
  left: 99%;
}

.text-gradient-1 {
  color: #fff;
  background: linear-gradient(to right, #341400 15%, #803906 90%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-shine::before {
  content: attr(data-text);
  position: absolute;
  background: linear-gradient(to right, transparent 33.3%, #fff, transparent 66.6%);
  background-size: 300%;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 1s;
  animation: font-shine 3s infinite;
}
@keyframes font-shine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.tns-wrap {
  position: relative;
}

.tns-slider {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.tns-outer {
  position: relative;
}

.tns-item {
  float: left;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 44%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0;
  z-index: 1;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.4s;
  background-color: transparent;
}
.tns-controls button:before, .tns-controls div:before, .tns-cus-controls button:before, .tns-cus-controls div:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon-next-brown.svg) 50% 50% no-repeat;
  background-size: 100%;
  display: block;
}
.tns-controls button:after, .tns-controls div:after, .tns-cus-controls button:after, .tns-cus-controls div:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
}
.tns-controls button:hover:before, .tns-controls div:hover:before, .tns-cus-controls button:hover:before, .tns-cus-controls div:hover:before {
  filter: brightness(200%);
}
.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: -2.5rem;
  transform: scale(-1, 1);
}
.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: -2.5rem;
}
.tns-controls button[disabled], .tns-controls button.is-disabled, .tns-controls div[disabled], .tns-controls div.is-disabled, .tns-cus-controls button[disabled], .tns-cus-controls button.is-disabled, .tns-cus-controls div[disabled], .tns-cus-controls div.is-disabled {
  opacity: 0.2;
  pointer-events: none;
  filter: grayscale(1);
}

.tns-nav {
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
}
.tns-nav button {
  width: 2rem;
  height: 2rem;
  border: 0;
  margin: 0.5rem 0;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.tns-nav button:after {
  transform: translate(-50%, -50%) scale(0);
}
.tns-nav button:hover:before, .tns-nav button:hover:after {
  background-color: #543c2c;
}
.tns-nav button.tns-nav-active:after {
  background-color: #543c2c;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

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

.color-red {
  color: red;
}

.color-yellow {
  color: #fff2b6;
}

.color-blue {
  color: #3990c4;
}

.color-pink {
  color: #f12e97 !important;
}

.color-brown-500 {
  color: #b06d0c;
}

html {
  font-size: 1.25vw;
}

body {
  overflow-x: hidden;
}
body.is-lock {
  overflow: hidden;
}

.g-wrap {
  font-family: "Inter", "Noto Sans TC", "microsoft jhenghei", Arial, sans-serif;
  width: 100%;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #543c2c;
  position: relative;
  text-align: center;
  background-color: #fbf6ef;
}
.g-wrap img {
  max-width: 100%;
}
.g-wrap a {
  color: #333;
  text-decoration: none;
  transition: color 0.4s;
}
.g-wrap a:hover {
  color: #000;
}
.g-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.g-wrap li {
  list-style-type: none;
}

[class*=g-bt-] {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  border-radius: 50rem;
  color: #fff !important;
  overflow: hidden;
}
[class*=g-bt-]:before {
  content: "";
  background: linear-gradient(to right, #543c2c 0%, #cca06f 50%, #543c2c 100%);
  position: absolute;
  top: 0;
  left: 0%;
  width: 200%;
  height: 100%;
  transition: 1s;
}
[class*=g-bt-] span {
  padding: 0.8rem 3.22rem;
  position: relative;
  overflow: hidden;
  display: block;
}
[class*=g-bt-] i {
  width: 2rem;
  height: 2rem;
  background: url(../img/icon-arrow-fff.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
  left: 0;
  margin-left: 1.5rem;
  margin-right: -1rem;
  animation: arrow_jump 0.4s infinite alternate;
}
@keyframes arrow_jump {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(-20%);
  }
}
[class*=g-bt-]:hover::before {
  left: -100%;
}

.g-bt-2 {
  background: none;
  font-size: 1.2rem;
  color: #ff8358 !important;
  padding: 0;
}
.g-bt-2 .icon-pie-arrow {
  width: 1rem;
  height: 1rem;
  background-image: url(../img/icon-pie-arrow-orange.svg);
}
.g-bt-2:hover {
  background: none;
  color: #fff !important;
}

.btns {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-no {
  padding-left: 1.5rem;
}
.list-no li {
  position: relative;
  list-style-type: decimal;
}

.list-square li {
  position: relative;
  padding-left: 1rem;
}
.list-square li:before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: #543c2c;
  position: absolute;
  top: 0.7rem;
  left: 0;
}

.list-star li {
  position: relative;
  padding-left: 1.2rem;
}
.list-star li:before {
  content: "*";
  position: absolute;
  top: -0.1rem;
  left: 0;
  font-size: 1.5rem;
}

.g-section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.g-section h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 0.2rem;
  display: inline-block;
}
.g-section h2 span {
  opacity: 0;
  display: inline-block;
}
.g-section img {
  width: 100%;
}
.g-section.is-animate h2 span {
  animation: split_text_show_1 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes split_text_show_1 {
  0% {
    opacity: 0;
    transform: translateX(100%) translateY(-100%) rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.g-section.is-animate h2 span:nth-child(1) {
  animation-delay: 0.05s;
}
.g-section.is-animate h2 span:nth-child(2) {
  animation-delay: 0.1s;
}
.g-section.is-animate h2 span:nth-child(3) {
  animation-delay: 0.15s;
}
.g-section.is-animate h2 span:nth-child(4) {
  animation-delay: 0.2s;
}
.g-section.is-animate h2 span:nth-child(5) {
  animation-delay: 0.25s;
}
.g-section.is-animate h2 span:nth-child(6) {
  animation-delay: 0.3s;
}
.g-section.is-animate h2 span:nth-child(7) {
  animation-delay: 0.35s;
}
.g-section.is-animate h2 span:nth-child(8) {
  animation-delay: 0.4s;
}
.g-section.is-animate h2 span:nth-child(9) {
  animation-delay: 0.45s;
}
.g-section.is-animate h2 span:nth-child(10) {
  animation-delay: 0.5s;
}
.g-section.is-animate h2 span:nth-child(11) {
  animation-delay: 0.55s;
}
.g-section.is-animate h2 span:nth-child(12) {
  animation-delay: 0.6s;
}
.g-section.is-animate h2 span:nth-child(13) {
  animation-delay: 0.65s;
}
.g-section.is-animate h2 span:nth-child(14) {
  animation-delay: 0.7s;
}
.g-section.is-animate h2 span:nth-child(15) {
  animation-delay: 0.75s;
}
.g-section.is-animate h2 span:nth-child(16) {
  animation-delay: 0.8s;
}
.g-section.is-animate h2 span:nth-child(17) {
  animation-delay: 0.85s;
}
.g-section.is-animate h2 span:nth-child(18) {
  animation-delay: 0.9s;
}
.g-section.is-animate h2 span:nth-child(19) {
  animation-delay: 0.95s;
}
.g-section.is-animate h2 span:nth-child(20) {
  animation-delay: 1s;
}
.g-section.is-animate h2 p.delay span:nth-child(1) {
  animation-delay: 0.55s;
}
.g-section.is-animate h2 p.delay span:nth-child(2) {
  animation-delay: 0.6s;
}
.g-section.is-animate h2 p.delay span:nth-child(3) {
  animation-delay: 0.65s;
}
.g-section.is-animate h2 p.delay span:nth-child(4) {
  animation-delay: 0.7s;
}
.g-section.is-animate h2 p.delay span:nth-child(5) {
  animation-delay: 0.75s;
}
.g-section.is-animate h2 p.delay span:nth-child(6) {
  animation-delay: 0.8s;
}
.g-section.is-animate h2 p.delay span:nth-child(7) {
  animation-delay: 0.85s;
}
.g-section.is-animate h2 p.delay span:nth-child(8) {
  animation-delay: 0.9s;
}
.g-section.is-animate h2 p.delay span:nth-child(9) {
  animation-delay: 0.95s;
}
.g-section.is-animate h2 p.delay span:nth-child(10) {
  animation-delay: 1s;
}
.g-section.is-animate h2 p.delay span:nth-child(11) {
  animation-delay: 1.05s;
}
.g-section.is-animate h2 p.delay span:nth-child(12) {
  animation-delay: 1.1s;
}
.g-section.is-animate h2 p.delay span:nth-child(13) {
  animation-delay: 1.15s;
}
.g-section.is-animate h2 p.delay span:nth-child(14) {
  animation-delay: 1.2s;
}
.g-section.is-animate h2 p.delay span:nth-child(15) {
  animation-delay: 1.25s;
}
.g-section.is-animate h2 p.delay span:nth-child(16) {
  animation-delay: 1.3s;
}
.g-section.is-animate h2 p.delay span:nth-child(17) {
  animation-delay: 1.35s;
}
.g-section.is-animate h2 p.delay span:nth-child(18) {
  animation-delay: 1.4s;
}
.g-section.is-animate h2 p.delay span:nth-child(19) {
  animation-delay: 1.45s;
}
.g-section.is-animate h2 p.delay span:nth-child(20) {
  animation-delay: 1.5s;
}

[class^=icon-heart-] {
  width: 4rem;
  height: 6rem;
  position: absolute;
}
[class^=icon-heart-]:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-heart.png) no-repeat center;
  background-size: 100%;
  display: block;
  animation: icon_heart 1s ease-in-out infinite alternate;
}
@keyframes icon_heart {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1.2);
  }
}
[class^=icon-heart-]:nth-child(odd):before {
  animation-delay: -1s;
}

[class^=icon-star-] {
  background: url(../img/icon-star-1.png) no-repeat center;
  background-size: 100%;
  width: 5rem;
  height: 5rem;
  position: absolute;
  animation: icon_star 1.5s linear infinite;
  pointer-events: none;
}
@keyframes icon_star {
  0% {
    transform: rotate(0) scale(0);
  }
  40% {
    transform: rotate(90deg) scale(1);
  }
  80%, 100% {
    transform: rotate(180deg) scale(0);
  }
}

[class^=icon-flare-] {
  width: 15rem;
  height: 7rem;
  position: absolute;
  pointer-events: none;
}
[class^=icon-flare-]:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-flare-blue.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  animation: icon_flare 0.2s linear infinite alternate;
  mix-blend-mode: screen;
}
@keyframes icon_flare {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1.2);
  }
}
[class^=icon-flare-]:nth-child(3n-1):before {
  animation-duration: 0.8s;
  mix-blend-mode: plus-lighter;
}
[class^=icon-flare-]:nth-child(3n-2):before {
  animation-duration: 0.3s;
}

[class^=icon-v-flare-] {
  width: 15rem;
  height: 7rem;
  position: absolute;
  pointer-events: none;
}
[class^=icon-v-flare-]:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-flare-blue.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0f;
  display: block;
  animation: icon_v_flare 0.2s linear infinite alternate;
}
@keyframes icon_v_flare {
  0% {
    transform: scale(0.5) rotate(90deg);
  }
  100% {
    transform: scale(1.2) rotate(90deg);
  }
}

#g-header {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 0 4%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
#g-header .logo {
  width: 12.5rem;
  margin-right: 7rem;
  margin-left: 0.5rem;
}
#g-header nav {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#g-header nav li {
  display: inline-block;
  margin: 0 1rem;
}
#g-header nav li a {
  font-size: 1.1rem;
  padding: 1.3rem 0;
  letter-spacing: 0.1rem;
  display: block;
  position: relative;
}
#g-header nav li a:after {
  content: "";
  width: 0;
  height: 0.2rem;
  background: #543c2c;
  position: absolute;
  top: 75%;
  left: 0;
  transition: 0.2s;
}
#g-header nav li a:hover {
  color: #543c2c;
}
#g-header nav li a:hover:after {
  width: 100%;
}
#g-header.active #g-nav-trigger [class^=line-] {
  opacity: 0 !important;
  pointer-events: none;
}
#g-header.active #g-nav-trigger [class^=line-] div {
  transform: translateX(0);
}
#g-header.active #g-nav-trigger [class^=cross-] {
  opacity: 1 !important;
  pointer-events: auto;
}
#g-header.active #g-nav-trigger [class^=cross-] div {
  animation: cross_active 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes cross_active {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
#g-header.active #g-nav-trigger .cross-1 div {
  animation-delay: 0s;
}
#g-header.active #g-nav-trigger .cross-2 div {
  animation-delay: 0.1s;
}
#g-header.active nav {
  right: 0;
}

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

#kv video {
  width: 100%;
  display: block;
}

#product {
  padding-top: 3.6rem;
}
#product header h2 {
  margin-top: 1rem;
}
#product header h2 p {
  display: inline-block;
}
#product header h2 p:first-child.text-gradient-1 {
  background-image: linear-gradient(to right, #341400, #451c01);
}
#product header h2 p:last-child.text-gradient-1 {
  background-image: linear-gradient(to right, #451c01 0%, #803906 50%);
}
#product .intro {
  position: relative;
  margin-top: 3.5rem;
}
#product .intro .txt {
  position: absolute;
  top: 6%;
  left: 10%;
  width: 30%;
  text-align: left;
  letter-spacing: 0.1rem;
}
#product .intro .img {
  position: relative;
  margin-left: 32.3%;
  width: 62.5%;
  height: 26rem;
}
#product .intro .img .img-1, #product .intro .img .img-2 {
  position: absolute;
  border-radius: 1.5rem;
  opacity: 0;
}
#product .intro .img .img-1 {
  width: 72%;
  top: 0;
  right: 0;
}
#product .intro .img .img-2 {
  width: 39%;
  bottom: 0;
  left: 0;
  border: 0.7rem solid #fbf6ef;
}
#product .tns-wrap {
  margin-top: 4.4rem;
}
#product .tns-controls button {
  top: -11%;
}
#product .tns-controls button:nth-child(1) {
  left: 82%;
}
#product .tns-controls button:nth-child(2) {
  left: 86.6%;
}
#product .shop {
  height: 30rem;
  margin-top: 3rem;
  padding-top: 4.5rem;
  position: relative;
}
#product .shop .txt {
  position: absolute;
  top: 38%;
  left: 9.8%;
}
#product .shop .txt h3 {
  letter-spacing: 0.1rem;
}
#product .shop .txt .btns {
  margin-top: 1.1rem;
}
#product .shop .img {
  position: relative;
  margin-left: 46.3%;
  width: 48.5%;
  height: 18rem;
}
#product .shop .img .img-1, #product .shop .img .img-2 {
  position: absolute;
  border-radius: 1.5rem;
  opacity: 0;
}
#product .shop .img .img-1 {
  width: 58%;
  bottom: 0;
  left: 0;
  border: 0.7rem solid #fbf6ef;
  z-index: 1;
}
#product .shop .img .img-2 {
  width: 54%;
  top: 0;
  right: 0;
}
#product .shop.is-animate .img .img-1, #product .shop.is-animate .img .img-2 {
  animation: img_in_by_left 1s forwards;
}
@keyframes img_in_by_left {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#product .shop.is-animate .img .img-1 {
  animation-delay: 0.2s;
}
#product .feature {
  display: flex;
  width: 90%;
  margin: -2rem auto 0;
  padding-bottom: 3rem;
}
#product .feature .img {
  width: 50%;
}
#product .feature .txt {
  width: 50%;
  text-align: left;
  padding-top: 9.8rem;
  padding-left: 7.3%;
  letter-spacing: 0.1rem;
}
#product .feature h3 {
  font-size: 2.5rem;
  padding-bottom: 0.7rem;
}
#product .feature .list-check li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.8;
}
#product .feature .list-check li::before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/icon-check.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
#product.is-animate .intro .img .img-1, #product.is-animate .intro .img .img-2 {
  animation: img_in_by_right 1s forwards;
}
@keyframes img_in_by_right {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#product.is-animate .intro .img .img-1 {
  animation-delay: 0.2s;
}

#tns-product {
  margin-left: 8rem;
}
#tns-product li {
  padding-top: 3.9rem;
}
#tns-product li:hover img {
  transform: translateY(-5%);
}
#tns-product li:hover a {
  color: #cca06f;
}
#tns-product video, #tns-product img {
  width: 100%;
  margin: 0 auto;
  transition: 0.2s;
}
#tns-product h3 {
  font-weight: bold;
}
#tns-product a {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}

#recommend {
  padding-top: 4.3rem;
}
#recommend .chef {
  width: 90%;
  margin: 0 auto;
}
#recommend .chef .profile {
  display: flex;
  justify-content: center;
}
#recommend .chef .img {
  width: 36%;
  position: relative;
  left: 2.5rem;
  border-radius: 1.7rem;
  overflow: hidden;
}
#recommend .chef .txt {
  text-align: left;
  padding-top: 11.5rem;
  padding-left: 10%;
}
#recommend .chef .list-spoon {
  margin-top: 1rem;
}
#recommend .chef .list-spoon li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8rem;
}
#recommend .chef .list-spoon li::before {
  content: "";
  width: 0.6rem;
  height: 1rem;
  background: url(../img/icon-spoon.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 0.2rem;
  left: 0;
}
#recommend .tns-wrap {
  width: 90%;
  margin: 3rem auto;
  position: relative;
}
#recommend .tns-controls button {
  top: auto;
  bottom: 0;
  z-index: 4;
}
#recommend .tns-controls button:nth-of-type(1) {
  left: 85%;
}
#recommend .tns-controls button:nth-of-type(2) {
  left: 90.5%;
}
#recommend .tns-nav {
  width: 40%;
  left: 57%;
  bottom: -0.3rem;
}

#tns-chef li {
  display: flex;
  align-items: center;
  padding-bottom: 4rem;
}
#tns-chef .img {
  width: 53%;
}
#tns-chef .txt {
  width: 47%;
  text-align: left;
  margin-top: -2rem;
  padding-left: 5%;
  padding-right: 5%;
}
#tns-chef .txt h3 {
  margin-bottom: 1.6rem;
  letter-spacing: 0.1rem;
}
#tns-chef .txt p {
  text-align: justify;
}

#kol {
  padding-top: 2rem;
}
#kol header h2 p {
  display: inline-block;
}
#kol header h2 p:first-child.text-gradient-1 {
  background-image: linear-gradient(to right, #341400, #341400);
}
#kol header h2 p:last-child.text-gradient-1 {
  background-image: linear-gradient(to right, #341400 0%, #803906 50%);
}

.list-kol {
  width: 90%;
  margin: 2.5rem auto;
  display: flex;
  justify-content: space-between;
}
.list-kol li {
  width: 23%;
  background: #fff;
  border-radius: 1rem;
  padding-bottom: 1rem;
  transition: 0.4s;
}
.list-kol li:hover {
  transform: translateY(-3%);
}
.list-kol h3 {
  letter-spacing: 0.1rem;
  line-height: 3;
}
.list-kol img {
  width: 92%;
  margin: 0 auto;
}
.list-kol .icon-social {
  width: 92%;
  height: 2.5rem;
  margin: 0 auto;
  background: url(../img/icon-social.svg) no-repeat center;
  background-size: 100%;
  display: block;
}
.list-kol p {
  font-size: 0.9rem;
  text-align: left;
  padding-left: 0.5rem;
}

#maintain {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
#maintain header {
  height: 20rem;
  position: relative;
}
#maintain header h2 {
  position: absolute;
  top: 28%;
  left: 16.2%;
  text-align: left;
}
#maintain header .img {
  position: relative;
  margin-left: 45.7%;
  width: 45.5%;
  height: 19rem;
}
#maintain header .img .img-1, #maintain header .img .img-2 {
  position: absolute;
  border-radius: 1.5rem;
  opacity: 0;
}
#maintain header .img .img-1 {
  width: 47%;
  bottom: 0;
  right: 0;
  border: 0.7rem solid #fbf6ef;
  z-index: 1;
}
#maintain header .img .img-2 {
  width: 64%;
  top: 0;
  left: 0;
}
#maintain.is-animate .img .img-1, #maintain.is-animate .img .img-2 {
  animation: img_in_by_right 1s forwards;
}
#maintain.is-animate .img .img-1 {
  animation-delay: 0.2s;
}

.list-maintain {
  width: 72%;
  margin: 1.5rem auto;
  display: flex;
  justify-content: space-between;
}
.list-maintain > li {
  width: 30%;
}
.list-maintain .step {
  width: 7.7rem;
  height: 7.7rem;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
}
.list-maintain .step h3 {
  background: #fbf6ef;
  line-height: 1.2;
  display: inline-block;
  position: absolute;
  top: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0 0.4rem;
}
.list-maintain .step i {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.list-maintain .step .icon-maintain-1 {
  background-image: url(../img/icon-maintain-1.svg);
}
.list-maintain .step .icon-maintain-2 {
  background-image: url(../img/icon-maintain-2.svg);
}
.list-maintain .step .icon-maintain-3 {
  background-image: url(../img/icon-maintain-3.svg);
}
.list-maintain .list-star {
  padding-top: 1.3rem;
}
.list-maintain .list-star li {
  text-align: left;
  font-size: 0.9rem;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.2rem;
}
.list-maintain .list-star li::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/icon-star.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: -0.4rem;
  left: 0;
}

.video {
  width: 100%;
  margin: 0 auto;
}
.video .video-js[tabindex="-1"], .video iframe {
  width: 100%;
  height: 44.5rem;
}
.video .note {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  color: #ffa682;
  opacity: 0.5;
  text-align: center;
  display: block;
  padding: 0.5rem 0 1.1rem;
}
.video .video-js .vjs-control-bar {
  background: #ffa682;
}
.video .video-js .vjs-load-progress div {
  background: #543c2c;
}
.video .video-js .vjs-big-play-button:hover {
  background-color: #543c2c;
}
.video .vjs-poster {
  display: none;
}
.video .video-js .vjs-big-play-button {
  font-size: 3.5rem;
  width: 6rem;
  height: 6rem;
  margin-top: -3rem;
  margin-left: -3rem;
  border-radius: 50rem;
  border-width: 0.8rem;
  box-sizing: border-box;
  border-color: #fff;
  background-color: #ffa682;
}
.video .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  top: -0.5rem;
}

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

  html {
    font-size: 3vw;
  }

  .g-section {
    overflow: hidden;
  }
  #g-header .logo {
    width: 15.5rem;
    margin-right: 0;
    margin-left: 0;
    padding: 1rem 0;
  }
  #g-header nav {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    border-left: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #g-header nav ol {
    width: 80%;
    margin: 0 auto;
  }
  #g-header nav li {
    width: 100%;
    margin: 0;
  }
  #g-header nav li a {
    font-size: 1.3rem;
  }

  #product .tns-wrap {
    width: 96%;
    margin: 0 auto;
  }
  #product .intro {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
  }
  #product .intro .img {
    width: 94%;
    height: 16rem;
    margin-left: 2%;
    order: -1;
  }
  #product .intro .txt {
    position: static;
    width: 80%;
    margin: 1rem auto 0;
  }
  #product .shop {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2rem;
  }
  #product .shop .img {
    order: -1;
    margin-left: 2%;
    width: 94%;
  }
  #product .shop .txt {
    position: static;
    width: 100%;
  }
  #product .feature {
    display: block;
    padding-top: 5rem;
  }
  #product .feature .img {
    width: 100%;
  }
  #product .feature .txt {
    width: 100%;
    padding-top: 2rem;
    padding-left: 5%;
  }

  #tns-product {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
  }
  #tns-product > .tns-item {
    width: 50% !important;
  }
  #recommend .chef .profile {
    display: block;
  }
  #recommend .chef .img {
    width: 80%;
    left: 0;
    margin: 0 auto;
  }
  #recommend .chef .txt {
    width: 80%;
    margin: 0 auto;
    padding-top: 2rem;
    padding-left: 0;
  }
  #recommend .tns-controls button:nth-of-type(1) {
    left: 75%;
  }
  #recommend .tns-controls button:nth-of-type(2) {
    left: 88%;
  }
  #recommend .tns-nav {
    width: auto;
    left: 3%;
  }

  #tns-chef li {
    display: block;
    padding-bottom: 4rem;
  }
  #tns-chef .img {
    width: 100%;
  }
  #tns-chef .txt {
    width: 80%;
    margin: 0 auto;
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  #kol header p {
    display: block;
  }
  #kol header h2 p:first-child.text-gradient-1, #kol header h2 p.last-child.text-gradient-1 {
    background-image: linear-gradient(to right, #341400 15%, #803906 90%);
  }

  .list-kol {
    flex-wrap: wrap;
  }
  .list-kol li {
    width: 48%;
    margin-bottom: 1rem;
  }
  .list-kol p {
    font-size: 1rem;
  }

  #msg-kol .msg-wrap {
    width: 100%;
    height: 100%;
    max-height: none;
    top: 0;
    transform: rotateY(0deg) scale(0.5) translate3d(0, 0, 0);
    background: none;
    overflow-y: scroll;
  }
  #msg-kol .msg-wrap > .close {
    top: 1rem;
    right: 1rem;
  }
  #msg-kol .msg-content {
    margin: 5rem auto;
    width: 90%;
    height: auto;
    padding: 2rem 0;
    overflow: hidden;
    background: #fff;
  }
  #msg-kol .flex {
    display: block;
  }
  #msg-kol .flex .img {
    width: 100%;
  }
  #msg-kol .flex .img img {
    margin: 0 auto;
    height: auto;
  }
  #msg-kol .flex .txt {
    width: 80%;
    padding-left: 0;
    padding-top: 2rem;
    font-size: 1.2rem;
    margin: 0 auto;
  }
  #msg-kol .flex .txt p {
    padding-bottom: 1rem;
  }
  #msg-kol h4 {
    width: 80%;
    margin: 0 auto;
  }
  #msg-kol h4 b {
    line-height: 1.2;
    display: block;
    margin-top: 0.5rem;
  }
  #msg-kol .tns-controls button {
    top: -4rem;
  }
  #msg-kol .tns-controls button:nth-child(1) {
    left: 73%;
  }
  #msg-kol .tns-controls button:nth-child(2) {
    left: 85%;
  }
  #msg-kol .tns-controls button:hover {
    opacity: 1;
  }
  #msg-kol .tns-wrap {
    padding-top: 4rem;
  }
  #msg-kol.is-active .msg-wrap {
    transform: rotateY(0deg) scale(1) translate3d(0, 0, 0);
  }
  #msg-kol #tns-kol-item1 .img img,
#msg-kol #tns-kol-item2 .img img {
    width: 60%;
  }
  #msg-kol #tns-kol-item0 .img img,
#msg-kol #tns-kol-item3 .img img {
    width: 90%;
  }

  #maintain header {
    height: auto;
  }
  #maintain header h2 {
    position: static;
    text-align: center;
  }
  #maintain header .img {
    margin-left: 4%;
    width: 94%;
    margin-top: 2rem;
  }

  .list-maintain {
    width: 90%;
    flex-wrap: wrap;
  }
  .list-maintain > li {
    width: 100%;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .list-maintain > li:last-child {
    border-bottom: 0;
  }
  .list-maintain .list-star {
    width: calc(100% - 10rem);
  }
  .list-maintain .list-star li {
    font-size: 1.1rem;
  }

  .video-btn-play {
    transform: translate(-50%, -50%) scale(0.5);
  }

  .video .video-js[tabindex="-1"], .video iframe {
    height: 18.8rem;
  }

  .text-gradient-1.is-delay-200::before {
    animation-delay: 0s;
  }
}