@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap");
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

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

.hide {
  display: none;
}

*:focus {
  outline: none;
}

.video-btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  text-indent: -9999px;
  transform: translate(-50%, -50%);
}
.video-btn-play:before {
  content: "";
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #b06d0c;
  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::before {
  background-color: #cca06f;
}

.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: #543c2c;
  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-story-4 .msg-wrap {
  width: 65%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
#msg-story-4 .msg-content {
  height: 100%;
  padding-right: 0;
}
#msg-story-4 .video-iframe {
  height: 29.2rem;
}

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

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

.tns-wrap {
  position: relative;
}

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

.tns-outer {
  position: relative;
}

.tns-item {
  float: left;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 44%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 1;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.4s;
  background: linear-gradient(to right, #543c2c 0%, #cca06f, transparent 50%) no-repeat;
  background-size: 200%;
  background-position: 100% 0;
}
.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-fff.svg) 50% no-repeat;
  background-size: 50%;
  display: block;
}
.tns-controls button:hover, .tns-controls div:hover, .tns-cus-controls button:hover, .tns-cus-controls div:hover {
  background-position-x: 0;
}
.tns-controls button:hover:before, .tns-controls div:hover:before, .tns-cus-controls button:hover:before, .tns-cus-controls div:hover:before {
  filter: brightness(200%);
}
.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: -2.5rem;
  transform: scale(-1, 1);
}
.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: -2.5rem;
}

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

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

.color-red {
  color: red;
}

.color-yellow {
  color: #fff2b6;
}

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

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

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

html {
  font-size: 1.25vw;
}

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

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

[class*=g-bt-] {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-size: 1.3rem;
  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, #543c2c 0%, #cca06f 50%, #543c2c 100%);
  position: absolute;
  top: 0;
  left: 0%;
  width: 200%;
  height: 100%;
  transition: 0.4s;
  opacity: 0;
}
[class*=g-bt-] span {
  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-next-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.2rem;
  left: 0;
}
[class*=g-bt-]:hover::before {
  left: -100%;
  opacity: 1;
}

.g-bt-2 {
  background: #fff;
}
.g-bt-2::before {
  background: linear-gradient(to right, #fff 0%, #bbb 50%, #fff 100%);
}
.g-bt-2 span {
  letter-spacing: 0.4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #6b5e53;
}
.g-bt-2 span i {
  margin-left: 0.5rem;
  border-color: #6b5e53;
  background-image: url(../img/icon-next-brown.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 h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  display: inline-block;
}
.g-section h2 span {
  opacity: 0;
  display: inline-block;
}
.g-section img {
  width: 100%;
}
.g-section.is-animate h2 span {
  animation: split_text_show_1 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes split_text_show_1 {
  0% {
    opacity: 0;
    transform: translateX(100%) translateY(-100%) rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.g-section.is-animate h2 span:nth-child(1) {
  animation-delay: 0.05s;
}
.g-section.is-animate h2 span:nth-child(2) {
  animation-delay: 0.1s;
}
.g-section.is-animate h2 span:nth-child(3) {
  animation-delay: 0.15s;
}
.g-section.is-animate h2 span:nth-child(4) {
  animation-delay: 0.2s;
}
.g-section.is-animate h2 span:nth-child(5) {
  animation-delay: 0.25s;
}
.g-section.is-animate h2 span:nth-child(6) {
  animation-delay: 0.3s;
}
.g-section.is-animate h2 span:nth-child(7) {
  animation-delay: 0.35s;
}
.g-section.is-animate h2 span:nth-child(8) {
  animation-delay: 0.4s;
}
.g-section.is-animate h2 span:nth-child(9) {
  animation-delay: 0.45s;
}
.g-section.is-animate h2 span:nth-child(10) {
  animation-delay: 0.5s;
}
.g-section.is-animate h2 span:nth-child(11) {
  animation-delay: 0.55s;
}
.g-section.is-animate h2 span:nth-child(12) {
  animation-delay: 0.6s;
}
.g-section.is-animate h2 span:nth-child(13) {
  animation-delay: 0.65s;
}
.g-section.is-animate h2 span:nth-child(14) {
  animation-delay: 0.7s;
}
.g-section.is-animate h2 span:nth-child(15) {
  animation-delay: 0.75s;
}
.g-section.is-animate h2 span:nth-child(16) {
  animation-delay: 0.8s;
}
.g-section.is-animate h2 span:nth-child(17) {
  animation-delay: 0.85s;
}
.g-section.is-animate h2 span:nth-child(18) {
  animation-delay: 0.9s;
}
.g-section.is-animate h2 span:nth-child(19) {
  animation-delay: 0.95s;
}
.g-section.is-animate h2 span:nth-child(20) {
  animation-delay: 1s;
}
.g-section.is-animate h2 p.delay span:nth-child(1) {
  animation-delay: 0.55s;
}
.g-section.is-animate h2 p.delay span:nth-child(2) {
  animation-delay: 0.6s;
}
.g-section.is-animate h2 p.delay span:nth-child(3) {
  animation-delay: 0.65s;
}
.g-section.is-animate h2 p.delay span:nth-child(4) {
  animation-delay: 0.7s;
}
.g-section.is-animate h2 p.delay span:nth-child(5) {
  animation-delay: 0.75s;
}
.g-section.is-animate h2 p.delay span:nth-child(6) {
  animation-delay: 0.8s;
}
.g-section.is-animate h2 p.delay span:nth-child(7) {
  animation-delay: 0.85s;
}
.g-section.is-animate h2 p.delay span:nth-child(8) {
  animation-delay: 0.9s;
}
.g-section.is-animate h2 p.delay span:nth-child(9) {
  animation-delay: 0.95s;
}
.g-section.is-animate h2 p.delay span:nth-child(10) {
  animation-delay: 1s;
}
.g-section.is-animate h2 p.delay span:nth-child(11) {
  animation-delay: 1.05s;
}
.g-section.is-animate h2 p.delay span:nth-child(12) {
  animation-delay: 1.1s;
}
.g-section.is-animate h2 p.delay span:nth-child(13) {
  animation-delay: 1.15s;
}
.g-section.is-animate h2 p.delay span:nth-child(14) {
  animation-delay: 1.2s;
}
.g-section.is-animate h2 p.delay span:nth-child(15) {
  animation-delay: 1.25s;
}
.g-section.is-animate h2 p.delay span:nth-child(16) {
  animation-delay: 1.3s;
}
.g-section.is-animate h2 p.delay span:nth-child(17) {
  animation-delay: 1.35s;
}
.g-section.is-animate h2 p.delay span:nth-child(18) {
  animation-delay: 1.4s;
}
.g-section.is-animate h2 p.delay span:nth-child(19) {
  animation-delay: 1.45s;
}
.g-section.is-animate h2 p.delay span:nth-child(20) {
  animation-delay: 1.5s;
}

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

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

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

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

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

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

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

#product {
  padding-top: 4.9rem;
  padding-bottom: 5.7rem;
}
#product .logo-MH {
  background: url(../img/logo-MH.svg) no-repeat center;
  background-size: 100%;
  width: 28rem;
  height: 3rem;
  text-indent: -9999rem;
  display: block;
  margin: 0 auto;
}
#product h2 p {
  margin-top: 0.4rem;
}
#product .tns-wrap {
  width: 90%;
  margin: 3rem auto 0;
}
#product .tns-controls button {
  top: 78%;
}
#product .tns-controls button:nth-child(1) {
  left: -1rem;
}
#product .tns-controls button:nth-child(2) {
  right: -1rem;
}
[class^=pd-list-] {
  display: flex !important;
}
[class^=pd-list-] li {
  position: relative;
  padding-top: 3rem;
  width: 25%;
}
[class^=pd-list-] li::before {
  content: "";
  width: 86%;
  height: 0;
  padding-bottom: 86%;
  border-radius: 50rem;
  background: #7f6f60;
  position: absolute;
  top: 0;
  left: 7%;
}
[class^=pd-list-] img {
  position: relative;
  width: 91%;
  margin: 0 auto;
}
[class^=pd-list-] h3 {
  font-size: 1.3rem;
  margin-top: 4rem;
  letter-spacing: 0.1rem;
}
[class^=pd-list-] h3 b {
  display: block;
}
[class^=pd-list-] a {
  margin-top: 0.6rem;
}
[class^=pd-list-] .store-only {
  padding: 0.9rem 0;
  color: #fff;
  font-size: 1.3rem;
}
[class^=pd-list-] .store-only:before, [class^=pd-list-] .store-only::after {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border: 1px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
  margin: 0 0.8rem;
}

.pd-list-3 {
  padding-top: 1.5rem;
}
.pd-list-3 h3 {
  margin-top: 5.5rem;
}
.pd-list-3 li {
  width: 20%;
}

#time {
  overflow: hidden;
}
#time .past, #time .now {
  width: 100%;
  height: 35rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 100% 70%;
}
#time img {
  width: 69%;
  position: absolute;
  top: 10%;
  left: 42%;
  opacity: 0;
}
#time header, #time .header {
  width: 44%;
  text-align: left;
  padding: 15.7rem 0 0 4.1rem;
  padding-top: 10rem;
}
#time h2, #time strong {
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  font-weight: normal;
  display: inline-block;
  padding-bottom: 2rem;
}
#time p {
  letter-spacing: 0.1rem;
}
#time .past h2 {
  color: #fff;
}
#time .past p {
  color: #fff;
}
#time.is-animate img {
  animation: img_in_by_right2 1s forwards;
}
@keyframes img_in_by_right2 {
  0% {
    transform: translateX(20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#classic {
  padding-top: 6rem;
}
#classic .taste {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
#classic .taste .img {
  width: 50.5%;
}
#classic .taste .img img {
  border-radius: 4rem;
}
#classic .taste .txt {
  width: 43%;
  text-align: left;
  padding-top: 0.5rem;
}
#classic .taste h2 {
  margin-bottom: 2.5rem;
}
#classic .taste p {
  letter-spacing: 0.1rem;
}
#classic .feature {
  padding-top: 5.5rem;
  padding-bottom: 8.6rem;
}
#classic .feature .img {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 2.8rem auto;
}
#classic .feature li {
  width: 31%;
}
#classic .feature img {
  width: 100%;
  border-top-right-radius: 5.2rem;
  opacity: 0;
}
#classic .feature p {
  letter-spacing: 0.1rem;
}
#classic .feature a {
  margin-top: 3.5rem;
}
#classic .feature.is-animate img {
  animation: img_in_by_right 1s forwards;
}
@keyframes img_in_by_right {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#classic .feature.is-animate li:nth-of-type(1) img {
  animation-delay: 0.2s;
}
#classic .feature.is-animate li:nth-of-type(2) img {
  animation-delay: 0.4s;
}
#classic .feature.is-animate li:nth-of-type(3) img {
  animation-delay: 0.6s;
}

#storys {
  padding-top: 5.5rem;
  background: #404040;
}
#storys::before {
  content: "";
  width: 0.1rem;
  height: 8rem;
  background: #fff;
  position: absolute;
  top: -5rem;
  left: 50%;
}

.list-storys {
  width: 90%;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-storys li {
  width: 49%;
  text-align: left;
  margin-bottom: 3.1rem;
}
.list-storys li:hover .img img {
  transform: scale(1.1);
}
.list-storys .img {
  overflow: hidden;
}
.list-storys img {
  transition: 0.2s;
}
.list-storys h3 {
  letter-spacing: 0.1rem;
  padding: 0.8rem 0;
}

.video-item {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.video-item .video-thumb {
  transition: 0.8s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.4s;
}
.video-item .video-thumb.active {
  opacity: 0;
  pointer-events: none;
}
.video-item .video-thumb:hover img {
  transform: scale(1.1);
}
.video-item .video-iframe {
  width: 100%;
  height: 19.9rem;
  margin: 0 auto;
  position: relative;
}
.video-item .video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

  [class^=g-bt-] i {
    top: -0.1rem;
  }

  #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 .tns-controls button {
    top: 44%;
  }

  [class^=pd-list-] {
    flex-wrap: wrap;
  }
  [class^=pd-list-] li {
    width: 50%;
    margin-bottom: 2rem;
  }
  [class^=pd-list-] h3 {
    margin-top: 2rem;
  }

  .pd-list-3 h3 {
    margin-top: 4rem;
  }
  .pd-list-3 li:nth-of-type(5) {
    margin-left: 25%;
  }

  #time .past, #time .now {
    height: 37rem;
    background-size: 165%;
    background-position: 100% 130%;
  }
  #time header, #time .header {
    width: 80%;
    padding: 6rem 0;
    padding-top: 0;
    margin: 0 auto;
  }
  #time img {
    width: 114%;
    max-width: 200%;
    top: 43%;
    left: 4%;
  }

  #classic {
    overflow: hidden;
    padding-top: 6rem;
  }
  #classic .taste {
    flex-wrap: wrap;
    width: 100%;
  }
  #classic .taste .img {
    width: 100%;
    opacity: 1;
  }
  #classic .taste .img img {
    border-radius: 0;
  }
  #classic .taste .txt {
    width: 80%;
    order: -1;
    margin: 0 auto 3rem;
  }
  #classic .taste.is-animate .img {
    animation: none;
  }
  #classic .feature .img {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  #classic .feature li {
    width: 48%;
  }
  #classic .feature li:first-child {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 1.5rem;
  }
  #classic .feature p {
    width: 80%;
    margin: 0 auto;
  }

  .list-storys {
    width: 100%;
  }
  .list-storys li {
    width: 48%;
  }
  .list-storys h3 {
    padding: 0.8rem 1rem;
    text-align: center;
  }

  .video-item .video-iframe {
    height: 9rem;
  }

  #msg-story-4 .msg-wrap {
    width: 100%;
  }
  #msg-story-4 .msg-wrap > .close {
    top: -3rem;
    right: 0;
  }
  #msg-story-4 .video-iframe {
    height: 18.7rem;
  }

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

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