@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;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;
  overflow: hidden;
}

.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: 2.5rem;
  height: 2.5rem;
  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-white.svg) 50% 50% no-repeat;
  background-size: 100%;
  display: block;
  transition: 0.2s;
}
.tns-controls button:hover:before, .tns-controls div:hover:before, .tns-cus-controls button:hover:before, .tns-cus-controls div:hover:before {
  background-image: url(../img/icon-next-white-solid.svg);
  transform: scale(1.2);
}
.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: 1rem;
  height: 1rem;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  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: #fff;
}
.tns-nav button.tns-nav-active:after {
  background-color: #fff;
  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.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: #fff;
  position: relative;
  text-align: center;
  background-color: #b50110;
  background-size: 100%;
  transition: 1s background-color;
}
.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;
}
.g-wrap.bg-color-gold {
  background-color: #d5b36b;
}

[class*=g-bt-] {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.1rem;
  border-radius: 50rem;
  color: #fff !important;
  border: 1px solid #fff;
  overflow: hidden;
}
[class*=g-bt-]:before {
  content: "";
  background: linear-gradient(to right, #d5b36b 0%, #fff 50%, #fff 100%);
  position: absolute;
  top: 0;
  left: 0%;
  width: 200%;
  height: 100%;
  transition: 0.4s;
  opacity: 0;
}
[class*=g-bt-] span {
  font-size: 1.3rem;
  padding: 0.3rem 1.1rem;
  position: relative;
  overflow: hidden;
  display: block;
}
[class*=g-bt-] i {
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/icon-arrow-fff.svg) no-repeat center;
  background-size: 50%;
  border: 1px solid #fff;
  border-radius: 50rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
  left: 0.2rem;
  transition: 0.4s;
}
[class*=g-bt-]:hover span {
  color: #d5b36b;
}
[class*=g-bt-]:hover i {
  border-color: #d5b36b;
  background-color: #fff;
  background-image: url(../img/icon-arrow-yellow.svg);
  transform: translateX(30%);
}
[class*=g-bt-]:hover::before {
  left: -100%;
  opacity: 1;
}

.g-bt-2 {
  background: #b50110;
  border-width: 0;
}

.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;
  overflow: hidden;
}
.g-section header h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
  color: #d5b36b;
}
.g-section header h2 span {
  opacity: 0;
  display: inline-block;
}
.g-section header h3 {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0;
  padding: 0.9rem 0;
}
.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: 1rem 0;
  letter-spacing: 0.1rem;
  display: block;
  position: relative;
}
#g-header nav li a:after {
  content: "";
  width: 0;
  height: 0.2rem;
  background: #b50110;
  position: absolute;
  top: 75%;
  left: 0;
  transition: 0.2s;
}
#g-header nav li a:hover {
  color: #b50110;
}
#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: #b50110;
  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;
}

.logo-carousel-collection {
  width: 18rem;
  height: 8rem;
  display: block;
  margin: 0 auto;
  background: linear-gradient(to right, #AE8127, #F1C263, #AE8127, #F1C263, #AE8127, #AE8127, #F1C263, #AE8127, #F1C263, #AE8127);
  background-size: 200%;
  -webkit-mask-image: url(../img/logo-carousel-collection.svg);
          mask-image: url(../img/logo-carousel-collection.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation: bg_x_infinite linear 4s infinite;
}
@keyframes bg_x_infinite {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -200%;
  }
}

.icon-horse {
  width: 8rem;
  height: 5.6rem;
  background: url(../img/icon-horse.png);
  background-size: 400%;
  display: block;
  position: absolute;
  animation: horse_run 0.6s steps(4, end) infinite;
}
@keyframes horse_run {
  0% {
    transform: translateY(-5%);
    background-position-x: 0;
  }
  100% {
    transform: translateY(5%);
    background-position-x: 400%;
  }
}

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

#collection {
  padding-top: 3.6rem;
}
#collection .intro {
  height: 43.4rem;
  position: relative;
}
#collection .txt {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 34%;
  text-align: left;
  letter-spacing: 0.1rem;
}
#collection p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
#collection [class^=img-] {
  position: absolute;
  opacity: 0;
}
#collection .img-1 {
  width: 49%;
  top: 9.2%;
  left: 45.7%;
}
#collection .img-2 {
  width: 32.8%;
  top: 49.8%;
  left: 22.1%;
}
#collection .icon-horse {
  top: 62%;
  left: 5.6%;
}
#collection.is-animate .intro .img-1, #collection.is-animate .intro .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;
  }
}
#collection.is-animate .intro .img-1 {
  animation-delay: 0.2s;
}

[class^=img-] {
  border: 0.3rem solid #ad1e27;
  border-radius: 0.2rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  position: relative;
}
[class^=img-]:before, [class^=img-]::after {
  content: "";
  width: 100%;
  height: 0.25rem;
  position: absolute;
  left: 0;
  background: #d5b36b;
}
[class^=img-]::before {
  top: 0;
}
[class^=img-]::after {
  bottom: 0;
}

#product {
  padding-bottom: 3.2rem;
}
#product .tns-wrap {
  margin-top: 3.7rem;
}
#product .tns-controls button {
  top: 76%;
}
#product .tns-controls button:nth-child(1) {
  left: 5%;
}
#product .tns-controls button:nth-child(2) {
  right: 5%;
}
#product > p {
  font-size: 1rem;
  margin-top: 1.5rem;
}
#product .btns {
  margin-top: 1.8rem;
}

[class^=pd-list-] {
  display: flex !important;
  justify-content: center;
}
[class^=pd-list-] li {
  position: relative;
  width: 16.2rem;
}

#tns-product li:hover img {
  transform: translateY(-5%);
}
#tns-product img {
  width: 92%;
  margin: 0 auto;
  transition: 0.2s;
}
#tns-product h3 {
  margin-top: -0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  font-size: 1.3rem;
  position: relative;
}
#tns-product a {
  margin-top: 0.4rem;
  letter-spacing: 0.1rem;
}

#luck {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.9rem 0;
}
#luck .txt {
  width: 34%;
  text-align: left;
  padding-left: 4.5%;
  padding-right: 2%;
}
#luck .txt h2 {
  padding-bottom: 1.5rem;
}
#luck .txt p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
#luck .img-1 {
  width: 50%;
  order: -1;
}
#luck .icon-horse {
  top: 24%;
  left: 84%;
}

#holiday header h2 {
  padding-bottom: 1rem;
}
#holiday header p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
#holiday ol {
  width: 83.6%;
  display: flex;
  justify-content: space-between;
  margin: 1.5rem auto;
}
#holiday li {
  width: 32%;
  text-align: left;
  opacity: 0;
}
#holiday li .img {
  border: 0.3rem solid #ad1e27;
  border-radius: 0.2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
#holiday li h3 {
  font-weight: bold;
  margin-top: 1rem;
}
#holiday li p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  padding-left: 1.7rem;
}
#holiday.is-animate li {
  animation: img_in_by_right 1s forwards;
}
#holiday.is-animate li:nth-of-type(1) {
  animation-delay: 0.2s;
}
#holiday.is-animate li:nth-of-type(2) {
  animation-delay: 0.4s;
}
#holiday.is-animate li:nth-of-type(3) {
  animation-delay: 0.6s;
}

.icon-knot {
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/icon-knot.svg);
  background-size: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
  position: relative;
  top: -0.1rem;
}

#recipes .tns-controls button {
  top: 27.5%;
}
#recipes .tns-controls button:nth-child(1) {
  left: 38.5%;
}
#recipes .tns-controls button:nth-child(2) {
  right: 53.8%;
}

.dish-1 > .flex,
.dish-2 > .flex {
  display: flex;
  padding: 5.9rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.dish-1 .txt,
.dish-2 .txt {
  width: 42%;
  text-align: left;
}
.dish-1 .h2,
.dish-2 .h2 {
  color: #fac76b;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  padding-bottom: 1rem;
}
.dish-1 h3,
.dish-2 h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.dish-1 h4,
.dish-2 h4 {
  color: #b50110;
  font-size: 1rem;
  padding: 0 0.5rem;
  background: #fff;
  border-radius: 50rem;
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
}
.dish-1 h4 ~ .flex,
.dish-2 h4 ~ .flex {
  display: flex;
  justify-content: space-between;
}
.dish-1 li,
.dish-2 li {
  font-size: 1rem;
  text-align: left;
}
.dish-1 .list-dot li,
.dish-2 .list-dot li {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 1rem;
}
.dish-1 .list-dot li::before,
.dish-2 .list-dot li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: #fff;
  border-radius: 50%;
}
.dish-1 .img-1, .dish-1 .img-2,
.dish-2 .img-1,
.dish-2 .img-2 {
  width: 52%;
}
.dish-1 .icon-horse,
.dish-2 .icon-horse {
  top: 79%;
  left: 36%;
}

.dish-1 .list-dot:nth-of-type(1) {
  width: 57%;
}
.dish-1 .list-dot:nth-of-type(2) {
  width: 30%;
}

#gift {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 0 8rem;
}
#gift .txt {
  width: 34%;
  text-align: left;
  padding-left: 4.5%;
  padding-right: 2%;
}
#gift .txt h3 {
  padding-bottom: 0.5rem;
}
#gift .txt p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
#gift .img-1 {
  width: 51%;
  order: -1;
  opacity: 0;
}
#gift .icon-horse {
  top: 77%;
  left: 84%;
}
#gift.is-animate .img-1 {
  animation: img_in_by_right 1s forwards;
}

.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: #fac76b;
  opacity: 0.5;
  text-align: center;
  display: block;
  padding: 0.5rem 0 1.1rem;
}
.video .video-js .vjs-control-bar {
  background: #fac76b;
}
.video .video-js .vjs-load-progress div {
  background: #b50110;
}
.video .video-js .vjs-big-play-button:hover {
  background-color: #b50110;
}
.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: #fac76b;
}
.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 header h3 {
    font-size: 1.7rem;
  }

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

  #collection {
    padding-top: 3rem;
  }
  #collection .intro {
    height: 50rem;
  }
  #collection .txt {
    width: 80%;
    margin: 0 auto;
    position: static;
    padding-top: 29rem;
  }
  #collection .img-1 {
    width: 80%;
    top: 4%;
    left: 0;
  }
  #collection .img-2 {
    width: 60%;
    top: 31%;
    left: auto;
    right: 0;
  }
  #collection .icon-horse {
    top: 53%;
    left: 13.6%;
  }
  #collection p {
    font-size: 1.3rem;
  }

  #product {
    padding: 2rem 0 3rem;
  }
  #product .tns-wrap {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5rem;
  }
  #product .tns-controls button {
    top: calc(100% + 1.8rem);
    width: 3.2rem;
    height: 3.2rem;
    z-index: 4;
  }
  #product .tns-controls button:nth-child(1) {
    left: 30%;
  }
  #product .tns-controls button:nth-child(2) {
    right: 30%;
  }
  #product .tns-nav {
    bottom: -5rem;
  }
  #product > p {
    width: 80%;
    font-size: 1.3rem;
    margin: 2rem auto;
    text-align: left;
  }
  #product .pd-list-3 li {
    width: 100%;
    padding-left: 25%;
    padding-right: 25%;
  }

  [class^=g-bt-] span {
    font-size: 1.5rem;
  }

  #tns-product {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  [class^=pd-list-] {
    flex-wrap: wrap;
  }
  [class^=pd-list-] li {
    width: 50%;
  }

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

  #luck {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  #luck .txt {
    width: 90%;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
  }
  #luck .txt p {
    width: 89%;
    font-size: 1.3rem;
    text-align: left;
    margin: 0 auto;
  }
  #luck .img-1 {
    width: 100%;
    order: 2;
  }
  #luck .icon-horse {
    top: 3rem;
    left: 35%;
  }

  #holiday header p {
    width: 80%;
    font-size: 1.3rem;
    text-align: left;
    margin: 0 auto;
  }
  #holiday ol {
    display: block;
    width: 100%;
  }
  #holiday li {
    width: 100%;
    height: 11.4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #holiday li h3 {
    font-size: 1.7rem;
  }
  #holiday li p {
    font-size: 1.3rem;
  }
  #holiday li .img {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }
  #holiday li:nth-child(even) {
    padding-left: 50%;
    padding-right: 5%;
  }
  #holiday li:nth-child(odd) {
    padding-right: 50%;
    padding-left: 0;
  }
  #holiday li:nth-child(odd) .img {
    right: 0;
    left: auto;
  }

  #recipes {
    width: 80%;
    margin: 0 auto;
    padding: 4rem 0;
  }
  #recipes header {
    margin-bottom: 1rem;
  }
  #recipes .tns-wrap {
    padding-bottom: 4rem;
  }
  #recipes .tns-nav {
    bottom: -2rem;
    position: relative;
  }
  #recipes .tns-controls button {
    top: auto;
    bottom: -1.5rem;
    z-index: 4;
  }
  #recipes .tns-controls button:nth-child(1) {
    left: 25%;
  }
  #recipes .tns-controls button:nth-child(2) {
    right: 25%;
  }

  .dish-1, .dish-2 {
    width: 100%;
  }
  .dish-1 .flex, .dish-2 .flex {
    padding: 0;
    display: block;
  }
  .dish-1 .txt, .dish-2 .txt {
    width: 100%;
  }
  .dish-1 .h2, .dish-2 .h2 {
    display: none;
  }
  .dish-1 h3, .dish-2 h3 {
    font-size: 1.7rem;
    text-align: center;
  }
  .dish-1 h4, .dish-2 h4 {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
  .dish-1 h4 ~ .flex, .dish-2 h4 ~ .flex {
    display: block;
  }
  .dish-1 li, .dish-2 li {
    font-size: 1.2rem;
  }
  .dish-1 .img-1, .dish-1 .img-2, .dish-2 .img-1, .dish-2 .img-2 {
    width: 100%;
  }
  .dish-1 .list-dot li, .dish-2 .list-dot li {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  }
  .dish-1 .list-dot li::before, .dish-2 .list-dot li::before {
    top: 0.7rem;
  }
  .dish-1 .icon-horse, .dish-2 .icon-horse {
    display: none;
  }

  .dish-1 .list-dot:nth-of-type(1), .dish-1 .list-dot:nth-of-type(2) {
    width: 100%;
  }

  #gift {
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 10rem;
  }
  #gift .img-1 {
    width: 100%;
    position: static;
  }
  #gift .txt {
    width: 80%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 2rem;
  }
  #gift .txt h2 {
    display: block;
  }
  #gift .txt h2, #gift .txt h3 {
    text-align: center;
  }
  #gift .txt h3 {
    font-size: 1.7rem;
  }
  #gift .txt p {
    font-size: 1.3rem;
  }
  #gift .icon-horse {
    top: 84%;
    left: 38%;
  }
}