@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.fast {
  animation-duration: 1s;
}

.animated.slow {
  animation-duration: 2s;
}

.delay01 {
  animation-delay: 0.5s;
}

.delay02 {
  animation-delay: 1s;
}

.delay03 {
  animation-delay: 1.5s;
}

.delay04 {
  animation-delay: 2s;
}

.delay05 {
  animation-delay: 2.5s;
}

.delay06 {
  animation-delay: 3s;
}

.delay07 {
  animation-delay: 3.5s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 1s;
}

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.backInDown {
  animation-name: backInDown;
}

@keyframes UpDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes UpDown_m {
  from {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10%, 10%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.UpDown {
  animation-name: UpDown;
}

@keyframes line_ani {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.line_ani {
  animation-name: line_ani;
}

@keyframes picSway {
  from, to {
    transform-origin: top center;
  }
  0%, 100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes fadeinright {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeinleft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 0) scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: translate(0, 0) scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: translate(0, 0) scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: translate(0, 0) scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: translate(0, 0) scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInOut {
  from {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.slideInOut {
  animation-name: slideInOut;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.pc {
  display: block !important;
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile {
    display: block !important;
  }
}

.bg-gray {
  background-color: #f2f2f2;
}

.overflow-hidden {
  overflow: hidden;
  position: relative;
}

.news-detail .header,
.product_detail .header,
.brand-spirit .header,
.brand-story .header,
.recruit .header {
  box-shadow: 0px 0px 20px rgba(128, 128, 128, 0.2);
}

.product_detail .section {
  padding: 50px 0 0 !important;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  font-family: "Noto Sans TC", sans-serif;
  overflow: hidden;
}
.wrapper img {
  width: 100%;
  max-width: 100%;
  font-size: 0;
  display: block;
}
.wrapper .top-icon {
  position: fixed;
  width: 80px;
  right: 1%;
  bottom: 1%;
  z-index: 10;
  padding: 8px 8px;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .top-icon {
    width: 48px;
    right: 32px;
    bottom: 30px;
    padding: 0;
  }
}
.wrapper .header {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-top: 7px solid #cd2b14;
}
.wrapper .header::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 7px;
  background-color: #e8bb00;
  top: -7px;
  right: 0;
}
.wrapper .header .header-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1920px;
  padding: 46px 0;
}
@media (max-width: 767px) {
  .wrapper .header .header-content {
    padding: 26px 0px;
  }
}
.wrapper .header .header-content .logo {
  display: block;
  width: 15%;
}
@media (max-width: 767px) {
  .wrapper .header .header-content .logo {
    width: 226px;
  }
}
.wrapper .header .header-content .logo p {
  overflow: hidden;
  display: inline-block;
  height: 1px;
  width: 1px;
}
.wrapper .header .header-content .logo img {
  width: 226px;
  margin-left: 15px;
}
@media (max-width: 767px) {
  .wrapper .header .header-content .logo img {
    margin-left: 0;
  }
}
.wrapper .header .header-content .mobile-menu {
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none;
    background-color: white;
    top: 0;
    right: 0;
    animation: slideInRight 0.5s both;
    border-top: 7px solid #cd2b14;
  }
}
.wrapper .header .header-content .mobile-menu.active {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu.active {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 7px;
    background-color: #e8bb00;
    top: -7px;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu.hidden {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    animation: slideInOut 0.5s both;
  }
}
.wrapper .header .header-content .mobile-menu .social-link-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu .social-link-group {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .header .header-content .mobile-menu .social-link-group .search-group {
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu .social-link-group .search-group {
    display: none;
  }
}
.wrapper .header .header-content .mobile-menu .social-link-group .search-group .icon-search {
  margin: 7px 10px 0px 0px;
  width: 16px;
  cursor: pointer;
}
.wrapper .header .header-content .mobile-menu .social-link-group .search-group .search-button {
  line-height: 30px;
  cursor: pointer;
  margin-right: 45px;
  position: relative;
}
.wrapper .header .header-content .mobile-menu .social-link-group .search-group .search-button:before {
  content: "";
  position: absolute;
  right: -25px;
  bottom: 5px;
  width: 1px;
  height: 20px;
  background-color: rgba(128, 128, 128, 0.4);
}
.wrapper .header .header-content .mobile-menu .social-link-group .social-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  -ms-flex-pack: end;
      justify-content: flex-end;
  transform: translateY(-8px);
  margin-top: 16px;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu .social-link-group .social-link {
    margin-bottom: 20px;
  }
}
.wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_line,
.wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_fb,
.wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_ig,
.wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_email {
  width: 20px;
  margin: 4px 6px;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_line,
  .wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_fb,
  .wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_ig,
  .wrapper .header .header-content .mobile-menu .social-link-group .social-link .icon_email {
    width: 26px;
    margin: 0px 14px 10px;
  }
}
.wrapper .header .header-content .mobile-menu .social-link-group .social-link .ml {
  margin-left: 12px;
}
.wrapper .header .header-content .mobile-menu .social-link-group .input-group {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .mobile-menu .social-link-group .input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    background-color: rgba(238, 238, 238, 0.4);
    padding: 15px 42px 15px 8px;
    border-radius: 20px;
    width: 100%;
    max-width: 215px;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
}
.wrapper .header .header-content .mobile-menu .social-link-group .input-group input {
  border: none;
  text-align: center;
  width: 100%;
  outline: none;
  background-color: transparent;
}
.wrapper .header .header-content .mobile-menu .social-link-group .input-group .icon-search {
  position: absolute;
  width: 18px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper .header .header-content .menu {
  max-width: 650px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 10;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .wrapper .header .header-content .menu {
    max-width: 550px;
  }
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .menu {
    padding-top: 50px;
    margin-bottom: 62px;
  }
}
.wrapper .header .header-content .menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .menu ul {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    padding-top: 50px;
  }
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .menu ul li {
    margin: 16px 0px;
  }
}
.wrapper .header .header-content .menu ul li a {
  position: relative;
  color: #ce2b13;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 15px;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .menu ul li a {
    padding-bottom: 0;
  }
}
.wrapper .header .header-content .menu ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #ce2b13;
  height: 2px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media (min-width: 767px) {
  .wrapper .header .header-content .menu ul li a:hover::before {
    left: 0;
    right: 0;
  }
}
.wrapper .header .header-content .hamburger-btn {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .hamburger-btn {
    display: block;
    position: absolute;
    padding: 30px 20px;
    right: -2px;
    top: 30%;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
  }
}
.wrapper .header .header-content .hamburger-btn .hamburger-menu,
.wrapper .header .header-content .hamburger-btn .hamburger-menu:after,
.wrapper .header .header-content .hamburger-btn .hamburger-menu:before {
  width: 30px;
  height: 2px;
  border-radius: 25px;
}
.wrapper .header .header-content .hamburger-btn .hamburger-menu {
  position: relative;
  display: block;
  background: #cd2b14;
  transition: all 0ms 300ms;
}
.wrapper .header .header-content .hamburger-btn .hamburger-menu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #cd2b14;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .header-content .hamburger-btn .hamburger-menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #cd2b14;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .header-content .hamburger-btn-m {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper .header .header-content .hamburger-btn-m {
    display: block;
    position: absolute;
    padding: 30px 20px;
    right: 8%;
    top: 2.5%;
    cursor: pointer;
    z-index: 99;
    pointer-events: auto;
  }
}
.wrapper .header .header-content .hamburger-btn-m .hamburger-menu,
.wrapper .header .header-content .hamburger-btn-m .hamburger-menu:after,
.wrapper .header .header-content .hamburger-btn-m .hamburger-menu:before {
  width: 30px;
  height: 3px;
  border-radius: 25px;
}
.wrapper .header .header-content .hamburger-btn-m .hamburger-menu {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0);
  transition: all 0ms 300ms;
}
.wrapper .header .header-content .hamburger-btn-m .hamburger-menu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #cd2b14;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .header-content .hamburger-btn-m .hamburger-menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #cd2b14;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .header-content .all-website-search {
  display: none;
  position: relative;
  max-width: 1000px;
  width: 100%;
  height: 60px;
  margin: 0px auto;
}
.wrapper .header .header-content .all-website-search .search-bar {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 60px;
  background-color: rgb(238, 238, 238);
  border-radius: 30px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  padding: 0px 185px 0px 35px;
  outline: none;
  box-sizing: border-box;
}
.wrapper .header .header-content .all-website-search .icon-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translate(0px, -50%);
}
.wrapper .header .header-content .all-website-search .icon-wrap .icon {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  margin-top: 4px;
}
.wrapper .header .header-content .all-website-search .icon-wrap .text {
  text-decoration: none;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-right: 32px;
}
.wrapper .header .header-content .all-website-search .icon-wrap .close-search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e0b830;
  cursor: pointer;
}
.wrapper .header .header-content .all-website-search .icon-wrap .close-search span {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
  transform: rotate(45deg);
  transition: 0.5s;
}
.wrapper .header .header-content .all-website-search .icon-wrap .close-search span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper .header .header-content .all-website-search .icon-wrap .close-search span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper .kv {
  max-width: 1844px;
  display: -ms-flexbox;
  display: flex;
  color: white;
  padding: 0px 15px;
  font-weight: bold;
  box-sizing: border-box;
  margin: 0 auto;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (max-width: 767px) {
  .wrapper .kv {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .kv .col {
  width: 49.173%;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wrapper .kv .col {
    width: 100%;
    margin-bottom: 15px;
  }
}
.wrapper .kv .col .swiper {
  position: relative;
}
.wrapper .kv .col .swiper .swiper-pagination {
  text-align: left;
  padding-left: 60px;
  bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .kv .col .swiper .swiper-pagination {
    text-align: center;
    bottom: 20px;
    padding-left: 0;
  }
}
.wrapper .kv .col .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  position: relative;
  background-color: #fff;
  margin-right: 20px;
}
.wrapper .kv .col .swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 5px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
.wrapper .kv .col .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.wrapper .kv .col .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: #e8ba00;
}
.wrapper .kv .col .swiper .swiper-pagination .swiper-pagination-bullet:only-child {
  display: none;
}
.wrapper .main {
  height: 310px;
  background-image: url("../img/main_bg.jpg");
  background-size: cover;
  background-position: center center;
}
@media (max-width: 767px) {
  .wrapper .main {
    height: 260px;
  }
}
.wrapper .main .main-title {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 0 55px;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .wrapper .main .main-title {
    padding: 0 0 28px;
  }
}
.wrapper .main .main-title h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .main .main-title h1 {
    position: relative;
    font-size: 26px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.wrapper .main .main-title h1 span {
  margin: 0px 5px;
}
@media (max-width: 767px) {
  .wrapper .main .main-title h1 span {
    display: block;
    margin-bottom: 5px;
  }
}
.wrapper .main .main-title h1::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../img/titile-icon-01-w.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .wrapper .main .main-title h1::before {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 10px;
    top: 0;
  }
}
.wrapper .main .main-title h1::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../img/titile-icon-02-w.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .wrapper .main .main-title h1::after {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 0;
  }
}
.wrapper .main .main-title p {
  font-size: 20px;
  margin-top: -3px;
  letter-spacing: 1px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .wrapper .main .main-title p {
    padding: 0px 30px;
    font-size: 18px;
  }
}
.wrapper .listGroup {
  position: relative;
  padding: 25px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .wrapper .listGroup {
    padding: 25px 0 0;
  }
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list {
    position: relative;
    width: 210px;
    margin: 0 auto;
    border: 2px solid #ff4c4c;
    border-radius: 5px;
    box-sizing: border-box;
  }
}
.wrapper .listGroup .list .l-list_select {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list .l-list_select {
    text-align: center;
    position: relative;
    color: #4b4b4b;
    font-size: 1rem;
    padding: 12px 0;
    display: block;
    cursor: pointer;
  }
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list .l-list_select:after {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #ff4c4c transparent transparent transparent;
    top: 20px;
    right: 20px;
  }
}
.wrapper .listGroup .list > ul {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul {
    width: 210px;
    position: absolute;
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
    border: 2px solid #ff4c4c;
    border-radius: 5px;
    z-index: 10;
    padding: 10px 20px;
    box-sizing: border-box;
    right: -2px;
    left: -2px;
  }
}
.wrapper .listGroup .list > ul li {
  position: relative;
}
.wrapper .listGroup .list > ul li:last-child::after {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li:last-child a {
    border-bottom: none;
  }
}
.wrapper .listGroup .list > ul li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #ff4c4c;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li::after {
    display: none;
  }
}
.wrapper .listGroup .list > ul li a {
  position: relative;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 20px;
  color: #737373;
  padding: 0 35px;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li a {
    font-size: 16px;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #c8423f;
    color: #4b4b4b;
    font-weight: bold;
  }
}
@media (min-width: 1201px) {
  .wrapper .listGroup .list > ul li a:hover span::after {
    left: 0;
    right: 0;
  }
}
.wrapper .listGroup .list > ul li a span {
  position: relative;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .listGroup .list > ul li a span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #ff4c4c;
  height: 2px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.wrapper .listGroup .list > ul li a .icon {
  width: 40px;
  height: 40px;
  background-color: #ff4c4c;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 50px;
  margin-right: 5px;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li a .icon {
    display: none;
  }
}
.wrapper .listGroup .list > ul li a .icon img {
  width: auto;
}
.wrapper .listGroup .list > ul li.l-btn {
  position: relative;
}
.wrapper .listGroup .list > ul li.l-btn::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ff4c4c transparent transparent transparent;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li.l-btn::before {
    top: 20px;
  }
}
.wrapper .listGroup .list > ul li .l-select {
  position: absolute;
  display: none;
  width: 100%;
  top: calc(100% + 10px);
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li .l-select {
    position: relative;
    top: 0;
    display: none;
  }
}
.wrapper .listGroup .list > ul li .l-select ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  border: 2px solid #ff4c4c;
  border-radius: 5px;
  z-index: 10;
  padding: 10px 20px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li .l-select ul {
    border: none;
  }
}
.wrapper .listGroup .list > ul li .l-select ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  top: 100%;
  right: 0;
  transform: translateY(0);
}
.wrapper .listGroup .list > ul li .l-select ul li a {
  display: block;
  padding: 10px;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1200px) {
  .wrapper .listGroup .list > ul li .l-select ul li a {
    color: #4b4b4b;
  }
}
@media (min-width: 767px) {
  .wrapper .listGroup .list > ul li .l-select ul li a:hover {
    color: #ff4c4c;
  }
}
@media (max-width: 767px) {
  .wrapper .section.bg-r + .section {
    padding: 50px 0 0;
  }
}
.wrapper .section {
  padding: 50px 0;
}
.wrapper .section.bg-r {
  background-color: #e3242b;
}
.wrapper .section.bg-r .index-layout-title {
  color: #fff;
}
.wrapper .section.bg-r .index-layout-title h2::before {
  content: "";
  background-image: url("../img/titile-icon-01-w.svg");
}
.wrapper .section.bg-r .index-layout-title h2::after {
  content: "";
  background-image: url("../img/titile-icon-02-w.svg");
}
.wrapper .section.pt-0 {
  padding-top: 0;
}
.wrapper .section.pb-0 {
  padding-bottom: 0;
}
.wrapper .section .index-layout-title {
  padding: 0 0 55px;
  text-align: center;
  color: #000;
}
@media (max-width: 767px) {
  .wrapper .section .index-layout-title {
    padding: 0 0 28px;
  }
}
.wrapper .section .index-layout-title h2 {
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .section .index-layout-title h2 {
    font-size: 30px;
  }
}
.wrapper .section .index-layout-title h2::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../img/titile-icon-01.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}
.wrapper .section .index-layout-title h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../img/titile-icon-02.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 5px;
}
.wrapper .section .index-layout-title .info {
  position: relative;
  font-weight: bold;
  font-size: 28px;
  margin: -2px 0px 15px 0px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .section .index-layout-title .info {
    font-size: 24px;
  }
}
.wrapper .section .index-layout-title .info2 {
  font-weight: bold;
  font-size: 20px;
  margin-top: -3px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .wrapper .section .index-layout-title .info2 {
    padding: 0px 30px;
    font-size: 16px;
  }
}
.wrapper .section .news {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrapper .section .news {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.wrapper .section .news .news-item {
  width: 245px;
  text-decoration: none;
  display: block;
  text-align: center;
  margin: 0 4%;
  box-sizing: border-box;
  margin-bottom: 130px;
}
@media (max-width: 767px) {
  .wrapper .section .news .news-item {
    width: calc(50% - 10px);
    margin: 0;
    margin-right: 20px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .wrapper .section .news .news-item:nth-child(even) {
    margin-right: 0;
  }
}
.wrapper .section .news .news-item .photo {
  width: 100%;
  padding-top: 100%;
  background-size: 100%;
  margin-bottom: 50px;
  background-position: center;
  border-radius: 50%;
  transition: 0.3s ease all;
}
@media (max-width: 767px) {
  .wrapper .section .news .news-item .photo {
    margin-bottom: 20px;
  }
}
@media (min-width: 767px) {
  .wrapper .section .news .news-item .photo:hover {
    background-size: 110%;
    transition: 0.3s ease all;
  }
}
.wrapper .section .news .news-item .d-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .wrapper .section .news .news-item .d-flex {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .section .news .news-item .d-flex .news-date {
  color: #c8423f;
  font-size: 18px;
  display: block;
}
@media (max-width: 767px) {
  .wrapper .section .news .news-item .d-flex .news-date {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.wrapper .section .news .news-item .d-flex .news-category {
  color: #808080;
  margin-left: 10px;
}
.wrapper .section .news .news-item h3 {
  max-width: 250px;
  margin: 0 auto;
  color: #444444;
  line-height: 26px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .section .news .news-item h3 {
    font-size: 16px;
  }
}
.wrapper .section .more-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.wrapper .section .more-icon a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  color: #000;
}
.wrapper .section .more-icon a img {
  width: 30px;
  margin-bottom: 15px;
}
.wrapper .section .more-icon a span {
  font-size: 14px;
}
.wrapper .section .breadcrum-box {
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
}
@media (max-width: 767px) {
  .wrapper .section .breadcrum-box {
    width: 100%;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .section .breadcrum-box a {
  font-size: 20px;
  text-decoration: none;
  color: #000;
  padding-left: 0.5rem;
  transition: 0.3s ease all;
}
@media (max-width: 767px) {
  .wrapper .section .breadcrum-box a {
    font-size: 16px;
  }
}
.wrapper .section .breadcrum-box a:hover {
  color: #cc3333;
  transition: 0.3s ease all;
}
.wrapper .section .breadcrum-box span {
  display: inline-block;
  margin: 0px 5px;
  font-size: 1.25rem;
}
.wrapper .section .breadcrum-box .breadcrum-item + .breadcrum-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  padding-right: 0;
  margin-right: 10px;
  vertical-align: 4px;
  border: 1px solid #000;
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
}
.wrapper .section .breadcrum-box p {
  padding-left: 0.5rem;
  font-size: 20px;
  color: #cc3333;
}
@media (max-width: 767px) {
  .wrapper .section .breadcrum-box p {
    font-size: 16px;
  }
}
.wrapper .section .detail-box {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
}
.wrapper .section .detail-box .news-box {
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-box {
    padding: 0 20px 15px;
  }
}
.wrapper .section .detail-box .news-box .social-box {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-box .social-box {
    display: none;
  }
}
.wrapper .section .detail-box .news-box .social-box .link-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 15px;
}
.wrapper .section .detail-box .news-box .social-box .link-icon img {
  width: 12px;
}
.wrapper .section .detail-box .news-box .social-box .link-icon p {
  padding-left: 10px;
}
.wrapper .section .detail-box .news-box .social-box .social-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .section .detail-box .news-box .social-box .social-group a {
  width: 20px;
  margin: 0 5px;
}
.wrapper .section .detail-box .news-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-title {
    padding: 0 20px;
  }
}
.wrapper .section .detail-box .news-title p {
  font-size: 16px;
  margin-bottom: 10px;
}
.wrapper .section .detail-box .news-title h1 {
  font-size: 30px;
  margin-bottom: 30px;
  display: block;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-title h1 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-title .d-flex {
    display: -ms-flexbox;
    display: flex;
  }
}
.wrapper .section .detail-box .news-title .d-flex .social-group {
  display: none;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-title .d-flex .social-group {
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}
.wrapper .section .detail-box .news-title .d-flex .social-group a {
  width: 20px;
  margin: 0 5px;
}
.wrapper .section .detail-box .news-detail-sw {
  position: relative;
  overflow: hidden;
}
.wrapper .section .detail-box .news-detail-sw .swiper-pagination {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box .news-detail-sw .swiper-pagination {
    padding: 30px 0;
  }
}
.wrapper .section .detail-box .news-detail-sw .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.wrapper .section .detail-box .news-detail-sw .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df2e2e;
}
.wrapper .section .detail-box + .discover-box {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-box + .discover-box {
    margin-top: 50px;
  }
}
.wrapper .section .detail-product-swiper {
  position: relative;
  width: 1200px;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto 100px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper {
    margin: 0 auto 30px;
  }
}
.wrapper .section .detail-product-swiper .swiper {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper {
    padding: 0;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide {
    padding-bottom: 20px;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  color: #000;
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide .icon {
  position: absolute;
  font-size: 14px;
  padding-bottom: 3px;
  background-repeat: no-repeat;
  top: 0;
  font-weight: bold;
  left: 0;
  color: #fff;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 1;
  width: 52px;
  height: 42px;
  font-size: 12px;
  top: -7%;
  left: 25%;
  transition: 0.3s ease all;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide .icon {
    width: 60px;
    height: 48px;
    font-size: 14px;
    left: 22%;
    top: 0;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide .icon.icon_new {
  background: url(../img/icon-new.svg);
  background-repeat: no-repeat;
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide .icon.icon_best {
  background: url(../img/icon-best.svg);
  background-repeat: no-repeat;
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide img {
  width: 40%;
  margin: 0 auto 30px;
  transition: 0.3s ease all;
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide p {
  font-size: 16px;
  color: #e3242b;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide p {
    font-size: 12px;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide h3 {
    font-size: 16px;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide h4 {
  font-size: 18px;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide h4 {
    font-size: 12px;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide-active .icon {
  padding-bottom: 5px;
  width: 70px;
  height: 58px;
  font-size: 14px;
  top: -31%;
  left: 12%;
  transition: 0.3s ease all;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide-active .icon {
    width: 60px;
    height: 48px;
    font-size: 14px;
    left: 22%;
    top: 0;
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide-active img {
  transform: scale(1.6);
  transform-origin: bottom;
  transition: 0.3s ease all;
}
@media (max-width: 767px) {
  .wrapper .section .detail-product-swiper .swiper .swiper-wrapper .swiper-slide-active img {
    transform: scale(1);
  }
}
.wrapper .section .detail-product-swiper .swiper .swiper-button-prev {
  background-image: url("../img/arrow.svg");
  top: 36%;
  background-size: 60%;
  margin-top: 0;
}
.wrapper .section .detail-product-swiper .swiper .swiper-button-next {
  background-image: url("../img/arrow-02.svg");
  top: 36%;
  background-size: 60%;
  margin-top: 0;
}
.wrapper .section .detail-product-swiper .swiper .swiper-pagination {
  position: relative;
  padding: 20px 0;
}
.wrapper .section .detail-product-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  position: relative;
  background-color: #b2b2b2;
  margin-right: 25px;
  opacity: 1;
}
.wrapper .section .detail-product-swiper .swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
.wrapper .section .detail-product-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #df2e2e;
}
.wrapper .section .detail-product-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: #df2e2e;
}
.wrapper .section .detail-product-swiper .swiper .swiper-pagination .swiper-pagination-bullet:only-child {
  display: none;
}
.wrapper .section .discover-box {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #e8ba00;
  border-radius: 10px;
  padding: 65px 60px 75px 60px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .section .discover-box {
    padding: 55px 0 60px 0;
  }
}
.wrapper .section .discover-box .discover {
  text-align: center;
  margin-bottom: 50px;
}
.wrapper .section .discover-box .discover span {
  font-size: 30px;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .section .discover-box .discover span {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.wrapper .section .discover-box .discover p {
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .section .discover-box .discover p {
    font-size: 18px;
  }
}
.wrapper .section .discover-box .info-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.wrapper .section .discover-box .info-group .group {
  position: relative;
  width: 50%;
}
.wrapper .section .discover-box .info-group .group:last-child::before {
  display: none;
}
.wrapper .section .discover-box .info-group .group::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper .section .discover-box .info-group .group a {
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #000;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .wrapper .section .discover-box .info-group .group a {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
  }
}
.wrapper .section .discover-box .info-group .group a .news-img {
  max-width: 200px;
  width: 100%;
  margin-right: 30px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 992px) {
  .wrapper .section .discover-box .info-group .group a .news-img {
    max-width: 70%;
    margin: 0 auto;
  }
}
.wrapper .section .discover-box .info-group .group a .content {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 767px) {
  .wrapper .section .discover-box .info-group .group a .content {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.wrapper .section .discover-box .info-group .group a .content .info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
  margin-bottom: 10px;
}
.wrapper .section .discover-box .info-group .group a .content .info .date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.wrapper .section .discover-box .info-group .group a .content .info .date .year {
  font-size: 12px;
  max-width: 30px;
  width: 100%;
  margin-right: 4px;
  margin-bottom: 5px;
}
.wrapper .section .discover-box .info-group .group a .content .info .date .moth-day {
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}
.wrapper .section .discover-box .info-group .group a .content .info .type {
  font-size: 14px;
  padding-left: 5px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.wrapper .section .discover-box .info-group .group a .content .open {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 767px) {
  .wrapper .section .discover-box .info-group .group a .content .open {
    font-size: 16px;
  }
}
.wrapper .section .discover-box .info-group .group a .content .more {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .section .discover-box .info-group .group a .content .more .icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.wrapper .section .product,
.wrapper .section .about {
  max-width: 1430px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .wrapper .section .product,
  .wrapper .section .about {
    padding-top: 30px;
  }
}
.wrapper .section .product .product-item,
.wrapper .section .product .about-item,
.wrapper .section .about .product-item,
.wrapper .section .about .about-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 767px) {
  .wrapper .section .product .product-item:hover .photo img,
  .wrapper .section .product .about-item:hover .photo img,
  .wrapper .section .about .product-item:hover .photo img,
  .wrapper .section .about .about-item:hover .photo img {
    transform: scale(1.05);
    transition: 0.5s ease all;
  }
}
.wrapper .section .product .product-item.bg-pink,
.wrapper .section .product .about-item.bg-pink,
.wrapper .section .about .product-item.bg-pink,
.wrapper .section .about .about-item.bg-pink {
  background-color: #fce9e9;
}
.wrapper .section .product .product-item.bg-pink .product-info .more-btn,
.wrapper .section .product .product-item.bg-pink .about-info .more-btn,
.wrapper .section .product .about-item.bg-pink .product-info .more-btn,
.wrapper .section .product .about-item.bg-pink .about-info .more-btn,
.wrapper .section .about .product-item.bg-pink .product-info .more-btn,
.wrapper .section .about .product-item.bg-pink .about-info .more-btn,
.wrapper .section .about .about-item.bg-pink .product-info .more-btn,
.wrapper .section .about .about-item.bg-pink .about-info .more-btn {
  background-color: #fe8989;
}
.wrapper .section .product .product-item.bg-yellow,
.wrapper .section .product .about-item.bg-yellow,
.wrapper .section .about .product-item.bg-yellow,
.wrapper .section .about .about-item.bg-yellow {
  background-color: #fffedc;
}
.wrapper .section .product .product-item.bg-yellow .product-info .more-btn,
.wrapper .section .product .product-item.bg-yellow .about-info .more-btn,
.wrapper .section .product .about-item.bg-yellow .product-info .more-btn,
.wrapper .section .product .about-item.bg-yellow .about-info .more-btn,
.wrapper .section .about .product-item.bg-yellow .product-info .more-btn,
.wrapper .section .about .product-item.bg-yellow .about-info .more-btn,
.wrapper .section .about .about-item.bg-yellow .product-info .more-btn,
.wrapper .section .about .about-item.bg-yellow .about-info .more-btn {
  background-color: #e8ba00;
}
.wrapper .section .product .product-item .photo,
.wrapper .section .product .about-item .photo,
.wrapper .section .about .product-item .photo,
.wrapper .section .about .about-item .photo {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .wrapper .section .product .product-item .photo,
  .wrapper .section .product .about-item .photo,
  .wrapper .section .about .product-item .photo,
  .wrapper .section .about .about-item .photo {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
  }
}
.wrapper .section .product .product-item .photo img,
.wrapper .section .product .about-item .photo img,
.wrapper .section .about .product-item .photo img,
.wrapper .section .about .about-item .photo img {
  transition: 0.5s ease all;
}
.wrapper .section .product .product-item .product-info,
.wrapper .section .product .product-item .about-info,
.wrapper .section .product .about-item .product-info,
.wrapper .section .product .about-item .about-info,
.wrapper .section .about .product-item .product-info,
.wrapper .section .about .product-item .about-info,
.wrapper .section .about .about-item .product-info,
.wrapper .section .about .about-item .about-info {
  position: relative;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 0;
}
@media (max-width: 960px) {
  .wrapper .section .product .product-item .product-info,
  .wrapper .section .product .product-item .about-info,
  .wrapper .section .product .about-item .product-info,
  .wrapper .section .product .about-item .about-info,
  .wrapper .section .about .product-item .product-info,
  .wrapper .section .about .product-item .about-info,
  .wrapper .section .about .about-item .product-info,
  .wrapper .section .about .about-item .about-info {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
    padding: 30px 20px;
  }
}
.wrapper .section .product .product-item .product-info .cover,
.wrapper .section .product .product-item .about-info .cover,
.wrapper .section .product .about-item .product-info .cover,
.wrapper .section .product .about-item .about-info .cover,
.wrapper .section .about .product-item .product-info .cover,
.wrapper .section .about .product-item .about-info .cover,
.wrapper .section .about .about-item .product-info .cover,
.wrapper .section .about .about-item .about-info .cover {
  opacity: 0.3;
  position: absolute;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}
.wrapper .section .product .product-item .product-info .icon,
.wrapper .section .product .product-item .about-info .icon,
.wrapper .section .product .about-item .product-info .icon,
.wrapper .section .product .about-item .about-info .icon,
.wrapper .section .about .product-item .product-info .icon,
.wrapper .section .about .product-item .about-info .icon,
.wrapper .section .about .about-item .product-info .icon,
.wrapper .section .about .about-item .about-info .icon {
  width: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .section .product .product-item .product-info .icon,
  .wrapper .section .product .product-item .about-info .icon,
  .wrapper .section .product .about-item .product-info .icon,
  .wrapper .section .product .about-item .about-info .icon,
  .wrapper .section .about .product-item .product-info .icon,
  .wrapper .section .about .product-item .about-info .icon,
  .wrapper .section .about .about-item .product-info .icon,
  .wrapper .section .about .about-item .about-info .icon {
    margin-bottom: 10px;
  }
}
.wrapper .section .product .product-item .product-info h3,
.wrapper .section .product .product-item .about-info h3,
.wrapper .section .product .about-item .product-info h3,
.wrapper .section .product .about-item .about-info h3,
.wrapper .section .about .product-item .product-info h3,
.wrapper .section .about .product-item .about-info h3,
.wrapper .section .about .about-item .product-info h3,
.wrapper .section .about .about-item .about-info h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .section .product .product-item .product-info h3,
  .wrapper .section .product .product-item .about-info h3,
  .wrapper .section .product .about-item .product-info h3,
  .wrapper .section .product .about-item .about-info h3,
  .wrapper .section .about .product-item .product-info h3,
  .wrapper .section .about .product-item .about-info h3,
  .wrapper .section .about .about-item .product-info h3,
  .wrapper .section .about .about-item .about-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.wrapper .section .product .product-item .product-info h3 span,
.wrapper .section .product .product-item .about-info h3 span,
.wrapper .section .product .about-item .product-info h3 span,
.wrapper .section .product .about-item .about-info h3 span,
.wrapper .section .about .product-item .product-info h3 span,
.wrapper .section .about .product-item .about-info h3 span,
.wrapper .section .about .about-item .product-info h3 span,
.wrapper .section .about .about-item .about-info h3 span {
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .section .product .product-item .product-info h3 span,
  .wrapper .section .product .product-item .about-info h3 span,
  .wrapper .section .product .about-item .product-info h3 span,
  .wrapper .section .product .about-item .about-info h3 span,
  .wrapper .section .about .product-item .product-info h3 span,
  .wrapper .section .about .product-item .about-info h3 span,
  .wrapper .section .about .about-item .product-info h3 span,
  .wrapper .section .about .about-item .about-info h3 span {
    margin-bottom: 5px;
  }
}
.wrapper .section .product .product-item .product-info p,
.wrapper .section .product .product-item .about-info p,
.wrapper .section .product .about-item .product-info p,
.wrapper .section .product .about-item .about-info p,
.wrapper .section .about .product-item .product-info p,
.wrapper .section .about .product-item .about-info p,
.wrapper .section .about .about-item .product-info p,
.wrapper .section .about .about-item .about-info p {
  font-size: 18px;
  color: #000;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .section .product .product-item .product-info p,
  .wrapper .section .product .product-item .about-info p,
  .wrapper .section .product .about-item .product-info p,
  .wrapper .section .product .about-item .about-info p,
  .wrapper .section .about .product-item .product-info p,
  .wrapper .section .about .product-item .about-info p,
  .wrapper .section .about .about-item .product-info p,
  .wrapper .section .about .about-item .about-info p {
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
.wrapper .section .product .product-item .product-info .more-btn,
.wrapper .section .product .product-item .about-info .more-btn,
.wrapper .section .product .about-item .product-info .more-btn,
.wrapper .section .product .about-item .about-info .more-btn,
.wrapper .section .about .product-item .product-info .more-btn,
.wrapper .section .about .product-item .about-info .more-btn,
.wrapper .section .about .about-item .product-info .more-btn,
.wrapper .section .about .about-item .about-info .more-btn {
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
.wrapper .section .product .product-item .about-info .cover,
.wrapper .section .product .about-item .about-info .cover,
.wrapper .section .about .product-item .about-info .cover,
.wrapper .section .about .about-item .about-info .cover {
  opacity: 1;
}
.wrapper .section.product-list {
  background-color: #fce9e9;
}
@media (max-width: 767px) {
  .wrapper .section.product-list {
    padding-bottom: 0;
  }
}
.wrapper .section.product-list .content {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .wrapper .section.product-list .content {
    width: 100%;
  }
}
.wrapper .section.product-list .content .product-item {
  width: calc(25% - 30px);
  margin: 30px 15px;
  text-align: center;
  position: relative;
}
@media (max-width: 960px) {
  .wrapper .section.product-list .content .product-item {
    width: calc(50% - 20px);
    margin: 30px 10px;
  }
}
@media (min-width: 767px) {
  .wrapper .section.product-list .content .product-item:hover a {
    color: #fec400;
    transition: 0.3s ease all;
  }
  .wrapper .section.product-list .content .product-item:hover a .photo {
    border: 2px solid #fec400;
    transition: 0.3s ease all;
  }
}
.wrapper .section.product-list .content .product-item a {
  color: #000;
  text-decoration: none;
  transition: 0.3s ease all;
}
.wrapper .section.product-list .content .product-item a h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .section.product-list .content .product-item a h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.wrapper .section.product-list .content .product-item a h4 {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .wrapper .section.product-list .content .product-item a h4 {
    font-size: 12px;
  }
}
.wrapper .section.product-list .content .product-item a .photo {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 22px;
  border: 2px solid #fff;
  margin-bottom: 20px;
  transition: 0.3s ease all;
}
.wrapper .section.product-list .content .product-item a .photo .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 12px;
  top: 15px;
  left: 15px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .wrapper .section.product-list .content .product-item a .photo .icon {
    width: 32px;
    height: 32px;
    top: 10px;
    left: 10px;
    font-size: 10px;
  }
}
.wrapper .section.product-list .content .product-item a .photo .icon.icon-new {
  background-color: #e9b503;
  color: #fff;
}
.wrapper .section.product-list .content .product-item a .photo .icon.icon-best {
  background-color: #e3242b;
  color: #fff;
}
@media (max-width: 767px) {
  .wrapper .section.product-list .back-btn {
    background-color: #fff;
  }
}
.wrapper .section .product-box {
  max-width: 1320px;
  margin: 0 auto;
}
.wrapper .section .product-box .breadcrum-box {
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 50px;
}
.wrapper .section .product-box .product_detail {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 960px) {
  .wrapper .section .product-box .product_detail {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .section .product-box .product_detail .photo {
  position: relative;
  width: 50%;
  padding-right: 3.65vw;
}
@media (max-width: 960px) {
  .wrapper .section .product-box .product_detail .photo {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.wrapper .section .product-box .product_detail .photo .icon {
  width: 85px;
  height: 70px;
  position: absolute;
  font-size: 14px;
  padding-bottom: 5px;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  color: #fff;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 960px) {
  .wrapper .section .product-box .product_detail .photo .icon {
    width: 70px;
    height: 55px;
    left: 10vw;
  }
}
.wrapper .section .product-box .product_detail .photo .icon.icon_new {
  background: url(../img/icon-new.svg);
  background-repeat: no-repeat;
}
.wrapper .section .product-box .product_detail .photo .icon.icon_best {
  background: url(../img/icon-best.svg);
  background-repeat: no-repeat;
}
.wrapper .section .product-box .product_detail .product-main {
  width: 50%;
  padding-left: 3.65vw;
}
@media (max-width: 960px) {
  .wrapper .section .product-box .product_detail .product-main {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .px-md {
    padding: 0 20px;
  }
}
.wrapper .section .product-box .product_detail .product-main .info {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 30px;
  padding: 0 20px 30px;
}
.wrapper .section .product-box .product_detail .product-main .info .time {
  font-weight: 300;
  font-size: 18px;
  color: #ce2b13;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .info .time {
    font-size: 16px;
  }
}
.wrapper .section .product-box .product_detail .product-main .info h2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .info h2 {
    font-size: 22px;
  }
}
.wrapper .section .product-box .product_detail .product-main .info h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .info h3 {
    font-size: 18px;
  }
}
.wrapper .section .product-box .product_detail .product-main .info p {
  max-width: 460px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 200;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .info p {
    font-size: 16px;
  }
}
.wrapper .section .product-box .product_detail .product-main dl {
  margin-bottom: 20px;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dd {
  width: 15%;
  font-size: 18px;
  font-weight: 600;
  border-right: 1px solid #000;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main dl .d-flex dd {
    width: 20%;
    font-size: 16px;
    white-space: nowrap;
    padding-right: 10px;
  }
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt {
  width: 80%;
  font-size: 18px;
  padding-left: 30px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main dl .d-flex dt {
    font-size: 16px;
    padding-left: 20px;
  }
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt .star-all {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt .star-all img {
  width: 20px;
  margin-right: 5px;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt ul {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  opacity: 0.5;
  margin-right: 20px;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #000;
  margin-right: 5px;
}
.wrapper .section .product-box .product_detail .product-main dl .d-flex dt ul li.active {
  opacity: 1;
}
.wrapper .section .product-box .product_detail .product-main .news-btn {
  text-decoration: none;
  padding: 15px 0px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  min-width: 145px;
  max-width: 145px;
  display: inline-block;
  text-align: center;
  margin: 3px 6px 35px 6px;
  background-color: #ff5f5f;
  color: #fff;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .news-btn {
    font-size: 14px;
    min-width: 130px;
    max-width: 130px;
  }
}
.wrapper .section .product-box .product_detail .product-main .btn-group {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .section .product-box .product_detail .product-main .btn-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapper .section .product-box .product_detail .product-main .btn-group a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  min-width: 145px;
  max-width: 145px;
  text-align: center;
  margin: 3px 6px;
  border-radius: 10px;
  box-sizing: border-box;
}
.wrapper .section .product-box .product_detail .product-main .btn-group a.s-btn {
  background-color: #fff;
  border: 2px #eee solid;
  padding: 5px 0px;
}
.wrapper .section .product-box .product_detail .product-main .btn-group a.s-btn img {
  width: auto;
  margin-right: 10px;
  max-height: 32px;
}
.wrapper .section .product-box .product_detail .product-main .btn-group a.e-btn {
  background-color: #fff;
  border: 2px #eee solid;
  padding: 5px 0px;
}
.wrapper .section .product-box .product_detail .product-main .btn-group a.e-btn img {
  width: auto;
  margin-right: 10px;
  max-height: 32px;
}
.wrapper .section .product-box .product_detail .product-main .btn-group a.download-btn {
  background-color: #e8ba00;
  color: #443e24;
  padding: 10px 0;
}
.wrapper .section .product-box .product_detail .product-main .btn-group a.download-btn img {
  width: auto;
  margin-right: 10px;
  max-height: 21px;
}
.wrapper .section .product-box .product_detail .product-main .share-box {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .section .product-box .product_detail .product-main .share-box .link-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 15px;
}
.wrapper .section .product-box .product_detail .product-main .share-box .link-icon img {
  width: 12px;
}
.wrapper .section .product-box .product_detail .product-main .share-box .link-icon p {
  padding-left: 10px;
}
.wrapper .section .product-box .product_detail .product-main .share-box .social-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .section .product-box .product_detail .product-main .share-box .social-group a {
  width: 20px;
  margin: 0 5px;
}
.wrapper .section .recommend-products {
  background-color: #fffedc;
  padding: 50px 0;
}
.wrapper .section .recommend-products .recommend-title {
  text-align: center;
  margin-bottom: 30px;
}
.wrapper .section .recommend-products .recommend-title h2 {
  font-size: 22px;
  color: #e60012;
  letter-spacing: 1.5px;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 767px) {
  .wrapper .section .recommend-products .recommend-title h2 {
    font-size: 18px;
  }
}
.wrapper .section .recommend-products .recommend-title h2 span {
  font-size: 30px;
  display: block;
  font-weight: 800;
}
@media (max-width: 767px) {
  .wrapper .section .recommend-products .recommend-title h2 span {
    font-size: 24px;
    margin-bottom: 5px;
  }
}
.wrapper .section .recommend-products .detail-product-swiper {
  margin: 0 auto;
}
.wrapper .section .pdf-btn {
  background-color: #f9f8f4;
  padding: 50px 0;
  text-align: center;
}
.wrapper .section .pdf-btn p {
  font-size: 16px;
}
.wrapper .section .pdf-btn span {
  margin-left: 5px;
}
.wrapper .section .pdf-btn a {
  position: relative;
  text-decoration: none;
  color: #ff4c4c;
}
.wrapper .section .pdf-btn a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ff4c4c;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  transition: 0.5s;
}
.wrapper .back-btn {
  text-align: center;
  padding: 50px 0;
}
.wrapper .back-btn a {
  color: #e0a92f;
  font-size: 16px;
  text-decoration: none;
}
.wrapper .back-btn a img {
  width: 35px;
  margin: 0 auto 5px;
}
.wrapper .product-step {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .wrapper .product-step {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wrapper .product-step {
    padding-top: 25px;
  }
}
.wrapper .product-step .photo {
  width: 40%;
  background-size: cover;
  background-position: center right;
}
@media (max-width: 1400px) {
  .wrapper .product-step .photo {
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .wrapper .product-step .photo {
    width: 100%;
    padding-bottom: 40.26%;
  }
}
.wrapper .product-step .info {
  width: 60%;
  background-color: #e9e9e9;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 110px 0;
}
@media (max-width: 1700px) {
  .wrapper .product-step .info {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
@media (max-width: 1400px) {
  .wrapper .product-step .info {
    width: 70%;
  }
}
@media (max-width: 1199px) {
  .wrapper .product-step .info {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.wrapper .product-step .info .step-title {
  padding-left: 3vw;
  margin-top: 10px;
}
@media (max-width: 1700px) {
  .wrapper .product-step .info .step-title {
    text-align: center;
    margin-bottom: 20px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-title {
    margin-bottom: 0;
  }
}
.wrapper .product-step .info .step-title p {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-title p {
    font-size: 26px;
  }
}
.wrapper .product-step .info .step-title h3 {
  font-size: 30px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-title h3 {
    font-size: 24px;
  }
}
.wrapper .product-step .info .step-all {
  width: 100%;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 1vw;
  padding-left: 1vw;
}
.wrapper .product-step .info .step-all ul {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .product-step .info .step-all ul li {
  position: relative;
  text-align: center;
  -ms-flex: 1;
      flex: 1;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li {
    width: 60%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 30px 0;
    margin: 0 auto;
  }
}
.wrapper .product-step .info .step-all ul li::before {
  content: url("../img/arrow-right.png");
  width: 23px;
  height: 20px;
  position: absolute;
  right: 9.7vw;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li::before {
    left: 50%;
    top: 0;
    transform: translate(-100%, -50%);
    content: url("../img/arrow-bottom.png");
  }
}
.wrapper .product-step .info .step-all ul li:first-child::before {
  content: "";
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li:last-child {
    padding: 30px 0 0;
  }
}
.wrapper .product-step .info .step-all ul li .step {
  display: inline-block;
  font-size: 24px;
  color: #e3242b;
  border-bottom: 1px solid #e8ba00;
  padding: 5px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li .step {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li .step + div {
    width: 65%;
    margin-left: auto;
  }
}
.wrapper .product-step .info .step-all ul li b {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li b {
    font-size: 16px;
    text-align: left;
  }
}
.wrapper .product-step .info .step-all ul li p {
  display: block;
  font-size: 20px;
}
@media (max-width: 767px) {
  .wrapper .product-step .info .step-all ul li p {
    font-size: 16px;
    text-align: left;
  }
}
.wrapper .product-step-item {
  padding-top: 70px;
  padding-bottom: 70px;
}
.wrapper .product-step-item.bg {
  background-color: #f8f7f6;
}
.wrapper .product-step-item .title {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .title {
    margin-bottom: 40px;
  }
}
.wrapper .product-step-item .title p {
  font-size: 28px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .title p {
    font-size: 22px;
  }
}
.wrapper .product-step-item .title p span {
  display: inline-block;
  color: #e3242b;
  margin-right: 20px;
  border-bottom: 1px solid #e8ba00;
  padding: 5px 0px;
  letter-spacing: 1.5px;
}
.wrapper .product-step-item .title h2 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.5px;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .title h2 {
    font-size: 20px;
  }
}
.wrapper .product-step-item .chooseSelectBlock {
  margin-bottom: 50px;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock {
    position: relative;
    width: 210px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #e3242b;
  }
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock.md-show {
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
  }
}
.wrapper .product-step-item .chooseSelectBlock.md-show .chooseSelect__select {
  display: none !important;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock.md-show .chooseSelect {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
    max-height: 100%;
    max-height: fit-content;
    overflow-y: auto;
    scrollbar-width: none;
  }
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock.md-show .chooseSelect::after {
    bottom: 19px;
  }
}
@media (max-width: 1199px) {
  .wrapper .product-step-item .chooseSelectBlock.md-show .chooseSelect .chooseSelect-item {
    width: 25%;
  }
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock.md-show .chooseSelect .chooseSelect-item {
    padding: 20px 10px;
    margin: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .wrapper .product-step-item .chooseSelectBlock.md-show .chooseSelect .chooseSelect-item {
    width: 50%;
  }
}
.wrapper .product-step-item .chooseSelectBlock .chooseSelect__select {
  text-align: center;
  position: relative;
  color: #fff;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
  cursor: pointer;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect__select {
    display: block;
  }
}
.wrapper .product-step-item .chooseSelectBlock .chooseSelect__select::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  top: 20px;
  right: 20px;
}
.wrapper .product-step-item .chooseSelectBlock .chooseSelect {
  position: relative;
  max-width: 1520px;
  width: 90%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 20px;
  padding: 34px 60px;
  position: relative;
  background-color: #e3242b;
  margin-bottom: 10px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect {
    width: 100%;
    padding: 10px 0;
    display: none;
    position: absolute;
    border-radius: 5px;
    z-index: 10;
    left: 0;
    right: 0;
    max-height: 315px;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
  }
}
.wrapper .product-step-item .chooseSelectBlock .chooseSelect::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 33px;
  border-bottom: 3px solid #e3242b;
  z-index: 1;
}
.wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item {
  width: 20%;
  text-align: center;
  padding: 15px 20px;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item {
    width: 25%;
  }
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item {
    width: calc(100% - 60px);
    margin-right: 30px;
    margin-left: 30px;
    padding: 5px 0;
  }
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item:last-child {
    border-bottom: none;
  }
}
.wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item .chooseSelect-item__href {
  text-decoration: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  font-size: 20px;
  color: #ffffff;
  transition: 0.5s;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item .chooseSelect-item__href {
    font-size: 16px;
  }
}
@media (min-width: 960px) {
  .wrapper .product-step-item .chooseSelectBlock .chooseSelect .chooseSelect-item .chooseSelect-item__href:hover {
    color: #fec400;
  }
}
.wrapper .product-step-item .productLi {
  max-width: 1700px;
  margin: 0 auto;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #dadada;
  position: relative;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .productLi {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.wrapper .product-step-item .productLi:last-child {
  border-bottom: none;
}
.wrapper .product-step-item .productLi .productLi-title {
  width: 190px;
  text-align: center;
  margin-right: 50px;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .productLi .productLi-title {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-right: 0;
  }
}
.wrapper .product-step-item .productLi .productLi-title p {
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .productLi-title p {
    font-size: 20px;
  }
}
.wrapper .product-step-item .productLi .productLi-title p span {
  display: block;
}
.wrapper .product-step-item .productLi .productLi-title .productLi-title__img {
  margin: 0 auto;
  margin-top: 10px;
  width: auto;
}
.wrapper .product-step-item .productLi .media {
  width: calc(100% - 12.24vw);
  padding-right: 12.24vw;
  margin-left: 10px;
  margin-right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .productLi .media {
    width: 100%;
    padding-right: 0;
  }
}
.wrapper .product-step-item .productLi .media.media--small .media-item {
  width: calc(20% - 45px);
  margin: 30px 22.5px;
  text-align: center;
}
@media (max-width: 960px) {
  .wrapper .product-step-item .productLi .media.media--small .media-item {
    width: calc(25% - 20px);
    margin: 30px 10px;
  }
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .media.media--small .media-item {
    width: calc(50% - 20px);
  }
}
.wrapper .product-step-item .productLi .media.media--small .media-item .media-img {
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}
.wrapper .product-step-item .productLi .media.media--small .media-item h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .media.media--small .media-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.wrapper .product-step-item .productLi .media.media--small .media-item h4 {
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .media.media--small .media-item h4 {
    font-size: 12px;
  }
}
.wrapper .product-step-item .productLi .media .media-item {
  margin: 30px 10px;
  width: calc(25% - 20px);
}
@media (max-width: 1199px) {
  .wrapper .product-step-item .productLi .media .media-item {
    width: calc(50% - 20px);
  }
}
.wrapper .product-step-item .productLi .media .media-item a {
  text-decoration: none;
  text-align: center;
}
.wrapper .product-step-item .productLi .media .media-item a:hover .media-img {
  border-color: #fec400;
}
.wrapper .product-step-item .productLi .media .media-item a:hover h3,
.wrapper .product-step-item .productLi .media .media-item a:hover h4 {
  color: #fec400;
}
.wrapper .product-step-item .productLi .media .media-item a .media-img {
  display: block;
  background-color: #fff;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  border: 2px solid;
  border-color: #fff;
  transition: 0.3s;
  margin-bottom: 15px;
}
.wrapper .product-step-item .productLi .media .media-item a .media-img .media-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 14px;
  top: 15px;
  left: 15px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .media .media-item a .media-img .media-icon {
    font-size: 10px;
    width: 32px;
    height: 32px;
    top: 10px;
    left: 10px;
  }
}
.wrapper .product-step-item .productLi .media .media-item a .media-img .media-icon.best {
  background-color: #e3242b;
}
.wrapper .product-step-item .productLi .media .media-item a .media-img .media-icon.new {
  background-color: #e9b503;
}
.wrapper .product-step-item .productLi .media .media-item a h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .media .media-item a h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.wrapper .product-step-item .productLi .media .media-item a h4 {
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .productLi .media .media-item a h4 {
    font-size: 12px;
  }
}
.wrapper .product-step-item .size {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  margin-top: -1.05vw;
}
.wrapper .product-step-item .size ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .size ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapper .product-step-item .size ul li {
  text-align: center;
  font-size: 20px;
  line-height: 1.2;
  margin-top: 1.05vw;
  margin-bottom: 1.05vw;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .size ul li {
    width: calc(50% - 2.1vw);
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.wrapper .product-step-item .size ul li img {
  width: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .size ul li img {
    margin-top: auto;
  }
}
.wrapper .product-step-item .size ul li .size-title {
  color: #888888;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .size ul li .size-title {
    font-size: 18px;
  }
}
.wrapper .product-step-item .size ul li .size-num {
  color: #000;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .size ul li .size-num {
    font-size: 18px;
  }
}
.wrapper .product-step-item .size .size-message {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 767px) {
  .wrapper .product-step-item .size .size-message {
    font-size: 14px;
    text-align: center;
  }
}
.wrapper .media-normal {
  max-width: 1250px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper .media-normal .media-item {
  margin: 30px 10px;
  width: calc(25% - 20px);
}
@media (max-width: 960px) {
  .wrapper .media-normal .media-item {
    width: calc(50% - 20px);
  }
}
.wrapper .media-normal .media-item a {
  text-decoration: none;
  text-align: center;
}
.wrapper .media-normal .media-item a:hover .media-img {
  border-color: #fec400;
}
.wrapper .media-normal .media-item a:hover h3,
.wrapper .media-normal .media-item a:hover h4 {
  color: #fec400;
}
.wrapper .media-normal .media-item a .media-img {
  display: block;
  background-color: #fff;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  border: 2px solid;
  border-color: #fff;
  transition: 0.3s;
  margin-bottom: 15px;
}
.wrapper .media-normal .media-item a .media-img .media-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  z-index: 9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-family: "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 14px;
  top: 15px;
  left: 15px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .wrapper .media-normal .media-item a .media-img .media-icon {
    font-size: 10px;
    width: 32px;
    height: 32px;
    top: 10px;
    left: 10px;
  }
}
.wrapper .media-normal .media-item a .media-img .media-icon.best {
  background-color: #e3242b;
}
.wrapper .media-normal .media-item a .media-img .media-icon.new {
  background-color: #e9b503;
}
.wrapper .media-normal .media-item a h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 10px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .media-normal .media-item a h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.wrapper .media-normal .media-item a h4 {
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .media-normal .media-item a h4 {
    font-size: 12px;
  }
}
.wrapper .product-pic-section {
  max-width: 1730px;
  margin: 0 auto;
  border-radius: 25px;
  padding-top: 25px;
  padding-bottom: 50px;
  background-color: #fffedc;
}
@media (max-width: 767px) {
  .wrapper .product-pic-section {
    margin-top: 50px;
  }
}
.wrapper .product-pic-section .pic-title {
  position: relative;
  text-align: center;
  padding: 50px 0 20px;
}
.wrapper .product-pic-section .pic-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #e60012;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.wrapper .product-pic-section .pic-title p {
  font-size: 30px;
  color: #e60012;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .product-pic-section .pic-title p {
    font-size: 22px;
  }
}
.wrapper .product-pic-section .pic-title h2 {
  font-size: 24px;
  color: #e60012;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .product-pic-section .pic-title h2 {
    font-size: 20px;
  }
}
.wrapper .product-pic-section .media-normal {
  max-width: 1500px;
  -ms-flex-pack: start;
      justify-content: start;
}
.wrapper .product-pic-section .media-normal .media-item {
  font-weight: bold;
}
@media (min-width: 767px) {
  .wrapper .product-pic-section .media-normal .media-item:hover .hover-img img:nth-child(1) {
    opacity: 0;
    transition-duration: 0.3s;
  }
  .wrapper .product-pic-section .media-normal .media-item:hover .hover-img img:nth-child(2) {
    opacity: 1;
    transition-duration: 0.3s;
  }
}
.wrapper .product-pic-section .media-normal .media-item .hover-img {
  position: relative;
}
.wrapper .product-pic-section .media-normal .media-item .hover-img img {
  transition-duration: 0.3s;
}
.wrapper .product-pic-section .media-normal .media-item .hover-img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.wrapper .product-pic-section .btn-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 30px;
}
.wrapper .product-pic-section .btn-group a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  min-width: 145px;
  max-width: 145px;
  text-align: center;
  margin: 3px 6px;
  border-radius: 10px;
  box-sizing: border-box;
}
.wrapper .product-pic-section .btn-group a.e-btn {
  background-color: #fff;
  border: 2px #eee solid;
  padding: 5px 0px;
}
.wrapper .product-pic-section .btn-group a.e-btn img {
  width: auto;
  margin-right: 10px;
  max-height: 32px;
}
.wrapper .product-pic-section .btn-group a.download-btn {
  background-color: #e8ba00;
  color: #443e24;
}
.wrapper .product-pic-section .btn-group a.download-btn img {
  width: auto;
  margin-right: 10px;
  max-height: 21px;
}
.wrapper .twoBlock {
  max-width: 1430px;
  margin: 80px auto 0px;
  display: -ms-flexbox;
  display: flex;
  background-color: #fffedc;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .wrapper .twoBlock {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
@media (min-width: 767px) {
  .wrapper .twoBlock:hover .twoBlock-img img {
    transform: scale(1.05);
    transition: 0.5s ease all;
  }
}
.wrapper .twoBlock .twoBlock-txt {
  position: relative;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 960px) {
  .wrapper .twoBlock .twoBlock-txt {
    -ms-flex-order: 2;
        order: 2;
    width: 100%;
    padding: 30px 0;
  }
}
.wrapper .twoBlock .twoBlock-txt::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/product01_bg_715_500_2.png");
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}
.wrapper .twoBlock .twoBlock-txt .d-flex {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 2;
}
.wrapper .twoBlock .twoBlock-txt .d-flex img {
  max-width: 120px;
  max-height: 235px;
}
.wrapper .twoBlock .twoBlock-txt .d-flex .section-txt {
  color: #000;
  margin-left: 15px;
}
.wrapper .twoBlock .twoBlock-txt .d-flex .section-txt h4 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .twoBlock .twoBlock-txt .d-flex .section-txt h4 {
    font-size: 24px;
  }
}
.wrapper .twoBlock .twoBlock-txt .d-flex .section-txt h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .twoBlock .twoBlock-txt .d-flex .section-txt h3 {
    font-size: 22px;
  }
}
.wrapper .twoBlock .twoBlock-txt .d-flex .section-txt p {
  font-size: 20px;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .wrapper .twoBlock .twoBlock-txt .d-flex .section-txt p {
    font-size: 18px;
  }
}
.wrapper .twoBlock .twoBlock-img {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .wrapper .twoBlock .twoBlock-img {
    -ms-flex-order: 1;
        order: 1;
    width: 100%;
  }
}
.wrapper .twoBlock .twoBlock-img img {
  transition: 0.5s ease all;
}
.wrapper .asideStep {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  opacity: 0;
  transition: 0.5s;
  z-index: 10;
}
@media (max-width: 767px) {
  .wrapper .asideStep {
    top: 45%;
  }
}
.wrapper .asideStep.active {
  opacity: 1;
}
.wrapper .asideStep .asideStep-item {
  margin: 16px 0;
}
.wrapper .asideStep .asideStep-item .asideStep-item__href {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  transition: 0.5s;
  opacity: 0.5;
}
.wrapper .asideStep .asideStep-item .asideStep-item__href.active {
  opacity: 1;
}
.wrapper .asideStep .asideStep-item .asideStep-item__href.active::after {
  opacity: 1;
}
.wrapper .asideStep .asideStep-item .asideStep-item__href::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #e3242b;
  margin-left: 5px;
  opacity: 0;
}
@media (max-width: 767px) {
  .wrapper .asideStep .asideStep-item .asideStep-item__href::after {
    width: 10px;
    margin-left: 0;
  }
}
.wrapper .asideStep .asideStep-item .asideStep-item__href p {
  font-size: 14px;
  color: #e3242b;
}
@media (max-width: 767px) {
  .wrapper .asideStep .asideStep-item .asideStep-item__href p {
    display: none;
  }
}
.wrapper .asideStep .asideStep-item .asideStep-item__href .asideStep-item__num {
  width: 26px;
  height: 26px;
  background-color: #e3242b;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 5px;
  position: relative;
}
.wrapper .asideStep .asideStep-item .asideStep-item__href .asideStep-item__num b {
  font-size: 14px;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wrapper .seasonal-main {
  position: relative;
}
@media (max-width: 767px) {
  .wrapper .seasonal-main {
    padding-top: 30px;
  }
}
.wrapper .seasonal-main .share-box {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  bottom: 40px;
  right: 120px;
}
@media (max-width: 767px) {
  .wrapper .seasonal-main .share-box {
    right: 0;
    left: 0;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .seasonal-main .share-box .link-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 15px;
}
.wrapper .seasonal-main .share-box .link-icon img {
  width: 12px;
}
.wrapper .seasonal-main .share-box .link-icon p {
  padding-left: 10px;
}
.wrapper .seasonal-main .share-box .social-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .seasonal-main .share-box .social-group a {
  width: 20px;
  margin: 0 5px;
}
.wrapper .news-swiper {
  position: relative;
  max-width: 1570px;
  width: 90%;
  margin: 0 auto;
  width: 100%;
  padding: 0px 40px 75px 40px;
  box-sizing: border-box;
}
.wrapper .news-swiper .swiper {
  overflow: hidden;
}
.wrapper .news-swiper .swiper .news-item {
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0 10%;
}
.wrapper .news-swiper .swiper .news-item .photo {
  width: 100%;
  padding-top: 100%;
  background-size: cover;
  margin-bottom: 20px;
  background-position: center;
  border-radius: 50%;
}
.wrapper .news-swiper .swiper .news-item .news-date {
  margin-bottom: 6px;
  color: #c8423f;
  font-size: 18px;
  display: block;
}
@media (max-width: 767px) {
  .wrapper .news-swiper .swiper .news-item .news-date {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.wrapper .news-swiper .swiper .news-item h3 {
  max-width: 250px;
  margin: 0 auto;
  color: #444444;
  line-height: 26px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .news-swiper .swiper .news-item h3 {
    font-size: 16px;
  }
}
.wrapper .news-swiper .swiper .swiper-button-prev {
  background-image: url("../img/arrow.svg");
  top: 32%;
  background-size: 60%;
}
.wrapper .news-swiper .swiper .swiper-button-next {
  background-image: url("../img/arrow-02.svg");
  top: 32%;
  background-size: 60%;
}
.wrapper .news-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  position: relative;
  background-color: #b2b2b2;
  margin-right: 25px;
  opacity: 1;
}
.wrapper .news-swiper .swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
.wrapper .news-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #df2e2e;
}
.wrapper .news-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: #df2e2e;
}
.wrapper .news-swiper .swiper .swiper-pagination .swiper-pagination-bullet:only-child {
  display: none;
}
.wrapper .menu-swiper {
  position: relative;
  max-width: 1570px;
  width: 90%;
  margin: 0 auto;
  width: 100%;
  padding: 0px 40px 75px 40px;
  box-sizing: border-box;
}
.wrapper .menu-swiper .swiper {
  overflow: hidden;
}
.wrapper .menu-swiper .swiper .menu-item {
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 0 12%;
  color: #fff;
  padding-top: 30px;
}
@media (max-width: 1200px) {
  .wrapper .menu-swiper .swiper .menu-item {
    padding-top: 0;
    padding: 0 5%;
  }
}
@media (min-width: 767px) {
  .wrapper .menu-swiper .swiper .menu-item:hover .hover-icon-group {
    opacity: 1;
    transition: 0.3s ease all;
  }
}
.wrapper .menu-swiper .swiper .menu-item .photo {
  border-radius: 10px;
  overflow: hidden;
}
.wrapper .menu-swiper .swiper .menu-item .hover-icon-group {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease all;
}
.wrapper .menu-swiper .swiper .menu-item .hover-icon-group .icon-yummy {
  position: absolute;
  width: 12%;
  top: 0;
  left: 8%;
}
.wrapper .menu-swiper .swiper .menu-item .hover-icon-group .icon-star {
  position: absolute;
  width: 10%;
  right: -1%;
  top: 22%;
}
.wrapper .menu-swiper .swiper .menu-item .hover-icon-group .icon-spoon {
  position: absolute;
  top: 55%;
  width: 7%;
  left: 3%;
}
.wrapper .menu-swiper .swiper .menu-item h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .menu-swiper .swiper .menu-item h3 {
    margin-bottom: 14px;
  }
}
.wrapper .menu-swiper .swiper .menu-item span {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .menu-swiper .swiper .menu-item span {
    font-size: 16px;
  }
}
.wrapper .menu-swiper .swiper .swiper-button-prev {
  background-image: url("../img/arrow-w.svg");
  top: 39%;
  background-size: 60%;
}
@media (max-width: 767px) {
  .wrapper .menu-swiper .swiper .swiper-button-prev {
    top: 31%;
  }
}
.wrapper .menu-swiper .swiper .swiper-button-next {
  background-image: url("../img/arrow-02-w.svg");
  top: 39%;
  background-size: 60%;
}
@media (max-width: 767px) {
  .wrapper .menu-swiper .swiper .swiper-button-next {
    top: 31%;
  }
}
.wrapper .menu-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  position: relative;
  background-color: #fff;
  margin-right: 25px;
  opacity: 1;
}
.wrapper .menu-swiper .swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  border: 1px solid transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
}
.wrapper .menu-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}
.wrapper .menu-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: #dbb006;
}
.wrapper .menu-swiper .swiper .swiper-pagination .swiper-pagination-bullet:only-child {
  display: none;
}
.wrapper .store-recruit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 60px auto 48px;
  max-width: 1780px;
  padding: 0 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .store-recruit {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0px 5vw;
    margin: 0 auto;
  }
}
.wrapper .store-recruit .store-group {
  width: 49%;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group {
    width: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 30px;
  }
}
.wrapper .store-recruit .store-group img {
  width: 50%;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group img {
    width: 100%;
  }
}
.wrapper .store-recruit .store-group .store {
  width: 50%;
  color: #fff;
  background-color: #e3242b;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group .store {
    width: 100%;
    padding: 25px 0;
  }
}
.wrapper .store-recruit .store-group .store .icon {
  width: 13%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group .store .icon {
    width: 54px;
    margin-bottom: 10px;
  }
}
.wrapper .store-recruit .store-group .store .icon img {
  width: 100%;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group .store .content {
    display: -ms-flexbox;
    display: flex;
  }
}
.wrapper .store-recruit .store-group .store .content p {
  text-align: center;
}
.wrapper .store-recruit .store-group .store .content p.en {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group .store .content p.en {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 10px 0 0;
  }
}
.wrapper .store-recruit .store-group .store .content p.ch {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .store-group .store .content p.ch {
    font-size: 1.125rem;
  }
}
.wrapper .store-recruit .recruit-group {
  width: 49%;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group {
    width: 100%;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .store-recruit .recruit-group img {
  width: 50%;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group img {
    width: 100%;
  }
}
.wrapper .store-recruit .recruit-group .recruit {
  width: 50%;
  color: #000;
  background-color: #ecc84d;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group .recruit {
    width: 100%;
    padding: 25px 0;
  }
}
.wrapper .store-recruit .recruit-group .recruit .icon {
  width: 20%;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group .recruit .icon {
    width: 80px;
    margin-bottom: 10px;
  }
}
.wrapper .store-recruit .recruit-group .recruit .icon img {
  width: 100%;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group .recruit .content {
    display: -ms-flexbox;
    display: flex;
  }
}
.wrapper .store-recruit .recruit-group .recruit .content p {
  text-align: center;
}
.wrapper .store-recruit .recruit-group .recruit .content p.en {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group .recruit .content p.en {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 10px 0 0;
  }
}
.wrapper .store-recruit .recruit-group .recruit .content p.ch {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .store-recruit .recruit-group .recruit .content p.ch {
    font-size: 1.125rem;
  }
}
.wrapper .follows {
  display: -ms-flexbox;
  display: flex;
  max-width: 1320px;
  margin: 0 auto 100px;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  .wrapper .follows {
    padding: 0px 2px;
  }
}
.wrapper .follows a {
  display: inline-block;
  margin: 0px 13px 0px 13px;
  width: 100%;
  max-width: 422px;
}
@media (max-width: 767px) {
  .wrapper .follows a {
    margin: 2px;
  }
}
.wrapper .store-tag {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 20px 0 15px;
  border-bottom: 1px solid #000;
}
.wrapper .store-tag ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  .wrapper .store-tag ul {
    -ms-flex-align: end;
        align-items: flex-end;
  }
}
.wrapper .store-tag ul li {
  position: relative;
}
@media (max-width: 767px) {
  .wrapper .store-tag ul li {
    width: 50%;
  }
}
.wrapper .store-tag ul li a {
  font-size: 18px;
  padding: 0 20px;
  margin: 0 20px;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wrapper .store-tag ul li a {
    padding: 0;
    margin: 0 10px;
    text-align: center;
  }
}
.wrapper .store-tag ul li a.active {
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .store-tag ul li a.active {
    font-size: 18px;
  }
}
.wrapper .store-tag ul li a.active::after {
  width: 100%;
  transition: 0.3s;
}
@media (min-width: 767px) {
  .wrapper .store-tag ul li a:hover {
    font-size: 22px;
    transition: 0.3s;
    font-weight: bold;
  }
  .wrapper .store-tag ul li a:hover::after {
    width: 100%;
    transition: 0.3s;
  }
}
.wrapper .store-tag ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 7px;
  background-color: #e8ba00;
  left: 50%;
  right: 0;
  bottom: -19px;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wrapper .store-info {
  padding: 20px 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .store-info {
    padding: 20px;
  }
}
.wrapper .store-info p {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}
.wrapper .store-fluid {
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .wrapper .store-fluid {
    padding: 25px 5px;
  }
}
.wrapper .store-fluid.overseas {
  background-color: #f2f2f2;
}
.wrapper .store-fluid.overseas .flag {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .wrapper .store-fluid.overseas .flag {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.wrapper .store-fluid.overseas .flag .flag-item {
  width: 25%;
  margin: 30px 0;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .wrapper .store-fluid.overseas .flag .flag-item {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .wrapper .store-fluid.overseas .flag .flag-item {
    width: 50%;
    padding: 0 5px;
    margin: 40px 0;
  }
}
.wrapper .store-fluid.overseas .flag .flag-item a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .wrapper .store-fluid.overseas .flag .flag-item a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .store-fluid.overseas .flag .flag-item a:hover p {
  color: #e3242b;
  transition: 0.3s;
}
.wrapper .store-fluid.overseas .flag .flag-item a:hover .icon:after {
  background-color: rgba(0, 0, 0, 0.65);
  transition: 0.3s;
}
.wrapper .store-fluid.overseas .flag .flag-item a .icon {
  margin-right: 15px;
  max-width: 65px;
  min-width: 65px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .wrapper .store-fluid.overseas .flag .flag-item a .icon {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.wrapper .store-fluid.overseas .flag .flag-item a .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s;
}
.wrapper .store-fluid.overseas .flag .flag-item a p {
  font-size: 22px;
  color: #000;
  transition: 0.3s;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .wrapper .store-fluid.overseas .flag .flag-item a p {
    width: 100%;
    text-align: center;
  }
}
.wrapper .store-fluid .content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 30px;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content {
    padding: 0;
  }
}
.wrapper .store-fluid .content .store-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
  border-radius: 25px;
  border: 1px solid #7d7d7d;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item {
    padding: 30px 10px;
  }
}
.wrapper .store-fluid .content .store-item:last-child {
  margin-bottom: 0;
}
.wrapper .store-fluid .content .store-item .title {
  width: 150px;
}
@media (max-width: 960px) {
  .wrapper .store-fluid .content .store-item .title {
    width: 100%;
  }
}
.wrapper .store-fluid .content .store-item .title p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 30px;
}
@media (max-width: 960px) {
  .wrapper .store-fluid .content .store-item .title p {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item .title p {
    margin-top: 0;
  }
}
.wrapper .store-fluid .content .store-item ul {
  width: calc(100% - 150px);
}
@media (max-width: 960px) {
  .wrapper .store-fluid .content .store-item ul {
    width: 100%;
  }
}
.wrapper .store-fluid .content .store-item ul li {
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dadada;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item ul li {
    position: relative;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 20px 0;
  }
}
.wrapper .store-fluid .content .store-item ul li:only-child {
  border-bottom: none;
}
.wrapper .store-fluid .content .store-item ul li:last-child {
  border-bottom: none;
}
.wrapper .store-fluid .content .store-item ul li .store-img {
  width: 280px;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item ul li .store-img {
    width: 100%;
    padding: 0;
  }
}
.wrapper .store-fluid .content .store-item ul li .store-img p {
  display: inline-block;
  font-size: 18px;
  border-bottom: 3px solid #e3242b;
  padding: 10px 0;
  font-weight: bold;
  margin: 0 auto 20px;
}
.wrapper .store-fluid .content .store-item ul li .store-img img {
  width: 100%;
  margin: 0 auto;
}
.wrapper .store-fluid .content .store-item ul li .store-text {
  width: 540px;
  padding: 0 30px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item ul li .store-text {
    width: 100%;
    padding: 15px 10px 0;
  }
}
.wrapper .store-fluid .content .store-item ul li .store-text dl {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl dt {
  width: 15%;
  font-size: 18px;
  color: #646464;
  padding-right: 25px;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl dd {
  line-height: 1.5;
  font-size: 18px;
  color: #000;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl .phone {
  color: #e3242b;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl .pay {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl .pay img {
  width: 35px;
  margin-right: 10px;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl .ice_cream .item {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}
.wrapper .store-fluid .content .store-item ul li .store-text dl .ice_cream .item img {
  width: 30px;
  margin-right: 5px;
}
.wrapper .store-fluid .content .store-item ul li .store-map {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item ul li .store-map {
    position: absolute;
    right: 0;
    top: 20px;
    margin-right: 0;
  }
}
.wrapper .store-fluid .content .store-item ul li .store-map a {
  margin: 0 auto;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .store-fluid .content .store-item ul li .store-map a {
    width: 46px;
    height: 46px;
  }
}
@media (min-width: 767px) {
  .wrapper .store-fluid .content .store-item ul li .store-map a:hover img {
    transform: rotateY(360deg);
    transition: 0.5s;
  }
}
.wrapper .store-fluid .content .store-item ul li .store-map a img {
  width: 30px;
  transform: rotateY(0deg);
  transition: 0.5s;
}
.wrapper .seven7 .content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 40px 0;
  text-align: center;
}
.wrapper .seven7 .content .store-btn {
  text-decoration: none;
  display: inline-block;
  background-color: #ddb015;
  color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  width: 315px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .seven7 .content .store-btn {
    width: 275px;
    font-size: 16px;
    padding: 15px 30px;
  }
}
.wrapper .store-menu {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  .wrapper .store-menu {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media (max-width: 767px) {
  .wrapper .store-menu .dropDownBlock-2 {
    margin-bottom: 10px;
  }
}
.wrapper .store-menu .dropDownBlock-2 .dropDown-select-2 {
  position: relative;
  appearance: none;
  background-image: url("../img/icon01.svg");
  background-repeat: no-repeat;
  background-position: center right 0.7vw;
  background-size: 12px;
  border: 1px solid #000;
  padding: 20px 40px 20px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 18px;
  margin: 0 5px;
}
@media (max-width: 767px) {
  .wrapper .store-menu .dropDownBlock-2 .dropDown-select-2 {
    padding: 15px 40px 15px 20px;
  }
}
.wrapper .store-menu .dropDownBlock-2 .dropDown-select-2 option {
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding: 15px 40px 15px 20px;
  line-height: 1.3;
}
.wrapper .store-menu .dropDownBlock {
  position: relative;
  border-radius: 10px;
  width: 275px;
  border: 1px solid #000;
  padding: 20px 40px 20px 20px;
  box-sizing: border-box;
  cursor: pointer;
}
@media (max-width: 767px) {
  .wrapper .store-menu .dropDownBlock {
    -ms-flex-order: 2;
        order: 2;
  }
}
.wrapper .store-menu .dropDownBlock .dropDown-select {
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
}
.wrapper .store-menu .dropDownBlock .dropDown-select::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ff4c4c transparent transparent transparent;
}
.wrapper .store-menu .dropDownBlock .dropDown-select span:nth-child(1) {
  width: 60%;
}
.wrapper .store-menu .dropDownBlock .dropDown-select span:nth-child(2) {
  width: 40%;
  padding-left: 10px;
}
.wrapper .store-menu .dropDownBlock ul {
  position: absolute;
  width: 100%;
  border: 1px solid #000;
  top: 100%;
  left: 0;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  display: none;
}
.wrapper .store-menu .dropDownBlock ul .dropDown-item a {
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding: 15px 40px 15px 20px;
  line-height: 1.3;
}
@media (min-width: 767px) {
  .wrapper .store-menu .dropDownBlock ul .dropDown-item a:hover {
    background-color: #e9e9e9;
  }
}
.wrapper .store-menu .dropDownBlock ul .dropDown-item a span:nth-child(1) {
  width: 60%;
  padding-right: 10px;
}
.wrapper .store-menu .dropDownBlock ul .dropDown-item a span:nth-child(2) {
  width: 40%;
}
.wrapper .store-menu .link-btn {
  width: 315px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  background-color: #ddb015;
  color: #fff;
  border-radius: 10px;
  padding: 14px 30px;
  margin-right: 5px;
  margin-left: 5px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .store-menu .link-btn {
    -ms-flex-order: 1;
        order: 1;
    width: 275px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.wrapper .store-menu .link-btn img {
  width: 15px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .wrapper .store-menu .link-btn img {
    width: 12px;
  }
}
.wrapper .article {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 5px 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .article {
    padding: 0px 5px 0;
  }
}
.wrapper .article.pt-0 {
  padding-top: 0;
}
.wrapper .article .article-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .article .article-title {
    margin-bottom: 40px;
  }
}
.wrapper .article .article-title h1 {
  font-size: 30px;
  line-height: 40px;
  color: #e60012;
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper .article .article-title h1 {
    font-size: 26px;
  }
}
.wrapper .article .article-title h1 span {
  display: block;
}
.wrapper .article .article-title h1 span:first-child {
  font-weight: bold;
}
.wrapper .article .slogan {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
  text-align: center;
}
.wrapper .article .purpose {
  font-weight: 400;
  max-width: 740px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  margin: 0 auto 53px auto;
}
@media (max-width: 767px) {
  .wrapper .article .purpose {
    padding: 0 28px;
    text-align: center;
  }
}
.wrapper .article .brand-spirit-1 .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 53px;
}
.wrapper .article .brand-spirit-1 .row .col-50 {
  width: 50%;
}
@media (max-width: 1250px) {
  .wrapper .article .brand-spirit-1 .row .col-50:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-spirit-1 .row .col-50:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 1250px) {
  .wrapper .article .brand-spirit-1 .row .col-50:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-spirit-1 .row .col-50:nth-child(2) {
    width: 100%;
  }
}
.wrapper .article .brand-spirit-1 .row .col-50 .photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70.18%;
}
.wrapper .article .brand-spirit-1 .row .col-50 .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  background-color: #fae9e7;
}
@media (max-width: 1250px) {
  .wrapper .article .brand-spirit-1 .row .col-50 .text {
    padding: 8.5% 5.5%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-spirit-1 .row .col-50 .text {
    padding: 30px 22px;
    height: auto;
  }
}
.wrapper .article .brand-spirit-1 .row .col-50 .text .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-spirit-1 .row .col-50 .text .title {
    text-align: center;
  }
}
.wrapper .article .brand-spirit-1 .row .col-50 .text .title.t_m {
  display: none;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-spirit-1 .row .col-50 .text .title.t_m {
    display: block;
  }
}
.wrapper .article .brand-spirit-1 .row .col-50 .text .title.en {
  font-size: 24px;
}
.wrapper .article .brand-spirit-1 .row .col-50 .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  text-align: left;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-spirit-1 .row .col-50 .text p {
    text-align: center;
  }
}
.wrapper .article .brand-spirit-1 .row .col-50 .text p.en {
  font-size: 20px;
}
.wrapper .article .brand-story-1 .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 53px;
  border-radius: 10px;
  overflow: hidden;
}
.wrapper .article .brand-story-1 .row .col-50 {
  width: 50%;
}
@media (max-width: 1250px) {
  .wrapper .article .brand-story-1 .row .col-50:nth-child(1) {
    width: 40%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row .col-50:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 1250px) {
  .wrapper .article .brand-story-1 .row .col-50:nth-child(2) {
    width: 60%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row .col-50:nth-child(2) {
    width: 100%;
  }
}
.wrapper .article .brand-story-1 .row .col-50 .photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70.18%;
}
.wrapper .article .brand-story-1 .row .col-50 .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  padding: 0 17.3%;
  box-sizing: border-box;
  background-color: #fae9e7;
}
@media (max-width: 1250px) {
  .wrapper .article .brand-story-1 .row .col-50 .text {
    padding: 8.5% 5.5%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row .col-50 .text {
    padding: 30px 22px;
    height: auto;
  }
}
.wrapper .article .brand-story-1 .row .col-50 .text .title {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row .col-50 .text .title {
    text-align: center;
  }
}
.wrapper .article .brand-story-1 .row .col-50 .text .title.en {
  font-size: 24px;
}
.wrapper .article .brand-story-1 .row .col-50 .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  text-align: left;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row .col-50 .text p {
    text-align: center;
  }
}
.wrapper .article .brand-story-1 .row .col-50 .text p.en {
  font-size: 20px;
}
.wrapper .article .brand-story-1 .row.story-en .col-50 {
  width: 50%;
}
@media (max-width: 1250px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50:nth-child(1) {
    margin-bottom: 30px;
  }
}
@media (max-width: 1250px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50 .text {
    border-radius: 10px;
    overflow: hidden;
    padding: 8.5% 5.5%;
  }
}
@media (max-width: 767px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50 .text p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wrapper .article .brand-story-1 .row.story-en .col-50 .text.bg-01 {
    padding: 23.5% 5.5%;
  }
}
.wrapper .article .block {
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .wrapper .article .block {
    margin-bottom: 30px;
  }
}
.wrapper .article .block.bg-yellow {
  background-color: #fdf8e5;
}
.wrapper .article .block.bg-yellow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/firework.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.wrapper .article .block.bg-yellow .text {
  position: relative;
  padding: 10% 20.9%;
  z-index: 1;
}
@media (max-width: 1250px) {
  .wrapper .article .block.bg-yellow .text {
    padding: 8.5% 5.5%;
  }
}
.wrapper .article .block.bg-yellow .text .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 30px;
  text-align: center;
}
.wrapper .article .block.bg-yellow .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  text-align: center;
}
.wrapper .article .brand-story-2 .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
}
.wrapper .article .brand-story-2 .row .col-50 {
  width: 50%;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-2 .row .col-50 {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
}
.wrapper .article .brand-story-2 .row .col-50:nth-child(1) {
  background-color: #e8ba00;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-2 .row .col-50:nth-child(1) {
    margin-bottom: 25px;
  }
}
.wrapper .article .brand-story-2 .row .col-50:nth-child(2) {
  background-image: url("../img/brand-story02.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-2 .row .col-50:nth-child(2) .text {
    padding: 26% 5.5%;
  }
}
.wrapper .article .brand-story-2 .row .col-50:nth-child(2) .text .title,
.wrapper .article .brand-story-2 .row .col-50:nth-child(2) .text p {
  color: #fff;
}
.wrapper .article .brand-story-2 .row .col-50 .photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70.18%;
}
.wrapper .article .brand-story-2 .row .col-50 .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  padding: 18% 21%;
  box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1050px) {
  .wrapper .article .brand-story-2 .row .col-50 .text {
    padding: 8.5% 5.5%;
    height: auto;
  }
}
.wrapper .article .brand-story-2 .row .col-50 .text .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 30px;
  text-align: center;
}
.wrapper .article .brand-story-2 .row .col-50 .text .title.en {
  font-size: 24px;
}
.wrapper .article .brand-story-2 .row .col-50 .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  text-align: center;
}
.wrapper .article .brand-story-2 .row .col-50 .text p.en {
  font-size: 20px;
}
.wrapper .article .recruit-1 {
  margin-bottom: 53px;
}
.wrapper .article .recruit-1 .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
.wrapper .article .recruit-1 .row .col-50 {
  width: 50%;
}
@media (max-width: 1050px) {
  .wrapper .article .recruit-1 .row .col-50 {
    width: 100%;
  }
}
.wrapper .article .recruit-1 .row .col-50 .photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70.18%;
}
.wrapper .article .recruit-1 .row .col-50 .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  padding: 0 17.3%;
  box-sizing: border-box;
  background-color: #fae9e7;
}
@media (max-width: 1250px) {
  .wrapper .article .recruit-1 .row .col-50 .text {
    padding: 8.5% 5.5%;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .recruit-1 .row .col-50 .text {
    padding: 30px 22px;
    height: auto;
  }
}
.wrapper .article .recruit-1 .row .col-50 .text .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 17px;
  text-align: left;
}
@media (max-width: 1050px) {
  .wrapper .article .recruit-1 .row .col-50 .text .title {
    text-align: center;
  }
}
.wrapper .article .recruit-1 .row .col-50 .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  text-align: left;
}
@media (max-width: 1050px) {
  .wrapper .article .recruit-1 .row .col-50 .text p {
    text-align: center;
  }
}
.wrapper .article .recruit-1 .row .col-50 .text .btn-all {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 8px;
}
.wrapper .article .recruit-1 .row .col-50 .text .btn-all a {
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 130px;
  padding: 15px 0;
  border-radius: 30px;
  margin: 0 3px;
}
@media (max-width: 767px) {
  .wrapper .article .recruit-1 .row .col-50 .text .btn-all a {
    margin: 0 1px 5px;
  }
}
.wrapper .article .recruit-1 .row .col-50 .text .btn-all a.go_104-btn {
  background-color: #ce2b13;
}
.wrapper .article .recruit-1 .row .col-50 .text .btn-all a.go_1111-btn {
  background: #89c7ba;
}
.wrapper .article .recruit-1 .row .col-50 .text .btn-all a.go_work-btn {
  background: #f8b300;
}
.wrapper .article .recruit-2 {
  border-radius: 10px;
  overflow: hidden;
}
.wrapper .article .recruit-2 .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.wrapper .article .recruit-2 .row .col-50 {
  width: 50%;
  padding: 6% 0;
  box-sizing: border-box;
}
@media (max-width: 1250px) {
  .wrapper .article .recruit-2 .row .col-50 {
    padding: 2.5% 0;
  }
}
@media (max-width: 1050px) {
  .wrapper .article .recruit-2 .row .col-50 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wrapper .article .recruit-2 .row .col-50 {
    padding: 12% 0;
  }
}
.wrapper .article .recruit-2 .row .col-50 .text {
  text-align: center;
}
.wrapper .article .recruit-2 .row .col-50 .text .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 10px;
  text-align: center;
}
.wrapper .article .recruit-2 .row .col-50 .text .title span {
  display: block;
}
.wrapper .article .recruit-2 .row .col-50 .text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  text-align: center;
  margin-bottom: 18px;
}
.wrapper .article .recruit-2 .row .col-50 .text .more-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  width: 134px;
  height: 43px;
  line-height: 43px;
  font-size: 16px;
  border-radius: 21.5px;
  color: white;
  text-align: center;
  margin: 0 auto;
}
.wrapper .article .recruit-2 .row .col-50.bg-red {
  background-color: #ce2b13;
}
.wrapper .article .recruit-2 .row .col-50.bg-red .text .title {
  color: #e8ba00;
}
.wrapper .article .recruit-2 .row .col-50.bg-red .text p {
  color: #fff;
}
.wrapper .article .recruit-2 .row .col-50.bg-red .text .more-btn {
  background-color: #fe8989;
}
.wrapper .article .recruit-2 .row .col-50.bg-yellow {
  background-color: #e8ba00;
}
.wrapper .article .recruit-2 .row .col-50.bg-yellow .text .title {
  color: #ce2b13;
}
.wrapper .article .recruit-2 .row .col-50.bg-yellow .text p {
  color: #000;
}
.wrapper .article .recruit-2 .row .col-50.bg-yellow .text .more-btn {
  background-color: #000;
}
.wrapper .article .head {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
  margin-bottom: 38px;
  text-align: center;
}
@media (max-width: 1050px) {
  .wrapper .article .head {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .wrapper .article .head {
    padding: 0 26px;
    margin-bottom: 20px;
  }
}
.wrapper .article .item-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1074px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 30px;
}
@media (max-width: 1050px) {
  .wrapper .article .item-row {
    padding: 0;
  }
}
.wrapper .article .item-row .item {
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 60px);
  --widthC: calc(var(--widthB) / 3);
  width: var(--widthC);
  padding-top: 34px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 10px;
}
@media (max-width: 1050px) {
  .wrapper .article .item-row .item {
    width: 100%;
  }
}
.wrapper .article .item-row .item.spirit-item {
  background-color: #fdf8e5;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .article .item-row .item.spirit-item {
    margin-bottom: 0px;
  }
}
.wrapper .article .item-row .item.spirit-item .photo {
  width: 204px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
}
.wrapper .article .item-row .item.spirit-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  color: rgba(0, 0, 0, 0.7);
  text-align: justify;
  text-align-last: center;
  padding: 0 40px;
  margin-bottom: 30px;
}
.wrapper .article .item-row .item.spirit-item .deco {
  width: 155px;
  margin-top: auto;
  padding-bottom: 30px;
  border-bottom: 4px solid #e60012;
}
.wrapper .article .item-row .item.spirit-item .deco .num {
  position: relative;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-align: center;
  z-index: 0;
}
.wrapper .article .item-row .item.spirit-item .deco .num::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e8ba00;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.wrapper .article .item-row .item.feature-item {
  position: relative;
  padding: 0 30px;
  box-sizing: border-box;
}
.wrapper .article .item-row .item.feature-item:last-child::after {
  display: none;
}
.wrapper .article .item-row .item.feature-item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 212px;
  background-color: white;
  top: 50%;
  right: -0.5px;
  transform: translateY(-50%);
}
.wrapper .article .item-row .item.feature-item .icon {
  width: 68px;
  height: 68px;
  background-color: #e60012;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
}
.wrapper .article .item-row .item.feature-item .icon img {
  width: auto;
}
.wrapper .article .item-row .item.feature-item .title {
  margin-bottom: 32px;
}
.wrapper .article .item-row .item.feature-item .title span {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.wrapper .article .item-row .item.feature-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  color: rgba(0, 0, 0, 0.7);
  text-align: justify;
  text-align-last: center;
  margin-bottom: 30px;
}
.wrapper .member {
  background-image: url("../img/member-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0px 85px 0px;
}
@media (max-width: 767px) {
  .wrapper .member {
    padding: 0;
    background: url("../img/bg-pattern1.png") no-repeat, url("../img/bg-pattern2.png") no-repeat, #fffbd2;
    background-position: left top, right bottom;
    background-size: 277px 271px, 321px 372px;
  }
}
.wrapper .member .content {
  background: url("../img/bg-pattern1.png") no-repeat, url("../img/bg-pattern2.png") no-repeat, #fffbd2;
  background-position: left top, right bottom;
  background-size: 277px 271px, 321px 372px;
  position: relative;
  border-radius: 30px;
  max-width: 1450px;
  margin: 0 auto 30px;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .wrapper .member .content {
    width: 100%;
    background: none;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.wrapper .member .content .w-980 {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.wrapper .member .content .w-980 .title {
  text-align: center;
  margin-bottom: 50px;
}
.wrapper .member .content .w-980 .title h1 {
  font-size: 30px;
  color: #e60012;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .wrapper .member .content .w-980 .title h1 {
    font-size: 26px;
  }
}
.wrapper .member .content .w-980 .title h1 span {
  display: block;
}
.wrapper .member .content .w-980 .title p {
  font-size: 22px;
  font-weight: 600;
}
.wrapper .member .content .w-980 h2 {
  margin: 0 auto;
  text-align: left;
  font-size: 25px;
  color: #e60012;
  margin-bottom: 20px;
}
.wrapper .member .content .w-980 ul > li {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  color: #da5467;
  line-height: 1.5;
  padding: 25px 0 25px 55px;
}
.wrapper .member .content .w-980 ul > li:last-child::after {
  display: none;
}
.wrapper .member .content .w-980 ul > li::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 43px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/cream-icon.png");
  left: 0;
  top: 20px;
}
.wrapper .member .content .w-980 ul > li::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: #eee9b2;
  display: block;
  left: 0;
  bottom: 0;
}
.wrapper .member .content .w-980 ul > li.no-icon {
  color: #000;
}
.wrapper .member .content .w-980 ul > li.no-icon::before {
  display: none;
}
.wrapper .member .content .w-980 ul > li p {
  display: block;
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 2;
}
.wrapper .member .content .w-980 ul > li ol {
  list-style: disc;
  list-style-type: disc;
  list-style-position: outside;
  padding-top: 10px;
}
.wrapper .member .content .w-980 ul > li ol li {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  line-height: 2;
}
.wrapper .member .content .w-980 ul > li ol li::marker {
  color: #da5467;
}
.wrapper .member .content .w-980 ul + h2 {
  margin-top: 50px;
  color: #3eb13a;
}
.wrapper .member .row {
  width: 1450px;
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  -ms-flex-pack: justify;
      justify-content: space-between;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .member .row {
    padding: 0 15px 80px;
  }
}
.wrapper .member .row .col-50 {
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 40px);
  --widthC: calc(var(--widthB) / 2);
  width: var(--widthC);
}
@media (max-width: 767px) {
  .wrapper .member .row .col-50 {
    width: 100%;
    margin-bottom: 15px;
  }
}
.wrapper .member .row .col-50 .mobile-br {
  display: none;
}
@media (max-width: 1024px) {
  .wrapper .member .row .col-50 .mobile-br {
    display: block;
  }
}
.wrapper .member .row .col-50 .line-group {
  border-radius: 30px;
  text-align: center;
  width: 100%;
  height: 320px;
  background-color: #3eb13a;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .member .row .col-50 .line-group h3 {
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
}
.wrapper .member .row .col-50 .line-group h3 .icon {
  width: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 10px;
}
.wrapper .member .row .col-50 .line-group p {
  font-size: 17px;
  color: #000;
  padding: 0 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.wrapper .member .row .col-50 .line-group .line-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 172px;
  color: #fff;
  font-size: 16px;
  background-color: black;
  border-radius: 50px;
  padding: 16px 0px 16px 0px;
  text-decoration: none;
}
.wrapper .member .row .col-50 .line-group .line-btn img {
  width: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 10px;
}
.wrapper .member .row .col-50 .openpoint-group {
  border-radius: 30px;
  text-align: center;
  width: 100%;
  height: 320px;
  background-color: #f39801;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .member .row .col-50 .openpoint-group .openpoint {
  width: 70%;
  max-width: 488px;
  margin-bottom: 20px;
}
.wrapper .member .row .col-50 .openpoint-group p {
  font-size: 17px;
  color: #fff;
  padding: 0 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.wrapper .member .row .col-50 .openpoint-group .op-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 172px;
  color: #fff;
  font-size: 16px;
  background-color: black;
  border-radius: 50px;
  padding: 16px 0px 16px 0px;
  text-decoration: none;
}
.wrapper .member .row .col-50 .openpoint-group .op-btn img {
  width: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 10px;
}
.wrapper .member .row .col-50 .uniopen-group {
  border-radius: 30px;
  text-align: center;
  width: 100%;
  height: 320px;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .member .row .col-50 .uniopen-group .uniopen {
  width: 70%;
  max-width: 488px;
  margin-bottom: 20px;
}
.wrapper .member .row .col-50 .uniopen-group p {
  font-size: 17px;
  color: #000;
  padding: 0 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.wrapper .member .row .col-50 .uniopen-group .op-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  width: 172px;
  color: #fff;
  font-size: 16px;
  background-color: black;
  border-radius: 50px;
  padding: 16px 0px 16px 0px;
  text-decoration: none;
}
.wrapper .member .row .col-50 .uniopen-group .op-btn img {
  width: auto;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .wrapper .activity-page .listGroup + .part {
    margin-top: 30px;
  }
}
.wrapper .activity-page .part {
  position: relative;
  border-radius: 30px;
  max-width: 1450px;
  margin: 0 auto 50px;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part {
    border-radius: 0;
    padding: 40px 0;
    margin: 0 auto;
  }
}
.wrapper .activity-page .part.bg-y {
  background: url(../img/bg-pattern1.png) no-repeat, url(../img/bg-pattern2.png) no-repeat, #fffbd2;
  background-position: left top, right bottom;
  background-size: 277px 271px, 321px 372px;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part.bg-y {
    background-size: 277px 271px, 321px 372px;
  }
}
.wrapper .activity-page .part.bg-r {
  background: url(../img/about-firework01.png) no-repeat, url(../img/about-firework03.png) no-repeat, #fce9e9;
  background-position: right top, left bottom;
  background-size: 715px 500px, 715px 500px;
}
.wrapper .activity-page .part .content {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content {
    padding: 0 20px;
  }
}
.wrapper .activity-page .part .content .title {
  text-align: center;
  margin-bottom: 10px;
}
.wrapper .activity-page .part .content .title h1 {
  font-size: 30px;
  color: #e60012;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .title h1 {
    font-size: 26px;
  }
}
.wrapper .activity-page .part .content .title h1 span {
  display: block;
}
.wrapper .activity-page .part .content .title h1 span:nth-child(1) {
  font-weight: bold;
}
.wrapper .activity-page .part .content .info b {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin-bottom: 32px;
  color: #000;
}
.wrapper .activity-page .part .content .info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin-bottom: 32px;
  color: #000;
}
.wrapper .activity-page .part .content .gift-all {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .gift-all {
    margin-bottom: 20px;
  }
}
.wrapper .activity-page .part .content .gift-all .item {
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 60px);
  --widthC: calc(var(--widthB) / 4);
  width: var(--widthC);
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .gift-all .item {
    --widthA: 100%;
    --widthB: calc(var(--widthA) - 20px);
    --widthC: calc(var(--widthB) / 2);
    width: var(--widthC);
  }
}
.wrapper .activity-page .part .content .gift-all .item .photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.wrapper .activity-page .part .content .gift-all .item .award {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding: 6px 20px;
  background-color: #e3242b;
  border-radius: 50px;
  margin-bottom: 10px;
}
.wrapper .activity-page .part .content .gift-all .item b {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  line-height: 22px;
}
.wrapper .activity-page .part .content .gift-all .item p {
  display: block;
  margin-bottom: 10px;
}
.wrapper .activity-page .part .content form {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
.wrapper .activity-page .part .content form .d-pc-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content form .d-pc-flex {
    gap: 0;
  }
}
.wrapper .activity-page .part .content form .d-pc-flex .form-group {
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 20px);
  --widthC: calc(var(--widthB) / 2);
  width: var(--widthC);
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content form .d-pc-flex .form-group {
    width: 100%;
  }
}
.wrapper .activity-page .part .content form label {
  display: block;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
  color: #000;
  padding: 0 15px;
}
.wrapper .activity-page .part .content form .form-control {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  font-size: 20px;
  line-height: 24px;
  border-radius: 10px;
  border: none;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.wrapper .activity-page .part .content form .form-control-file {
  background-color: #fff;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 20px;
}
.wrapper .activity-page .part .content form .form-control-file input {
  font-size: 16px;
}
.wrapper .activity-page .part .content form .notice p {
  color: #e91512;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
.wrapper .activity-page .part .content form .form-check {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .activity-page .part .content form .form-check input {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 5px;
  margin-right: 5px;
}
.wrapper .activity-page .part .content form .form-check label {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .wrapper .activity-page .part .content form .form-check label {
    font-size: 18px;
  }
}
.wrapper .activity-page .part .content form .form-check label a {
  color: #e91512;
  text-decoration: underline;
}
.wrapper .activity-page .part .content form .sendout {
  text-align: center;
  padding-top: 30px;
}
.wrapper .activity-page .part .content form .sendout button {
  text-decoration: none;
  padding: 12px 40px;
  border-radius: 50px;
  color: #fff;
  background-color: #fe8989;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
.wrapper .activity-page .part .content .winner-item {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 50px;
}
.wrapper .activity-page .part .content .winner-item .winner-title {
  text-align: center;
  margin-bottom: 20px;
}
.wrapper .activity-page .part .content .winner-item .winner-title b {
  display: inline-block;
  background-color: #e60012;
  color: #fff;
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 50px;
  margin: 0 auto 10px;
}
.wrapper .activity-page .part .content .winner-item .winner-title p {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}
.wrapper .activity-page .part .content .winner-item table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: #fff;
  border-collapse: collapse;
  border: 1px solid #dee2e6;
}
.wrapper .activity-page .part .content .winner-item table tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.wrapper .activity-page .part .content .winner-item table th,
.wrapper .activity-page .part .content .winner-item table td {
  padding: 1rem;
  border: 1px solid #dee2e6;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .winner-item table th,
  .wrapper .activity-page .part .content .winner-item table td {
    padding: 10px;
  }
}
.wrapper .activity-page .part .content .winner-item table th {
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .winner-item table th {
    font-size: 16px;
  }
}
.wrapper .activity-page .part .content .winner-item table td {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .winner-item table td {
    font-size: 16px;
    vertical-align: middle;
  }
}
.wrapper .activity-page .part .content .winner-item table td span {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .winner-item table td span {
    display: block;
    margin-right: 0;
  }
}
.wrapper .activity-page .part .content .notice b {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .notice b {
    font-size: 18px;
  }
}
.wrapper .activity-page .part .content .notice p {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .notice p {
    font-size: 18px;
  }
}
.wrapper .activity-page .part .content .notice a {
  color: #000;
}
.wrapper .activity-page .part .content .notice ol {
  padding-left: 25px;
}
.wrapper .activity-page .part .content .notice ol li {
  font-size: 20px;
  line-height: 1.5;
  list-style-type: decimal;
  list-style-position: outside;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .notice ol li {
    font-size: 18px;
  }
}
.wrapper .activity-page .part .content .notice ul {
  padding-left: 25px;
}
.wrapper .activity-page .part .content .notice ul li {
  font-size: 20px;
  line-height: 1.5;
  list-style-type: disc;
  list-style-position: outside;
}
@media (max-width: 767px) {
  .wrapper .activity-page .part .content .notice ul li {
    font-size: 18px;
  }
}
.wrapper .contact-page {
  background-image: url("../img/bg01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0px 85px 0px;
}
@media (max-width: 767px) {
  .wrapper .contact-page {
    padding: 0;
    background: url("../img/bg-pattern1.png") no-repeat, url("../img/bg-pattern2.png") no-repeat, #fffbd2;
    background-position: left top, right bottom;
    background-size: 277px 271px, 321px 372px;
  }
}
.wrapper .contact-page .content {
  background: url("../img/bg-pattern1.png") no-repeat, url("../img/bg-pattern2.png") no-repeat, #fffbd2;
  background-position: left top, right bottom;
  background-size: 277px 271px, 321px 372px;
  position: relative;
  border-radius: 30px;
  max-width: 1450px;
  margin: 0 auto 30px;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .wrapper .contact-page .content {
    width: 100%;
    background: none;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.wrapper .contact-page .content .w-980 {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.wrapper .contact-page .content .w-980 .title {
  text-align: center;
  margin-bottom: 10px;
}
.wrapper .contact-page .content .w-980 .title h1 {
  font-size: 30px;
  color: #e60012;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .wrapper .contact-page .content .w-980 .title h1 {
    font-size: 26px;
  }
}
.wrapper .contact-page .content .w-980 .title h1 span {
  display: block;
}
.wrapper .contact-page .content .w-980 .title h1 span:nth-child(1) {
  font-weight: bold;
}
.wrapper .contact-page .content .w-980 p {
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  color: #000;
  margin-bottom: 30px;
}
.wrapper .contact-page .content .w-980 .contact-info {
  text-align: center;
  margin-bottom: 40px;
}
.wrapper .contact-page .content .w-980 .contact-info ul li {
  display: block;
  margin-bottom: 10px;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  line-height: 1.5;
}
.wrapper .contact-page .content .w-980 .contact-info ul li .icon {
  display: inline;
  width: 28px;
  margin-right: 16px;
}
.wrapper .contact-page .content .w-980 .contact-info ul li .info {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 24px;
}
.wrapper .contact-page .content .w-980 .contact-info ul li .email {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 24px;
}
.wrapper .contact-page .content .w-980 .contact-info ul li a {
  color: #000;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .contact-page .content .w-980 .contact-info ul li.red {
  color: #d00000;
}
.wrapper .privacy {
  background-image: url("../img/bg01.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0px 85px 0px;
}
@media (max-width: 767px) {
  .wrapper .privacy {
    padding: 0;
  }
}
.wrapper .privacy .content {
  max-width: 74%;
  width: 100%;
  margin: 0 auto;
  padding: 80px 30px 92px 30px;
  background-color: #fffbd2;
  border-radius: 25px;
  box-sizing: border-box;
}
@media (max-width: 1366px) {
  .wrapper .privacy .content {
    max-width: 85%;
  }
}
@media (max-width: 992px) {
  .wrapper .privacy .content {
    max-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.wrapper .privacy .content .w-1180 {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.wrapper .privacy .content .w-1180 .title {
  text-align: center;
  margin-bottom: 10px;
}
.wrapper .privacy .content .w-1180 .title h1 {
  font-size: 30px;
  color: #e60012;
  line-height: 1.3;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .privacy .content .w-1180 .title h1 {
    font-size: 26px;
  }
}
.wrapper .privacy .content .w-1180 .title h1 span {
  display: block;
}
.wrapper .privacy .content .w-1180 .title h1 span:nth-child(1) {
  font-weight: bold;
}
.wrapper .privacy .content .w-1180 p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.9px;
  margin-bottom: 32px;
  color: #000;
}
@media (max-width: 767px) {
  .wrapper .privacy .content .w-1180 p {
    font-size: 16px;
  }
}
.wrapper .privacy .content .w-1180 h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 1.1px;
}
@media (max-width: 767px) {
  .wrapper .privacy .content .w-1180 h2 {
    font-size: 20px;
  }
}
.wrapper .footer {
  background-color: #e3242b;
}
.wrapper .footer .footer-content {
  max-width: 1680px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  color: white;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 50px 0;
  }
}
.wrapper .footer .footer-content .contact {
  -ms-flex: 1;
      flex: 1;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact {
    -ms-flex-order: 2;
        order: 2;
  }
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .info {
    text-align: center;
    padding-top: 30px;
  }
}
.wrapper .footer .footer-content .contact .info p {
  font-size: 20px;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .info p {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.wrapper .footer .footer-content .contact .info a {
  color: #fff;
  text-decoration: none;
}
.wrapper .footer .footer-content .contact .info .phone {
  font-weight: bold;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-left: 16px;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .wrapper .footer .footer-content .contact .info .phone {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .info .phone {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 30px;
  }
}
.wrapper .footer .footer-content .contact .other-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .other-link {
    -ms-flex-direction: column;
        flex-direction: column;
    width: 70%;
    margin: 0 auto;
  }
}
.wrapper .footer .footer-content .contact .other-link .copyright {
  font-weight: 300;
  font-size: 12px;
  font-family: "Noto Sans TC";
  margin-right: 20px;
  display: inline-block;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .other-link .copyright {
    display: block;
    text-align: center;
    font-size: 9px;
    margin-right: 0;
    margin-bottom: 30px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .other-link .link {
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.wrapper .footer .footer-content .contact .other-link .link a {
  font-weight: 300;
  text-decoration: none;
  margin-right: 16px;
  color: white;
  font-size: 16px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .contact .other-link .link a {
    margin: 0px 8px 0px 8px;
    font-size: 12px;
  }
}
.wrapper .footer .footer-content .footer-logo {
  max-width: 250px;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .footer-logo {
    display: none;
  }
}
.wrapper .footer .footer-content .others {
  -ms-flex: 1;
      flex: 1;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .others {
    -ms-flex-order: 1;
        order: 1;
  }
}
.wrapper .footer .footer-content .others .button-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .others .button-group {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 10px;
  }
}
.wrapper .footer .footer-content .others .button-group a {
  display: block;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 10px 30px;
  margin: 20px 2px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .others .button-group a {
    font-size: 14px;
    padding: 12px 18px;
    margin: 15px 2px;
    white-space: nowrap;
    border: 1px solid #fff;
  }
}
.wrapper .footer .footer-content .others .other-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: end;
}
.wrapper .footer .footer-content .others .other-bottom span {
  font-size: 16px;
  margin-right: 20px;
  display: block;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .wrapper .footer .footer-content .others .other-bottom span {
    display: none;
  }
}
.wrapper .footer .footer-content .others .other-bottom .follow-icon-group {
  display: -ms-flexbox;
  display: flex;
}
.wrapper .footer .footer-content .others .other-bottom .follow-icon-group a {
  width: 36px;
  margin-right: 14px;
}

.magnify-lens {
  box-shadow: none !important;
  border: 1px solid #bdb2b2 !important;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  white-space: nowrap;
  overflow: hidden;
  overflow-y: auto;
  text-align: center;
  display: none;
}
.lightbox.active {
  opacity: 1;
  display: block;
  visibility: visible;
}
@media (min-width: 1400px) {
  .lightbox {
    font-size: 16px;
  }
}
.lightbox:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lightbox .lightbox-close {
  z-index: 2;
  position: absolute;
  right: -15px;
  top: -15px;
  width: 45px;
  height: 45px;
  background: url("../img/close.svg") center/contain no-repeat;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 0.5s;
}
@media (min-width: 767px) {
  .lightbox .lightbox-close:hover {
    transform: rotate(90deg);
    transition: 0.5s;
  }
}
.lightbox .lightbox-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
}
.lightbox .lightbox-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content {
    max-width: 100%;
  }
}
.lightbox .lightbox-content .lightbox-wrap {
  display: block;
  background-color: white;
  padding: 10% 8%;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
  }
}
.lightbox .lightbox-content img {
  width: 100%;
}
.lightbox#index-pop .lightbox-content {
  max-width: 800px;
}
@media (max-width: 767px) {
  .lightbox#index-pop .lightbox-content {
    width: 90%;
  }
}
.lightbox#index-pop .lightbox-content .lightbox-wrap {
  padding: 0;
}
.lightbox.alert-pop .lightbox-blur {
  background-color: rgba(255, 255, 255, 0.5);
}
.lightbox.alert-pop .lightbox-content {
  position: relative;
  width: 320px;
  max-width: 100%;
  box-sizing: border-box;
}
.lightbox.alert-pop .lightbox-content .lightbox-wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 246px;
  background-color: #e8ba00;
  border-radius: 10px;
  overflow: hidden;
}
.lightbox.alert-pop .lightbox-content .lightbox-wrap p {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
}
.lightbox.alert-pop .lightbox-content .lightbox-wrap p.en {
  font-size: 36px;
  margin-bottom: 5px;
  font-weight: bold;
}
.lightbox.alert-pop .lightbox-content .lightbox-wrap p.cn {
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: bold;
}
.lightbox.line-pop .lightbox-blur {
  background-color: rgba(255, 255, 255, 0.7);
}
.lightbox.line-pop .lightbox-content {
  position: relative;
  width: 665px;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lightbox.line-pop .lightbox-content {
    width: 90%;
    max-width: 665px;
  }
}
.lightbox.line-pop .lightbox-content .lightbox-close {
  background: url(../img/close-g.svg) center/contain no-repeat;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.3));
}
.lightbox.line-pop .lightbox-content .lightbox-wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #3eb13a;
  border-radius: 10px;
  overflow: hidden;
}
.lightbox.line-pop .lightbox-content .lightbox-wrap .code {
  width: 226px;
  margin-bottom: 40px;
}
.lightbox.line-pop .lightbox-content .lightbox-wrap h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}
.lightbox.line-pop .lightbox-content .lightbox-wrap p {
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #000;
  white-space: normal;
}

.recruit .lightbox .lightbox-content {
  max-width: 780px;
  white-space: normal;
  width: 100%;
}
@media (max-width: 767px) {
  .recruit .lightbox .lightbox-content {
    width: 90%;
  }
}
.recruit .lightbox .lightbox-content .lightbox-wrap {
  position: relative;
  padding: 56px 105px 56px 105px;
  border-radius: 10px;
  background-color: #e0b830;
  box-sizing: border-box;
  text-align: left;
}
@media (max-width: 767px) {
  .recruit .lightbox .lightbox-content .lightbox-wrap {
    padding: 20px;
  }
}
.recruit .lightbox .lightbox-content .lightbox-wrap h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.66px;
  color: #000;
}
@media (max-width: 767px) {
  .recruit .lightbox .lightbox-content .lightbox-wrap h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
.recruit .lightbox .lightbox-content .lightbox-wrap h2.red {
  color: #e60012;
}
.recruit .lightbox .lightbox-content .lightbox-wrap hr {
  width: 100%;
  margin-top: 23px;
  margin-bottom: 23px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.recruit .lightbox .lightbox-content .lightbox-wrap h3 {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .recruit .lightbox .lightbox-content .lightbox-wrap h3 {
    font-size: 16px;
  }
}
.recruit .lightbox .lightbox-content .lightbox-wrap ul {
  list-style-type: disc;
  padding-left: 20px;
}
.recruit .lightbox .lightbox-content .lightbox-wrap ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.45px;
  white-space: normal;
}
@media (max-width: 767px) {
  .recruit .lightbox .lightbox-content .lightbox-wrap ul li {
    font-size: 16px;
  }
}

.error_page {
  width: 600px;
  max-width: 100%;
  padding: 50px 20px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .error_page {
    padding: 0 20px;
  }
}
.error_page .logo {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
.error_page .logo img {
  width: 100%;
  max-width: 100%;
}
.error_page .content {
  padding: 50px 20px;
  background-color: #e8ba00;
  border-radius: 10px;
}
.error_page .content p {
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .error_page .content p {
    font-size: 16px;
  }
}
.error_page .content .gotohome {
  display: inline-block;
  font-size: 18px;
  padding: 10px 40px;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border-radius: 30px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .error_page .content .gotohome {
    font-size: 16px;
  }
}

[ani] {
  animation-fill-mode: both;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
[ani]:not(.ani-active) {
  animation-name: none;
  opacity: 0;
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */