@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500;700&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-btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  text-indent: -9999px;
}
.video-btn-play:before {
  content: "";
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(138, 94, 84, 0.5);
  box-sizing: border-box;
  transition: 0.2s;
  animation: circle-jump 0.5s linear infinite alternate;
}
@keyframes circle-jump {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.video-btn-play:after {
  content: "";
  width: 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(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 101;
  transform: scale(1);
  perspective: 700px;
  font-family: "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(50deg) 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: #c98792;
  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-first-prize .msg-wrap, #msg-second-prize .msg-wrap {
  width: 70%;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  padding: 1rem;
}
#msg-first-prize .msg-content, #msg-second-prize .msg-content {
  overflow-x: hidden;
  padding-right: 0;
  background: #fff;
  padding: 3rem 1.7rem;
}
#msg-first-prize .flex, #msg-second-prize .flex {
  display: flex;
}
#msg-first-prize .flex .img, #msg-second-prize .flex .img {
  width: 44%;
  border: 1px solid #c98792;
  padding: 0.6rem 0.6rem 3rem;
}
#msg-first-prize .flex .img h3, #msg-second-prize .flex .img h3 {
  font-size: 1.8rem;
  color: #fff;
  background-color: #c98792;
  line-height: 1.6;
  margin: 1rem 0 1rem;
}
#msg-first-prize .flex .img p, #msg-second-prize .flex .img p {
  font-size: 1.5rem;
  padding: 0 1rem;
  text-align: center;
  color: #666;
}
#msg-first-prize .flex .txt, #msg-second-prize .flex .txt {
  width: 56%;
  padding-left: 1.5rem;
  text-align: left;
}
#msg-first-prize .flex .txt p, #msg-second-prize .flex .txt p {
  color: #c98792;
  padding-right: 9%;
}
#msg-first-prize .deco-flower-9, #msg-second-prize .deco-flower-9 {
  top: 0%;
  left: 1%;
}
#msg-first-prize .deco-flower-10, #msg-second-prize .deco-flower-10 {
  top: auto;
  bottom: 5%;
  left: auto;
  right: 1%;
}

.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: 52%;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid #c98792;
  background: #fff;
  z-index: 1;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.4s;
}
.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-prev-rose.svg) 40% 50% no-repeat;
  background-size: 60%;
  display: block;
}
.tns-controls button:hover, .tns-controls div:hover, .tns-cus-controls button:hover, .tns-cus-controls div:hover {
  background-color: #c98792;
}
.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;
}
.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;
  transform: scale(-1, 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;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  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: #c98792;
}
.tns-nav button.tns-nav-active:after {
  background-color: #c98792;
  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;
}

html {
  font-size: 1vw;
}

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

.g-wrap {
  font-family: "Noto Sans TC", "microsoft jhenghei", Arial, sans-serif;
  width: 100%;
  margin: 0 auto;
  line-height: 1.8;
  color: #666;
  position: relative;
  text-align: center;
  background-color: #fff;
}
.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;
  background: linear-gradient(to bottom, #76d6f1, #5cbfe2, #439fcd, #2788bd, #18bade);
  border: 0.2rem solid #fff;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
  border-radius: 50rem;
  display: block;
  text-align: center;
  cursor: pointer;
  position: relative;
}
[class*=g-bt-]:before, [class*=g-bt-]:after {
  content: "";
  width: 10rem;
  height: 10rem;
  background: url(../img/icon-flare-blue.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  mix-blend-mode: plus-lighter;
  transition: 0.4s;
  pointer-events: none;
}
[class*=g-bt-]:before {
  top: -5rem;
  left: -15%;
}
[class*=g-bt-]:after {
  bottom: -5rem;
  left: 50%;
}
[class*=g-bt-] u {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50rem;
  overflow: hidden;
}
[class*=g-bt-] u:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #094487, #348bbf);
  position: absolute;
  top: -100%;
  left: 0;
  transition: 0.4s;
}
[class*=g-bt-] span {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 0.3rem 1.5rem 0.7rem;
  border-radius: 50rem;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  display: block;
}
[class*=g-bt-] span:before {
  content: "";
  background: linear-gradient(125deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, white 60%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
[class*=g-bt-]:hover {
  color: #fff;
}
[class*=g-bt-]:hover:before {
  left: 20%;
}
[class*=g-bt-]:hover:after {
  left: 0%;
}
[class*=g-bt-]:hover u:before {
  transform: translateY(100%);
}

.g-bt-2 {
  width: 80%;
  border-radius: 0.3rem;
  background: linear-gradient(to bottom, #7bc2d9 10%, #176387, #071926);
  box-shadow: 0 0 1rem #fff, 0 0 1rem #fff, 0 1rem 2rem rgba(0, 0, 0, 0.5);
}
.g-bt-2 p {
  font-size: 3rem;
  color: #fff;
  display: block;
  letter-spacing: 1.5rem;
  padding: 0.6rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
}
.g-bt-2 b {
  color: #62b5e0;
}
.g-bt-2 span {
  padding: 0;
  font-size: 3rem;
  display: inline-block;
  border-radius: 0;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.2rem;
  margin-left: 2rem;
  font-weight: bold;
}
.g-bt-2 span:before {
  display: none;
}
.g-bt-2:before {
  left: 0%;
}
.g-bt-2:after {
  left: 80%;
}
.g-bt-2:hover {
  filter: brightness(120%);
}

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

.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;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1rem;
  color: #c98792;
}
.g-section h2 span {
  opacity: 0;
  display: inline-block;
}
.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: 0;
  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;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
#g-header .logo {
  width: 9.5rem;
  margin-right: 7rem;
  margin-left: 0.5rem;
}
#g-header nav {
  padding-bottom: 0.6rem;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#g-header nav li {
  display: inline-block;
  margin: 0 1.5rem;
}
#g-header nav li a {
  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: #c98792;
  position: absolute;
  top: 85%;
  left: 0;
  transition: 0.2s;
}
#g-header nav li a:hover {
  color: #c98792;
}
#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: #c98792;
  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;
}

#intro {
  background-color: #f8f4f2;
}
#intro h1 {
  font-size: 3.1rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  line-height: 2;
  color: #c98792;
  background-color: #fff;
  padding-bottom: 1.3rem;
}
#intro .flex {
  display: flex;
  align-items: center;
}
#intro .txt {
  width: 39.1%;
  padding-left: 11.5%;
  padding-right: 2%;
  position: relative;
}
#intro .txt h2 {
  margin-bottom: 2rem;
}
#intro .txt > p {
  text-align: justify;
  margin-bottom: 2rem;
}
#intro .txt > p:last-child {
  margin-bottom: 0;
}
#intro .deco-flower-1 {
  top: 4.4%;
  left: 16.3%;
}
#intro .deco-flower-2 {
  top: auto;
  bottom: -5rem;
  left: 81.8%;
}
#intro .img {
  width: 61.9%;
}
[class^=deco-flower-] {
  width: 7.5rem;
  height: 7.5rem;
  position: absolute;
  background: url(../img/deco-flowers.png);
  background-size: 1000%;
  top: 0;
  left: 0;
}

.deco-flower-1 {
  background-position: 0% 0;
}

.deco-flower-2 {
  background-position: 11.11% 0;
}

.deco-flower-3 {
  background-position: 22.22% 0;
}

.deco-flower-4 {
  background-position: 33.33% 0;
}

.deco-flower-5 {
  background-position: 44.44% 0;
}

.deco-flower-6 {
  background-position: 55.55% 0;
}

.deco-flower-7 {
  background-position: 66.66% 0;
}

.deco-flower-8 {
  background-position: 77.77% 0;
}

.deco-flower-9 {
  background-position: 88.88% 0;
}

.deco-flower-10 {
  background-position: 99.99% 0;
}

#product .tns-wrap {
  width: 78%;
  margin: 3rem auto;
}
#product h3 {
  color: #c98792;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-top: 0.2rem;
}
#product .desc {
  width: 46%;
  margin: 0 auto 2.4rem;
  padding: 0.5rem 0;
  position: relative;
}
#product .desc .deco-flower-3,
#product .desc .deco-flower-4 {
  top: -0.5rem;
}
#product .desc .deco-flower-3 {
  left: -7.8rem;
}
#product .desc .deco-flower-4 {
  right: -8.5rem;
  left: auto;
}
#life-style {
  padding-top: 4.1rem;
  background-color: #f8f4f2;
}
#life-style header h2 {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#life-style header h2 p ~ p {
  margin-left: 1.5rem;
}
#life-style .video {
  width: 60%;
  margin: 1.5rem auto;
  position: relative;
}
#life-style .video video {
  width: 100%;
  display: block;
}
#life-style .deco-flower-5 {
  top: 84%;
  left: 95.2%;
}
#life-style ol {
  width: 60%;
  margin: 3rem auto;
  display: flex;
}
#life-style li {
  width: 50%;
}
#life-style li img {
  max-width: 150%;
  width: 100%;
}
#life-style li .txt {
  width: 85%;
  margin: 2rem auto;
}
#life-style .item-1 img {
  width: 103%;
}
#life-style .item-1 .txt {
  width: 86%;
  text-align: justify;
}
#life-style .item-2 img {
  border: 0.4rem solid #f8f4f2;
}

#kol {
  height: 53.3rem;
}

#lottery {
  background-color: #f8f4f2;
  padding-bottom: 5rem;
}
#lottery header {
  height: 26.3rem;
  color: #fff;
  padding-top: 3.6rem;
  background: url(../img/lottery-2.jpg);
  background-size: 100%;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  position: relative;
}
#lottery header h2 {
  color: #fff;
  margin-bottom: 2rem;
}
#lottery header h2 p {
  display: inline-block;
  margin-bottom: 1rem;
}
#lottery header h2 p ~ p {
  margin-left: 1.5rem;
}
#lottery header > p {
  width: 40%;
  text-align: justify;
  margin: -1.2rem auto 0;
}
#lottery .scenery {
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
  position: absolute;
  top: 85.6%;
  left: 58%;
}
#lottery .scenery:before {
  content: "";
  border: 1px solid #c98792;
  border-radius: 50%;
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  bottom: -0.6rem;
  left: -0.6rem;
}
#lottery .scenery img {
  border-radius: 50%;
}
#lottery .scenery .deco-flower-7 {
  top: 53%;
  left: 81%;
}
#lottery .event {
  width: 60%;
  margin: 2.6rem auto;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}
#lottery .event dt {
  color: #c98792;
  width: 6rem;
  margin-top: 1rem;
}
#lottery .event dd {
  width: 100%;
  font-size: 1.2rem;
}
#lottery .event dd.inline {
  width: calc(100% - 6rem);
  margin-top: 0.8rem;
}
#lottery .event dd.small-text {
  font-size: 1rem;
  padding-right: 45%;
}
#lottery .event dt, #lottery .event dd {
  margin-bottom: 0.2rem;
}
#lottery .prize {
  width: 60%;
  margin: 2.8rem auto;
  display: flex;
  justify-content: space-between;
}
#lottery .prize li {
  width: 48%;
  border: 1px solid #c98792;
  padding: 0.7rem 0.7rem 2.8rem;
  text-align: left;
  position: relative;
  transition: 0.2s;
}
#lottery .prize li:hover {
  background-color: #fff;
}
#lottery .prize img {
  width: 100%;
}
#lottery .prize h3 {
  background-color: #c98792;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0.5rem 0 1.3rem;
  text-align: center;
}
#lottery .prize h3 b {
  font-weight: normal;
}
#lottery .prize h3 b:after {
  content: "|";
  margin: 0 0.5rem;
  position: relative;
  top: -0.2rem;
}
#lottery .prize p {
  text-align: center;
  font-size: 1.4rem;
  color: #666;
}
#lottery .prize .icon-corner-arrow {
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon-corner-arrow.svg);
  background-size: 100%;
  display: block;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
#lottery .prize .deco-flower-8 {
  top: 84%;
  left: -16%;
}
#lottery .rule {
  width: 60%;
  margin: 5rem auto;
  text-align: left;
}
#lottery .rule h4 {
  color: #c98792;
  margin-bottom: 2.2rem;
}
#lottery .rule li {
  line-height: 2;
}

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

  #g-quick a span {
    font-size: 1.4rem;
  }

  html {
    font-size: 3vw;
  }

  #msg-alert .msg-wrap {
    width: 90%;
  }
  #msg-alert .msg-content header {
    font-size: 4.5vw;
  }
  #msg-alert .msg-content .detail {
    font-size: 4vw;
  }

  .msg-box .msg-content .bt {
    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 a {
    font-size: 1.3rem;
  }

  #intro h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    padding: 1rem 0 3rem;
  }
  #intro .flex {
    flex-wrap: wrap;
  }
  #intro .img {
    order: -1;
    width: 100%;
  }
  #intro .txt {
    width: 100%;
    padding-left: 14%;
    padding-right: 14%;
    padding-top: 3rem;
    padding-bottom: 7rem;
  }
  #intro .deco-flower-1 {
    top: 11.4%;
    left: -6.7%;
  }
  #intro .deco-flower-2 {
    top: 72%;
    left: 79.8%;
  }

  #product {
    padding-top: 3rem;
    margin-bottom: 3rem;
  }
  #product .tns-wrap {
    width: 92%;
  }
  #product .desc {
    width: 87%;
  }
  #product .desc .deco-flower-3,
#product .desc .deco-flower-4 {
    top: 0.5rem;
    background-size: 200%;
    background-repeat: no-repeat;
    width: 5rem;
    height: 13rem;
    background-image: url(../img/deco-flowers-m.png);
  }
  #product .desc .deco-flower-3 {
    left: -2.5rem;
    background-position: 0 0;
  }
  #product .desc .deco-flower-4 {
    right: -2.5rem;
    background-position: 100% 0;
  }

  .tns-controls button {
    top: 90%;
    z-index: 3;
  }
  .tns-controls button:nth-of-type(1) {
    left: 6rem;
  }
  .tns-controls button:nth-of-type(2) {
    right: 6rem;
  }

  .tns-nav {
    position: static;
    z-index: 2;
    margin: 1rem 0;
  }

  #tns-product-m ol {
    display: flex;
    flex-wrap: wrap;
  }
  #tns-product-m li {
    width: 50%;
    height: 15rem;
  }

  #life-style header h2 {
    display: block;
  }
  #life-style header h2 p ~ p {
    margin-left: 0;
  }
  #life-style .video {
    width: 100%;
  }
  #life-style ol {
    width: 100%;
  }
  #life-style ol li .txt {
    margin: 2rem auto;
    text-align: justify;
  }
  #life-style .item-1 img {
    width: 100%;
  }
  #life-style .deco-flower-5 {
    top: 84%;
    left: 77.2%;
  }

  .video-btn-play {
    transform: scale(0.8);
  }

  #lottery header {
    background-size: auto 100%;
    background-position: 35% 0;
    height: 40rem;
  }
  #lottery header h2 {
    display: block;
  }
  #lottery header h2 p ~ p {
    margin-left: 0;
  }
  #lottery header > p {
    width: 80%;
  }
  #lottery .scenery {
    top: 70.6%;
    left: 18%;
  }
  #lottery .scenery img {
    width: 100%;
  }
  #lottery .event {
    width: 74%;
    padding-right: 0;
    margin: 12.6rem auto 0;
    text-align: justify;
  }
  #lottery .event dd.small-text {
    padding-right: 0;
  }
  #lottery .prize {
    width: 90%;
  }
  #lottery .prize h3 {
    line-height: 1.3;
    padding: 0.5rem 0;
    font-size: 1.5rem;
  }
  #lottery .prize h3 b {
    display: block;
    border-bottom: 0.15rem solid #fff;
    width: 80%;
    margin: 0 auto 0.5rem;
    padding-bottom: 0.5rem;
  }
  #lottery .prize h3 b:after {
    display: none;
  }
  #lottery .rule {
    width: 80%;
  }
  #lottery .rule h4 {
    margin-bottom: 1rem;
  }

  #msg-first-prize,
#msg-second-prize {
    overflow-y: auto;
  }
  #msg-first-prize .msg-wrap,
#msg-second-prize .msg-wrap {
    width: 90%;
    max-height: 10000rem;
  }
  #msg-first-prize .flex,
#msg-second-prize .flex {
    flex-wrap: wrap;
  }
  #msg-first-prize .flex .img,
#msg-second-prize .flex .img {
    width: 100%;
  }
  #msg-first-prize .flex .txt,
#msg-second-prize .flex .txt {
    width: 100%;
    padding-left: 0;
  }
  #msg-first-prize .flex .txt p,
#msg-second-prize .flex .txt p {
    padding-right: 0;
  }
  #msg-first-prize .deco-flower-10,
#msg-second-prize .deco-flower-10 {
    bottom: 1%;
    right: 3%;
  }
  #msg-first-prize.is-active .msg-wrap,
#msg-second-prize.is-active .msg-wrap {
    top: 0;
    transform: rotateY(0deg) scale(1) translate3d(0, 0, 0);
    margin: 2rem auto;
  }
}