@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: 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-red.svg) 50% 50% no-repeat;
  background-size: 100%;
  display: block;
  transition: 0.2s;
}
.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 {
  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: #000;
  position: relative;
  text-align: center;
  background: radial-gradient(circle, #fff, transparent 70%), radial-gradient(circle, #fff, transparent 70%), radial-gradient(circle, #fff, transparent 70%), radial-gradient(circle, #fff, transparent 70%), linear-gradient(to right, #ffe7a1, #ffe7a1);
  background-size: 40rem 40rem, 30rem 30rem, 20rem 20rem, 40rem 40rem, 100% 100%;
  background-position: -20% -5%, 90% 15%, 120% 25%, 40% 50%, 0 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.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;
  letter-spacing: 0.1rem;
  border-radius: 50rem;
  color: #8c040e !important;
  border: 1px solid #8c040e;
  overflow: hidden;
}
[class*=g-bt-]:before {
  content: "";
  background: linear-gradient(to right, #fff 0%, #ad1e27 50%, #8c040e 100%);
  position: absolute;
  top: 0;
  left: 0%;
  width: 200%;
  height: 100%;
  transition: 0.4s;
  opacity: 0;
}
[class*=g-bt-] span {
  font-size: 1.1rem;
  padding: 0.2rem 1.1rem;
  position: relative;
  overflow: hidden;
  display: block;
}
[class*=g-bt-] i {
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/icon-arrow-fff.svg) no-repeat center #8c040e;
  background-size: 50%;
  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: #fff;
}
[class*=g-bt-]:hover i {
  background-color: #fff;
  background-image: url(../img/icon-arrow-red.svg);
  transform: translateX(30%);
}
[class*=g-bt-]:hover::before {
  left: -100%;
  opacity: 1;
}

.g-bt-2 {
  border-color: #fff;
}
.g-bt-2::before {
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.7) 50%, #fff 100%);
}
.g-bt-2 span {
  color: #fff;
}
.g-bt-2 i {
  background-color: #fff;
  background-image: url(../img/icon-arrow-red.svg);
}
.g-bt-2:hover span {
  color: #8c040e;
}
.g-bt-2:hover i {
  background-color: #8c040e;
  background-image: url(../img/icon-arrow-fff.svg);
}

.g-bt-3 {
  background-color: #ff7792;
  border: 0;
}
.g-bt-3::before {
  background: linear-gradient(to right, #fff 0%, #f9be3f 50%, #f9be3f 100%);
}
.g-bt-3 span {
  font-size: 1.4rem;
  padding: 0.6rem 3rem 0.6rem 1.5rem;
  color: #fff;
}
.g-bt-3 i {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/icon-q-next-white.svg);
  background-size: 100%;
  background-color: transparent;
  margin-right: 1.5rem;
}
.g-bt-3:hover i {
  background-color: transparent;
  background-image: url(../img/icon-q-next-white.svg);
}

.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 header h2 {
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  display: inline-block;
}
.g-section header h2 span {
  opacity: 0;
  display: inline-block;
}
.g-section header p {
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}
.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: #d39612;
  position: absolute;
  top: 75%;
  left: 0;
  transition: 0.2s;
}
#g-header nav li a:hover {
  color: #d39612;
}
#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: #d39612;
  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;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

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

#product {
  padding-top: 3.6rem;
  overflow: hidden;
}
#product header small {
  display: block;
  font-size: 1.4rem;
}
#product header p {
  margin-top: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0;
}
#product .intro {
  height: 32.2rem;
  position: relative;
  margin-top: 2.4rem;
}
#product .intro .txt {
  position: absolute;
  top: 8%;
  left: 57%;
  width: 31%;
  text-align: left;
  letter-spacing: 0.1rem;
}
#product .intro h3 {
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
}
#product .intro p {
  font-size: 1.1rem;
}
#product .intro [class^=img-] {
  position: absolute;
  opacity: 0;
  background: linear-gradient(to right, #eed796 18%, #fff 25%, #fac76b);
  padding: 0.25rem;
  border-radius: 0.2rem;
}
#product .intro [class^=img-] img {
  border-radius: 0.1rem;
  position: relative;
  z-index: 1;
}
#product .intro [class^=img-]::before {
  content: "";
  width: 98%;
  height: 98%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  border: 0.25rem solid #eed796;
  border-radius: 0.2rem;
}
#product .intro .img-1 {
  width: 45.6%;
  top: 1.1%;
  left: 4.1%;
}
#product .intro .img-1::before {
  top: 1rem;
  left: -1rem;
}
#product .intro .img-2 {
  width: 45.3%;
  top: 14%;
  left: 50.4%;
}
#product .intro .img-2::before {
  top: -1rem;
  left: 1rem;
}
#product .color {
  background: #fff;
  color: #000;
  padding-top: 3.5rem;
  padding-bottom: 5.8rem;
}
#product .color header h3 {
  font-size: 1.7rem;
}
#product .tns-wrap {
  margin-top: 3rem;
}
#product .tns-controls button {
  width: 5.2rem;
  height: 5.2rem;
  top: 27%;
}
#product .tns-controls button:nth-child(1) {
  left: 3%;
}
#product .tns-controls button:nth-child(2) {
  right: 3%;
}
#product.is-animate .intro .img-1, #product.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;
  }
}
#product.is-animate .intro .img-1 {
  animation-delay: 0.2s;
}

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

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

[class^=snowflakes-] {
  width: 100%;
  height: 8.5rem;
  position: absolute;
  left: 0;
}
[class^=snowflakes-] i {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 5.5rem;
  height: 5.5rem;
  position: absolute;
  animation: snowflakes_rotate 10s linear infinite;
}
@keyframes snowflakes_rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
[class^=snowflakes-] i:nth-child(1) {
  background-image: url(../img/snowflake-1.svg);
}
[class^=snowflakes-] i:nth-child(2) {
  background-image: url(../img/snowflake-2.svg);
}
[class^=snowflakes-] i:nth-child(3) {
  background-image: url(../img/snowflake-3.svg);
}
[class^=snowflakes-] i:nth-child(4) {
  background-image: url(../img/snowflake-4.svg);
}
[class^=snowflakes-] i:nth-child(5) {
  background-image: url(../img/snowflake-5.svg);
}
[class^=snowflakes-] i:nth-child(1) {
  top: 23%;
  left: 13%;
  background-size: 72%;
}
[class^=snowflakes-] i:nth-child(2) {
  top: 49%;
  left: 24%;
  background-size: 50%;
}
[class^=snowflakes-] i:nth-child(3) {
  top: 16.8%;
  left: 77.4%;
  background-size: 40.3%;
}
[class^=snowflakes-] i:nth-child(4) {
  top: 52%;
  left: 80.6%;
  background-size: 60%;
}
[class^=snowflakes-] i:nth-child(5) {
  top: 0%;
  left: 84.4%;
}

.snowflakes-1 {
  bottom: 9%;
}

.snowflakes-2 {
  top: 5rem;
}
.snowflakes-2 i:nth-child(1) {
  left: 8.6%;
}
.snowflakes-2 i:nth-child(2) {
  left: 19.7%;
}
.snowflakes-2 i:nth-child(3) {
  left: 73%;
}
.snowflakes-2 i:nth-child(4) {
  left: 76.3%;
}
.snowflakes-2 i:nth-child(5) {
  left: 80.2%;
}

#seasonal {
  padding-top: 4.8rem;
}
#seasonal .sticky-wrap {
  margin-top: 5.6rem;
  position: relative;
}
#seasonal nav {
  width: 100%;
}
#seasonal nav ol {
  width: 84%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-items: flex-end;
}
#seasonal nav li {
  width: 50%;
  border: #efe2b4 0.25rem solid;
  border-radius: 1rem;
  box-shadow: inset 0 0 1rem rgba(255, 255, 255, 0.5);
  background-color: #fef9df;
  position: relative;
  z-index: 1;
}
#seasonal nav li::before {
  content: "";
  width: 6.4rem;
  height: 3rem;
  background: url(../img/icon-chuchu.svg) no-repeat 50% 100%;
  background-size: 100%;
  position: absolute;
  bottom: 100%;
  left: 40.9%;
  display: none;
}
#seasonal nav li::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #face6d;
  border: 0.25rem solid #ffc104;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  position: absolute;
  top: calc(100% - .9rem);
  left: calc(50% - .7rem);
  -webkit-mask-image: linear-gradient(135deg, transparent 50%, #000 50.1%);
          mask-image: linear-gradient(135deg, transparent 50%, #000 50.1%);
  display: none;
}
#seasonal nav li.active {
  border-color: #ffc104;
  background-color: #f9be3f;
}
#seasonal nav li.active::before, #seasonal nav li.active:after {
  display: block;
}
#seasonal nav li.active a {
  color: #fff;
}
#seasonal nav a {
  display: block;
  font-size: 2rem;
  padding: 0.5rem 0;
  color: #b99e65;
  line-height: 2.3;
  transition: 0.4s;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}
#seasonal .tab-content {
  box-shadow: 0 0 3rem rgba(211, 150, 18, 0.5);
  border: 0.1rem solid #efe2b4;
  background: #fff;
  border-radius: 2rem;
  position: fixed;
  width: 94%;
  height: 41rem;
  margin: -3rem auto 0;
  top: 1000%;
  opacity: 0;
  pointer-events: none;
  transition: 1s;
}
#seasonal .tab-content.active {
  opacity: 1;
  pointer-events: auto;
  position: static;
}
#seasonal .tab-content.is-animate [class^=img-] {
  animation: img_in_by_right 1s forwards;
}
#seasonal .tab-content.is-animate .img-2 {
  animation-delay: 0.2s;
}
#seasonal .tab-content.is-animate .img-3 {
  animation-delay: 0.4s;
}
#seasonal [class^=intro-] {
  position: relative;
  height: 30rem;
}
#seasonal [class^=intro-] .txt {
  position: absolute;
  top: 47.5%;
  left: 63.8%;
  width: 30%;
  text-align: left;
  letter-spacing: 0.1rem;
}
#seasonal [class^=intro-] h3 {
  font-size: 1.3rem;
  margin-bottom: 1.6rem;
}
#seasonal [class^=intro-] p {
  font-size: 1rem;
  line-height: 1.6;
}
#seasonal [class^=intro-] .g-bt-3 {
  margin-top: 2.7rem;
}
#seasonal [class^=intro-] [class^=img-] {
  position: absolute;
  opacity: 0;
  background: linear-gradient(to bottom, #eed796 18%, #fff 25%, #fac76b);
  padding: 0.2rem;
  border-radius: 0.2rem;
}
#seasonal [class^=intro-] [class^=img-] img {
  border-radius: 0.1rem;
}
#seasonal [class^=intro-] .img-1 {
  width: 40.9%;
  top: 23.7%;
  left: 11.1%;
}
#seasonal [class^=intro-] .img-2 {
  width: 16.5%;
  top: 80.8%;
  left: 11.1%;
}
#seasonal [class^=intro-] .img-3 {
  width: 23.8%;
  top: 80.8%;
  left: 28.3%;
}
#seasonal .intro-2 [class^=img-] {
  border-radius: 0.5rem;
}
#seasonal .intro-2 [class^=img-] img {
  border-radius: 0.3rem;
}
#seasonal .intro-2 .img-1 {
  width: 47.3%;
  top: 32.8%;
  left: 7.7%;
}
#seasonal .intro-2 .img-1 img {
  border-radius: 0.1rem;
  position: relative;
  z-index: 1;
}
#seasonal .intro-2 .img-1::before {
  content: "";
  width: 98%;
  height: 98%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 1rem;
  left: -1rem;
  border: 0.25rem solid #eed796;
  border-radius: 0.2rem;
}
#seasonal .intro-2 .img-2 {
  width: 18%;
  top: 14%;
  left: 32%;
}
#seasonal .intro-2 .img-3 {
  width: 21.8%;
  left: 32%;
  bottom: -3.1%;
}

.tab-pager {
  position: absolute;
  top: 44%;
  left: 81.9%;
  display: flex;
}
.tab-pager .prev, .tab-pager .next {
  width: 3rem;
  height: 3rem;
  display: block;
  margin-right: 0.5rem;
  cursor: pointer;
  z-index: 1;
}
.tab-pager .prev::before, .tab-pager .next::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/icon-next-yellow.svg);
  background-size: 100%;
  display: block;
}
.tab-pager .prev.is-disabled, .tab-pager .next.is-disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.5;
}
.tab-pager .prev:before {
  transform: scale(-1, 1);
}

#store {
  padding-top: 5.8rem;
  padding-bottom: 6rem;
}
#store header h2 {
  letter-spacing: 0.1rem;
}
#store .card {
  width: 73%;
  margin: 3.2rem auto;
  background: linear-gradient(to right, #eed796 18%, #fff 25%, #fac76b);
  padding: 0.25rem;
  border-radius: 2rem;
}
#store img {
  border-top-left-radius: 1.8rem;
  border-top-right-radius: 1.8rem;
}
#store .txt {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  padding: 1.9rem 0;
  background: #fff;
  color: #000;
  border-bottom-left-radius: 1.8rem;
  border-bottom-right-radius: 1.8rem;
}
#store .txt a:hover {
  color: #d39612;
  text-decoration: underline;
}
#store h3 {
  color: #d39612;
  font-size: 1.6rem;
  margin: 1.8rem auto 0;
}
#store u {
  font-size: 0.9rem;
  text-decoration: none;
}

.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: #d39612;
}
.video .video-js .vjs-big-play-button:hover {
  background-color: #d39612;
}
.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-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 {
    overflow: hidden;
  }
  #product .intro .img-1 {
    width: 65.6%;
    top: 0;
    left: 6.1%;
  }
  #product .intro .img-2 {
    width: 65.3%;
    top: 39%;
    left: 27.4%;
  }
  #product .intro .img-2::before {
    top: 1rem;
  }
  #product .tns-wrap {
    width: 96%;
    margin: 0 auto;
  }
  #product .tns-controls button {
    top: 38%;
    width: 3.2rem;
    height: 3.2rem;
  }
  #product .color {
    padding-bottom: 3.8rem;
  }

  #tns-product {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  #tns-product > .tns-item {
    width: 50% !important;
  }
  #tns-product .pd-list-1 li:nth-child(1), #tns-product .pd-list-1 li:nth-child(2) {
    width: 34%;
  }
  #tns-product .pd-list-1 li:nth-child(1) img, #tns-product .pd-list-1 li:nth-child(2) img {
    width: 98%;
  }
  #tns-product .pd-list-1 li:nth-child(3), #tns-product .pd-list-1 li:nth-child(4), #tns-product .pd-list-1 li:nth-child(5) {
    width: 33.3%;
  }
  #tns-product .pd-list-1 li:nth-child(3) img, #tns-product .pd-list-1 li:nth-child(4) img, #tns-product .pd-list-1 li:nth-child(5) img {
    width: 100%;
  }
  #tns-product .pd-list-2 li {
    width: 34%;
  }
  #tns-product .pd-list-2 li img {
    width: 100%;
  }

  [class^=pd-list-] {
    flex-wrap: wrap;
  }
  [class^=pd-list-] li {
    width: 50%;
    float: left;
  }

  #seasonal nav ol {
    width: 96%;
  }
  #seasonal nav a {
    font-size: 1.6rem;
  }
  #seasonal nav li::before {
    left: 30.9%;
  }
  #seasonal .tab-content {
    height: 50rem;
  }
  #seasonal [class^=intro-] {
    height: 42rem;
  }
  #seasonal [class^=intro-] .txt {
    position: static;
    width: 80%;
    margin: 0 auto;
    padding-top: 31rem;
  }
  #seasonal [class^=intro-] .g-bt-3 {
    margin-top: 1rem;
  }
  #seasonal .tab-pager {
    display: none;
  }
  #seasonal .intro-1 .img-1 {
    width: 74.9%;
    top: 12.7%;
    left: 12.1%;
  }
  #seasonal .intro-1 .img-2 {
    width: 29.7%;
    top: 45.5%;
    left: 12.1%;
  }
  #seasonal .intro-1 .img-3 {
    width: 42.8%;
    top: 45.5%;
    left: 44.3%;
  }
  #seasonal .intro-2 .img-1 {
    width: 80.3%;
    top: 20.8%;
    left: 10.7%;
  }

  #store header p {
    letter-spacing: 0.005rem;
  }
  #store .card {
    width: 90%;
  }
  #store .txt {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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