@charset "UTF-8";
/*! Pushy - v1.3.0 - 2019-6-25
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
@import url(/"/fonts.googleapis.com/earlyaccess/cwtexming.css");
@import url("//fonts.googleapis.com/earlyaccess/notosanstc.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200&display=swap");
.pushy {
  position: fixed;
  width: 280px;
  height: 100%;
  top: 0;
  z-index: 9995;
  background: #191918;
  overflow: auto;
  padding-top: 60px;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}

.pushy li a {
  display: block;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
}

.pushy li a:hover {
  color: #FFF;
}

.pushy > ul {
  margin: 0;
  padding: 0;
}

.pushy ul:first-child {
  margin-top: 10px;
}

.pushy.pushy-left {
  left: 0;
}

.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99), -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  -webkit-transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9994;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Buttons */
  /* Submenu Icon */
}

.pushy-submenu > ul {
  padding-left: 15px;
  -webkit-transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.pushy-submenu > ul .pushy-link {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.pushy-submenu button {
  width: 100%;
  color: #fff;
  padding: 15px 30px;
  text-align: left;
  background: transparent;
  border: 0;
}

.pushy-submenu button:hover {
  color: #fff;
}

.pushy-submenu > a,
.pushy-submenu > button {
  position: relative;
  font-size: 1rem;
}

.pushy-submenu > a::after,
.pushy-submenu > button::after {
  content: "";
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

/* Submenu Movement */
.pushy-submenu-closed > ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}

.pushy-submenu-open > ul {
  max-height: 1000px;
  visibility: visible;
}

.pushy-submenu-open .pushy-link {
  opacity: 1;
}

.pushy-submenu-open > a::after,
.pushy-submenu-open > button::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.pushy-submenu > ul .pushy-link {
  position: relative;
}

.pushy-submenu > ul .pushy-link::before {
  content: "";
  display: block;
  height: inherit;
  padding: 15px 0;
  width: 10px;
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
}

.pushy-submenu > ul {
  overflow: visible;
}

.pushy-submenu > ul .pushy-link:hover::before {
  background-color: #44DB5E;
}

/* pure-drawer.css */
/**************
## Container ##
**************/
.pure-container {
  position: relative;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

/************
## Toggler ##
************/
.pure-toggle {
  display: none;
}

.pure-toggle-label {
  cursor: pointer;
  display: block;
  position: fixed;
  top: 10px;
  z-index: 9997;
  color: #5d809d;
  width: 64px;
  height: 64px;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  border: 2px solid #5d809d;
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.pure-toggle-label:hover {
  border-color: #1fc08e;
  color: #1fc08e;
}

.pure-toggle-label:hover .pure-toggle-icon, .pure-toggle-label:hover .pure-toggle-icon:before, .pure-toggle-label:hover .pure-toggle-icon:after {
  background-color: #1fc08e;
}

.pure-toggle-label:active {
  -webkit-tap-highlight-color: transparent;
}

.pure-toggle-label .pure-toggle-icon, .pure-toggle-label .pure-toggle-icon:before, .pure-toggle-label .pure-toggle-icon:after {
  position: absolute;
  top: 55%;
  left: 50%;
  height: 4px;
  width: 35px;
  cursor: pointer;
  background: #5d809d;
  display: block;
  content: "";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.pure-toggle-label .pure-toggle-icon {
  transform: translate3d(-50%, -4px, 0);
  -webkit-transform: translate3d(-50%, -4px, 0);
}

.pure-toggle-label .pure-toggle-icon:before {
  -webkit-transform: translate3d(-50%, -14px, 0);
          transform: translate3d(-50%, -14px, 0);
}

.pure-toggle-label .pure-toggle-icon:after {
  -webkit-transform: translate3d(-50%, 10px, 0);
          transform: translate3d(-50%, 10px, 0);
}

.pure-toggle-label[data-toggle-label=left] {
  left: 15px;
  right: auto;
}

.pure-toggle-label[data-toggle-label=right] {
  right: 28px;
  left: auto;
}

.pure-toggle-label[data-toggle-label=top] {
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label:not([data-toggle-label=left]), .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label:not([data-toggle-label=right]), .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label:not([data-toggle-label=top]) {
  opacity: 0;
  z-index: -1;
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left], .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right], .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] {
  border-color: #1fc08e;
  color: #1fc08e;
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon, .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon, .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] .pure-toggle-icon {
  background-color: transparent;
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:before, .pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:after, .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:before, .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:after, .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] .pure-toggle-icon:before, .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] .pure-toggle-icon:after {
  top: -5px;
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:before, .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:before, .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] .pure-toggle-icon:before {
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:after, .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:after, .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] .pure-toggle-icon:after {
  transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 15px;
}

/* custom style */
/* Pure Drawer */
.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:after,
.pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:after, .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] .pure-toggle-icon:after {
  margin-left: 0;
}

.pure-toggle-label {
  border: none;
  /* background-color: #000; */
  -webkit-box-shadow: 0 16px 24px rgba(255, 255, 255, 0.6);
          box-shadow: 0 16px 24px rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 1px solid #000;
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left], .pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right], .pure-toggle[data-toggle=top]:checked ~ .pure-toggle-label[data-toggle-label=top] {
  background-color: #fff;
}

.pure-toggle-label .pure-toggle-icon, .pure-toggle-label .pure-toggle-icon:before, .pure-toggle-label .pure-toggle-icon:after {
  width: 22px;
  height: 2px;
}

.pure-toggle-label .pure-toggle-icon:before {
  margin-top: 25%;
}

.pure-toggle-label .pure-toggle-icon:after {
  margin-top: -20%;
}

.pure-toggle-label[data-toggle-label=right] {
  right: 2vw;
}

.pure-toggle-label .pure-toggle-icon, .pure-toggle-label .pure-toggle-icon:before, .pure-toggle-label .pure-toggle-icon:after {
  background-color: #000;
}

.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:before,
.pure-toggle[data-toggle=left]:checked ~ .pure-toggle-label[data-toggle-label=left] .pure-toggle-icon:after,
.pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:before,
.pure-toggle[data-toggle=right]:checked ~ .pure-toggle-label[data-toggle-label=right] .pure-toggle-icon:after {
  background-color: #000;
}

.pure-toggle:focus ~ .pure-toggle-label {
  border-color: #fff;
  color: #fff;
}

.pure-toggle-label:hover {
  border-color: #44DB5E;
  color: #44DB5E;
}

.pure-toggle-label:hover .pure-toggle-icon, .pure-toggle-label:hover .pure-toggle-icon:before, .pure-toggle-label:hover .pure-toggle-icon:after {
  background-color: #000;
}

.pure-toggle:checked ~ .pure-toggle-label .pure-toggle-icon, .pure-toggle:checked ~ .pure-toggle-label .pure-toggle-icon::before, .pure-toggle:checked ~ .pure-toggle-label .pure-toggle-icon::after {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Pushy */
/* all font setting */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
textarea,
p,
blockquote,
th,
td,
footer,
img {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "GTWalsheimGQ", "Lato", "Noto Sans TC", sans-serif, "Microsoft JhengHei", "Pingfang TC";
}

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

ol,
ul {
  list-style: none;
}

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

abbr,
acronym,
img {
  border: 0;
}

/* link styles*/
a,
div,
li {
  text-decoration: none;
}

a:hover,
div:hover,
li:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

/*------------------------------------*\
   DATE: 2020
   @author: RedRain
\*------------------------------------*/
@font-face {
  font-family: "GTWalsheimGQ";
  src: url(../fonts/GT-Walsheim-Pro-Light.woff2) format("woff2"), url(../fonts/GT-Walsheim-Pro-Light.woff) format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "GTWalsheimGQ";
  src: url(../fonts/GT-Walsheim-Pro-Medium.woff2) format("woff2"), url(../fonts/GT-Walsheim-Pro-Medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "GTWalsheimGQ";
  src: url(../fonts/GT-Walsheim-Pro-Bold.woff2) format("woff2"), url(../fonts/GT-Walsheim-Pro-Bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "GTWalsheimGQ";
  src: url(../fonts/GT-Walsheim-Pro-Black.woff2) format("woff2"), url(../fonts/GT-Walsheim-Pro-Black.woff) format("woff");
  font-weight: 900;
}
/* ============================================================
  參數設定
============================================================ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

/* ============================================================
  PRIMARY STRUCTURE
============================================================ */
::-moz-selection {
  color: #000;
  background: #44DB5E;
}
::selection {
  color: #000;
  background: #44DB5E;
}

img::-moz-selection {
  background: transparent;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

.clearfix:after {
  /* FF, IE8, O, S, etc. */
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

.clear {
  clear: both;
}

body {
  /*  min-width:1200px;*/
  /*  min-height:800px;*/
  height: 100vh;
  font-family: "GTWalsheimGQ", "Lato", "Noto Sans TC", sans-serif, "Microsoft JhengHei", "Pingfang TC";
  font-weight: 300;
  font-size: 16px;
  color: #000;
  line-height: 26px;
  letter-spacing: 0;
}

main {
  position: relative;
}

.pt-20vh {
  padding-top: 25vh;
}
@media (max-width: 1025px) {
  .pt-20vh {
    padding-top: 10vh;
  }
}

.pb-20vh {
  padding-bottom: 15vh;
}
@media (max-width: 1025px) {
  .pb-20vh {
    padding-bottom: 10vh;
  }
}

.bg-green {
  background: #44DB5E;
  display: inline-block;
}

.uppercase {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.gotop {
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  -webkit-backdrop-filter: blur(8px) saturate(80%);
  backdrop-filter: blur(2px) saturate(80%);
  position: fixed;
  bottom: 0%;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  padding: 10px;
  display: none;
}
@media (max-width: 768px) {
  .gotop {
    bottom: 10%;
  }
}
.gotop .icon {
  width: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.ebook-link {
  width: 60px;
  height: 60px;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid #000;
  -webkit-backdrop-filter: blur(2px) saturate(80%);
          backdrop-filter: blur(2px) saturate(80%);
  position: fixed;
  bottom: 10%;
  right: 0;
  background: url(../images/svg/ebook-black.svg) no-repeat center rgba(255, 255, 255, 0.5);
  background-size: 30px auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10;
  padding: 10px;
}
@media (max-width: 768px) {
  .ebook-link {
    bottom: 20%;
  }
}
.ebook-link::after {
  content: "E-book";
  color: #000;
  line-height: 40px;
  font-weight: 400;
  opacity: 0;
}
.ebook-link:hover {
  width: 150px;
  background-color: #44DB5E;
  background-position: 10% 50%;
  padding-left: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ebook-link:hover::after {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.ebook-link.home {
  right: 10px;
}

.header-box {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  z-index: 9;
  -webkit-transition: 1s;
  transition: 1s;
}
.header-box.sticky {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, white 5%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: 1s;
  transition: 1s;
}
.header-box .home-logo {
  position: fixed;
  width: 200px;
  z-index: 1;
  top: 2%;
  left: 1%;
}
@media (max-width: 576px) {
  .header-box .home-logo {
    width: 150px;
    left: 2%;
  }
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}

.pushy li a {
  padding: 0 30px;
  line-height: 20px;
  cursor: pointer;
}
.pushy li a.unready {
  color: #888;
}
.pushy li a.unready:hover {
  color: #888;
}

.pushy .pushy-submenu {
  padding: 15px 0;
}
.pushy .link-title {
  padding: 0 30px;
  color: #fff;
  cursor: pointer;
  position: relative;
  font-weight: 400;
}
.pushy .link-title.down-arrow:after {
  content: "";
  background: url(../images/svg/angle-small-right.svg) no-repeat top center;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pushy.pushy-submenu-open .down-arrow:after {
  -webkit-transform: rotate(180deg) translate(0, 50%);
          transform: rotate(180deg) translate(0, 50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pushy.pushy-submenu-close .down-arrow:after {
  -webkit-transform: rotate(0deg) translate(0%, -50%);
          transform: rotate(0deg) translate(0%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.pushy.openlink button {
  color: #fff;
  cursor: pointer;
}

.span-soon {
  font-size: 14px;
  font-weight: 300;
  padding: 0 30px;
  color: #44DB5E;
  letter-spacing: 0.75px;
}

.pushy-link {
  padding: 15px 0;
}
.pushy-link a {
  padding: 0 30px;
  cursor: initial;
}
.pushy-link a .span-soon {
  padding: 0;
}

.sponsor {
  background: rgba(0, 0, 0, 0.9);
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.sponsor .content {
  width: 1500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 820px) {
  .sponsor .content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 821px) and (max-width: 1280px) {
  .sponsor .content {
    width: 1000px;
  }
}
@media (min-width: 1281px) and (max-width: 1400px) {
  .sponsor .content {
    width: 1300px;
  }
}
.sponsor .sponsor-left,
.sponsor .sponsor-right {
  width: 46%;
}
@media (max-width: 1025px) {
  .sponsor .sponsor-left,
.sponsor .sponsor-right {
    width: 100%;
    padding: 40px;
  }
}
.sponsor .logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sponsor .logo-box .brandlogo {
  margin: 20px;
}
.sponsor .logo-box .brandlogo img {
  opacity: 0.9;
}
.sponsor .logo-box .brandlogo.big {
  max-width: 180px;
  max-height: 180px;
}
@media (max-width: 1025px) {
  .sponsor .logo-box .brandlogo.big {
    max-width: 100px;
  }
}
.sponsor .logo-box .brandlogo.mid {
  max-width: 150px;
  max-height: 150px;
}
@media (max-width: 1025px) {
  .sponsor .logo-box .brandlogo.mid {
    max-width: 80px;
  }
}
.sponsor .logo-box .brandlogo.small {
  max-width: 80px;
  max-height: 80px;
}
@media (max-width: 1025px) {
  .sponsor .logo-box .brandlogo.small {
    max-width: 60px;
  }
}
.sponsor .logo-box.taipei .mid {
  max-width: 80px;
  max-height: 80px;
}
@media (max-width: 1025px) {
  .sponsor .logo-box.taipei .mid {
    max-width: 60px;
  }
}
.sponsor .logo-box.taipei .mid.t1 {
  margin-right: 5px;
}
.sponsor .logo-box.taipei .mid.t2 {
  margin-left: 5px;
}
.sponsor .logo-box.taipei span {
  font-size: 28px;
  padding-top: 5px;
  font-weight: 300;
  opacity: 0.5;
  color: #fff;
}
.sponsor .title {
  font-size: 16px;
  color: #000;
  background: #44DB5E;
  letter-spacing: 1;
  font-weight: 100;
  display: inline-block;
}

.info-content {
  width: 100%;
  padding-left: 5vw;
}
@media (max-width: 992px) {
  .info-content {
    padding-left: 0;
  }
}
.info-content .content-box {
  border: 1px solid #000;
  border-right: 0;
}
@media (max-width: 576px) {
  .info-content .content-box {
    border-right: 1px solid #000;
  }
}
.info-content .pic-box {
  background: #000;
  border: 1px solid #000;
  width: calc((150/1600)*100%);
  padding: 15px;
}
@media (max-width: 1025px) {
  .info-content .pic-box {
    width: 100%;
    text-align: center;
    min-height: calc((260/1025)*100vw);
  }
  .info-content .pic-box img {
    width: calc((150/922)*100%);
  }
}
@media (max-width: 576px) {
  .info-content .pic-box {
    width: 100%;
    text-align: center;
    min-height: calc((160/576)*100vw);
  }
}
.info-content.Show .pic-box {
  padding: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1025px) {
  .info-content.Show .pic-box {
    height: calc((260/1025)*100vw);
    border-bottom: none;
  }
}
@media (max-width: 576px) {
  .info-content.Show .pic-box {
    height: calc((160/576)*100vw);
  }
}
.info-content.Show .pic-box img.bg {
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1025px) {
  .info-content.Show .pic-box img.bg {
    width: 100%;
    -webkit-transform: translate(0, -45%) scale(1.2);
            transform: translate(0, -45%) scale(1.2);
  }
}
.info-content.Show .pic-box .icon {
  position: absolute;
  z-index: 1;
  width: 65%;
  -webkit-transform: translate(32%, 50%);
          transform: translate(32%, 50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1025px) {
  .info-content.Show .pic-box .icon {
    width: auto;
    -webkit-transform: none;
            transform: none;
    left: 50%;
    top: 50%;
    margin-left: calc((-45/1025)*100vw);
    margin-top: calc((-55/1025)*100vw);
  }
}
@media (max-width: 1025px) {
  .info-content.Show .pic-box .icon {
    width: auto;
    -webkit-transform: none;
            transform: none;
    left: 50%;
    top: 50%;
    margin-left: calc((-60/576)*100vw);
    margin-top: calc((-60/576)*105vw);
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.info-content.Show .pic-box:hover .bg,
.info-content.Show .pic-box:hover .icon {
  -webkit-filter: invert(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.info-content .head-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-content .head-content .pic-box {
  -webkit-transform: translate(-10%, -20%);
          transform: translate(-10%, -20%);
}
.info-content .head-content .title-box {
  letter-spacing: 0;
  text-transform: uppercase;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.info-content .head-content .title-box .title {
  font-size: 62px;
  line-height: 62px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .info-content .head-content .title-box .title {
    font-size: 52px;
    line-height: 52px;
  }
}
.info-content .head-content .title-box .title .bg-green {
  height: 55px;
}
@media (max-width: 576px) {
  .info-content .head-content .title-box .title .bg-green {
    height: 43px;
  }
}
.info-content .head-content .title-box .s-title {
  font-size: 42px;
}
@media (max-width: 576px) {
  .info-content .head-content .title-box .s-title {
    font-size: 24px;
    line-height: 28px;
  }
}
.info-content .txt-content {
  padding: 0 40px 60px 40px;
  text-align: justify;
}
@media (max-width: 576px) {
  .info-content .txt-content {
    padding: 0 20px 40px 20px;
    text-align: left;
  }
}
.info-content .next-page {
  width: 100%;
  border-top: 1px solid #000;
  padding: 0 40px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .info-content .next-page {
    display: inline-block;
    text-align: center;
  }
}
.info-content .next-page .page-btn {
  display: inline-block;
  height: 100%;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  padding: 0 20px;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 576px) {
  .info-content .next-page .page-btn {
    border: none;
    padding: 0;
  }
}
.info-content .next-page .page-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.info-content .next-page .page-btn:hover {
  background: #44DB5E;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.openshow-brand.content-box {
  border-top: none;
}
.openshow-brand .brand-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.openshow-brand .brand-list .brand-box {
  width: calc((400/1600)*100vw);
  height: calc((400/1600)*100vw);
  border-right: 1px solid #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.openshow-brand .brand-list .brand-box:first-child, .openshow-brand .brand-list .brand-box:nth-child(4) {
  border-left: 1px solid #000;
}
.openshow-brand .brand-list .brand-box:nth-child(1), .openshow-brand .brand-list .brand-box:nth-child(2), .openshow-brand .brand-list .brand-box:nth-child(3) {
  border-bottom: 1px solid #000;
}
.openshow-brand .brand-list .brand-box:hover {
  border: 5px solid #44DB5E;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.opening-show .modal-dialog {
  max-width: 800px;
}
@media (max-width: 992px) {
  .opening-show .modal-dialog {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .opening-show .modal-dialog {
    max-width: 100vw;
  }
}
.opening-show .modal-dialog .modal-content {
  border-radius: 0;
  background: none;
  border: none;
}
.opening-show .modal-dialog video {
  width: 100%;
}

.ebook-box {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.e-book-coverbg {
  width: 120vw;
  height: 130vh;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-image: url(https://tpefw.com/images/under-bg.jpg);
  background-size: cover;
  background-position: center bottom;
  position: fixed;
  top: -10vh;
  left: -15vw;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.kv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  position: relative;
}
@media (max-width: 576px) {
  .kv {
    height: 80vh;
  }
}
.kv .animate-bg {
  height: 100%;
}
.kv .tpefw-logo-kv {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kv .tpefw-logo-kv .box {
  width: 500px;
}
@media (max-width: 576px) {
  .kv .tpefw-logo-kv .box {
    width: 300px;
  }
}
.kv .tpefw-logo-kv .tpefw-twfont {
  position: absolute;
  bottom: 2vh;
  padding: 0 60px;
}
@media (min-width: 768px) {
  .kv .tpefw-logo-kv .tpefw-twfont {
    -webkit-filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.7));
            filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.7));
  }
}
.kv .blur-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  background: url(https://tpefw.com/images/under-bg.jpg) no-repeat 50% 80%;
  background-size: cover;
}
@media (max-width: 576px) {
  .kv .blur-bg {
    width: 250%;
    left: -75%;
    background: url(https://tpefw.com/images/under-bg.jpg) no-repeat 50% 80%;
    background-size: cover;
  }
}
@media (min-width: 768px) and (max-width: 922px) {
  .kv .blur-bg {
    width: 130%;
    left: -15%;
  }
}
@media (min-width: 922px) and (max-width: 1025px) {
  .kv .blur-bg {
    width: 150%;
    left: -25%;
  }
}
.kv .video-box {
  position: relative;
}
.kv .video-box.kv-bg {
  width: 100%;
  height: 100%;
}
.kv .video-box.kv-bg video {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .kv .video-box.kv-bg video {
    bottom: -40%;
  }
}
.kv .video-box.top-kv {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kv .video-box.top-kv .sound-btn {
  position: fixed;
  z-index: 9999999;
  right: 20px;
  bottom: 3%;
}
@media (max-width: 768px) {
  .kv .video-box.top-kv .sound-btn {
    bottom: 12%;
  }
}
.kv .video-box.top-kv .sound-btn .mute {
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.4);
  background: url(../images/svg/music_sound.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 20px auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.kv .video-box.top-kv .sound-btn .mute:hover {
  background: url(../images/svg/music_sound_black.svg) no-repeat center #44db5e;
  background-size: 20px auto;
  border: 1px solid #44DB5E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.kv .video-box.top-kv .sound-btn .mute.off {
  background: url(../images/svg/music_mute.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 20px auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.kv .video-box.top-kv .sound-btn .mute.off:hover {
  background: url(../images/svg/music_mute_black.svg) no-repeat center #44db5e;
  background-size: 20px auto;
  border: 1px solid #44DB5E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.countdown-box {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding-bottom: 10px;
}
.countdown-box .title {
  background: #44DB5E;
  color: #000;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 30px;
  margin-bottom: 30px;
}
.countdown-box .time-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .countdown-box .time-box {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
}
.countdown-box li {
  width: 100px;
}
.countdown-box .timenumbers {
  font-size: 60px;
}
.countdown-box .timedescription {
  font-size: 14px;
  font-weight: 300;
}

.schedule-content {
  padding-top: 100px;
  position: relative;
}
.schedule-content .container {
  padding: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
  .schedule-content .container {
    width: 100%;
    max-width: 100%;
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .schedule-content .container {
    padding: 40px 0;
  }
}
.schedule-content .title-box {
  color: #000;
}
@media (max-width: 768px) {
  .schedule-content .title-box {
    padding: 0 15px;
  }
}
.schedule-content .title-box .title {
  font-size: 62px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  display: inline-block;
}
.schedule-content .title-box .s-title {
  font-size: 24px;
  font-weight: 300;
  display: inline-block;
  background: #44DB5E;
  padding: 0 5px;
}
.schedule-content .calendar {
  width: 100%;
  border: 3px solid #000;
  color: #000;
  margin-top: 65px;
}
.schedule-content .calendar .week-day {
  font-size: 20px;
}
.schedule-content .calendar .week-day p {
  font-weight: 500;
  font-family: "Jost", sans-serif;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100%/7);
          flex: 0 0 calc(100%/7);
  text-align: center;
  padding: 12px 0;
  border-right: 1px solid #000;
}
.schedule-content .calendar .week-day p:last-child {
  border-right: none;
}
.schedule-content .calendar .date-content {
  width: 100%;
  border-top: 1px solid #000;
}
.schedule-content .calendar .date-content .tr-box {
  border-top: 1px solid #000;
}
.schedule-content .calendar .date-content .tr-box:first-child {
  border-top: none;
}
.schedule-content .calendar .date-content .tr-box .td {
  width: calc(100%/7);
  border-right: 1px solid #000;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
  position: relative;
}
.schedule-content .calendar .date-content .tr-box .td:last-child {
  border-right: none;
}
.schedule-content .calendar .date-content .tr-box .td span {
  display: inline-block;
}
.schedule-content .calendar .date-content .tr-box .opacity-0 {
  opacity: 0;
}
.schedule-content .calendar .date-content .show-tagbox {
  width: 100%;
  padding: 12px;
  margin-top: 30px;
}
.schedule-content .calendar .date-content .show-tagbox:first-child {
  margin-top: 0;
}
.schedule-content .calendar .date-content .show-tagbox.time329-1700 {
  -webkit-transform: translate(0, 0px);
          transform: translate(0, 0px);
}
.schedule-content .calendar .date-content .show-tagbox.several-days {
  width: calc(100% + 15px);
  margin-left: -15px;
  margin-top: 0;
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .schedule-content .calendar .date-content .show-tagbox.several-days {
    margin-top: 18px;
  }
}
@media (max-width: 1366px) {
  .schedule-content .calendar .date-content .show-tagbox.several-days {
    margin-top: 0px;
  }
}
@media (max-width: 1280px) {
  .schedule-content .calendar .date-content .show-tagbox.several-days.several-box {
    margin-top: 0px;
  }
}
@media (min-width: 1281px) and (max-width: 1366px) {
  .schedule-content .calendar .date-content .show-tagbox.several-days.several-box {
    margin-top: 24px;
  }
}
.schedule-content .scroll-tips {
  display: inline-block;
  color: #fff;
  float: right;
  padding-right: 20px;
  margin: 20px 0;
  font-weight: 300;
}
.schedule-content .scroll-tips .icon {
  width: 20px;
  margin-left: 20px;
  -webkit-animation: scroll-tips 1s infinite;
          animation: scroll-tips 1s infinite;
}
@-webkit-keyframes scroll-tips {
  0% {
    -webkit-transform: translate(-10px, 0);
            transform: translate(-10px, 0);
  }
  50% {
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
  }
  100% {
    -webkit-transform: translate(-10px, 0);
            transform: translate(-10px, 0);
  }
}
@keyframes scroll-tips {
  0% {
    -webkit-transform: translate(-10px, 0);
            transform: translate(-10px, 0);
  }
  50% {
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
  }
  100% {
    -webkit-transform: translate(-10px, 0);
            transform: translate(-10px, 0);
  }
}
.schedule-content .scroll-tips .icon path {
  fill: #fff;
}
.schedule-content .m-calendar {
  width: 100%;
}
.schedule-content .m-calendar .nav {
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 20px;
}
.schedule-content .m-calendar .nav-tabs {
  border: none;
}
.schedule-content .m-calendar .nav-tabs .nav-link {
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #000;
  font-size: 20px;
  border-radius: 0;
  width: 100%;
  padding: 15px 30px;
  border-bottom: 1px solid #000;
  margin-left: -2px;
}
.schedule-content .m-calendar .nav-tabs .nav-link.active {
  font-weight: 900;
  background-color: #fff;
  border-color: #000;
}
.schedule-content .m-calendar .tab-pane {
  padding: 0 15px;
}
.schedule-content .m-calendar .show-tagbox {
  padding: 15px;
}
.schedule-content .show-tagbox {
  width: 100%;
  background: #000;
  color: #fff;
  margin: 15px 0;
  display: inline-block;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.schedule-content .show-tagbox:hover {
  background: #44DB5E;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.schedule-content .show-tagbox .date-time {
  font-weight: 300;
}
.schedule-content .show-tagbox .show-info .name {
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 24px;
  word-wrap: break-word;
}
.schedule-content .show-tagbox .show-info .place {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 18px;
  margin-top: 5px;
}

.box-30vw {
  width: 30vw;
}
@media (max-width: 992px) {
  .box-30vw {
    width: 100%;
  }
}

.box-70vw {
  width: 70vw;
}
@media (max-width: 992px) {
  .box-70vw {
    width: 100%;
  }
}

.Showinfo-both {
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .Showinfo-both {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 576px) {
  .Showinfo-both {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.Showinfo-both .page-title .title {
  font-size: 6.5vw;
  line-height: 6vw;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .Showinfo-both .page-title .title {
    font-size: 80px;
    line-height: 70px;
  }
}
@media (max-width: 1025px) {
  .Showinfo-both .page-title .title {
    font-size: 70px;
    line-height: 60px;
  }
}
.Showinfo-both .page-title .s-title {
  font-size: calc((24/1920)*100vw);
  font-weight: calc((28/1920)*100vw);
  font-weight: 500;
}
@media (max-width: 1025px) {
  .Showinfo-both .page-title .s-title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1026px) and (max-width: 1600px) {
  .Showinfo-both .page-title .s-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 992px) {
  .Showinfo-both .page-title {
    padding: 0 60px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .Showinfo-both .page-title {
    padding: 0 40px;
  }
}
.Showinfo-both .txt-content {
  padding: 60px 70px;
  height: 90vh;
  overflow: scroll;
}
@media (max-width: 576px) {
  .Showinfo-both .txt-content {
    padding: 40px;
    height: unset;
    overflow: unset;
  }
}
.Showinfo-both .bran-infoBox {
  margin-bottom: 70px;
}
.Showinfo-both .bran-infoBox:last-child {
  margin-bottom: 0;
}
.Showinfo-both .bran-infoBox .brand-name {
  font-size: 30px;
  font-weight: 700;
  padding: 16px;
  border: 1px solid #000;
  width: 100%;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.Showinfo-both .bran-infoBox .brand-name:after {
  content: "";
  background: url(../images/svg/link.svg) no-repeat center;
  background-size: 100% auto;
  width: 20px;
  height: 20px;
  display: inline-block;
  float: right;
  -webkit-transform: translate(0, 3px);
          transform: translate(0, 3px);
}
.Showinfo-both .bran-infoBox .brand-name:hover {
  background: #44DB5E;
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.Showinfo-both .bran-infoBox p {
  margin-top: 30px;
}

.Showinfo-both .school .brand-name {
  cursor: initial;
}
.Showinfo-both .school .brand-name::after {
  content: "";
  background: none;
}

.school-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 1025px) {
  .school-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.school-info .school-logo {
  width: 20%;
  min-width: 150px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-right: 30px;
}
.school-info .school-logo.big {
  width: 40%;
}
@media (max-width: 1025px) {
  .school-info .school-logo.big {
    width: 70%;
    min-width: 70%;
  }
}
@media (max-width: 1025px) {
  .school-info .school-logo {
    width: 200px;
    min-width: 200px;
    padding-right: 0;
    margin-top: 30px;
  }
}
.school-info p {
  width: 100%;
}

.Showinfo-both.select-shop {
  display: inline-block;
}
.Showinfo-both.select-shop .page-title {
  padding: 0 5vw;
}
.Showinfo-both.select-shop .page-title .title.small {
  font-size: 45px;
  line-height: 40px;
}
.Showinfo-both.select-shop .shoplink-box {
  padding-top: 100px;
}
.Showinfo-both.select-shop .shoplink-box .title {
  width: 100%;
  border-bottom: 1px solid #000;
}
.Showinfo-both.select-shop .shoplink-box .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 5vw;
  width: 100%;
}
.Showinfo-both.select-shop .shoplink-box .link-box .link-btn {
  width: calc((100%/4) - 40px);
  min-height: 60px;
  margin: 20px;
  text-align: left;
}
@media (max-width: 1025px) {
  .Showinfo-both.select-shop .shoplink-box .link-box .link-btn {
    width: calc((100%/3) - 40px);
  }
}
@media (max-width: 576px) {
  .Showinfo-both.select-shop .shoplink-box .link-box .link-btn {
    width: calc(100% - 40px);
  }
}
.Showinfo-both.select-shop .shoplink-box .link-box .link-btn a {
  border: 1px solid #000;
  padding: 20px;
  display: inline-block;
  width: 100%;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  background: url(../images/svg/link.svg) no-repeat 90% 200%;
  background-size: 20px auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.Showinfo-both.select-shop .shoplink-box .link-box .link-btn a:hover {
  background-position: 90% center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #44DB5E;
}

@media (max-width: 576px) {
  .Showinfo-both.viedo-wall .shoplink-box {
    padding-top: 60px;
  }
}
.Showinfo-both.viedo-wall .video-box {
  width: calc((100%/3) - 60px);
  min-height: 60px;
  margin: 30px;
  text-align: left;
}
.Showinfo-both.viedo-wall .video-box p {
  font-weight: 500;
}
@media (max-width: 1200px) {
  .Showinfo-both.viedo-wall .video-box {
    width: calc((100%/2) - 60px);
  }
}
@media (max-width: 768px) {
  .Showinfo-both.viedo-wall .video-box {
    width: calc(100% - 60px);
  }
}
@media (max-width: 576px) {
  .Showinfo-both.viedo-wall .video-box {
    margin: 20px 0;
    width: 100%;
  }
}
.Showinfo-both.viedo-wall .video-box iframe {
  width: 100%;
  height: calc((300/1920)*100vw);
}
@media (max-width: 1200px) {
  .Showinfo-both.viedo-wall .video-box iframe {
    width: 100%;
    height: calc((300/1200)*100vw);
  }
}
@media (max-width: 768px) {
  .Showinfo-both.viedo-wall .video-box iframe {
    height: calc((400/750)*100vw);
  }
}

.designer {
  padding: 150px 0;
}
.designer .tab-bar {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 100px;
  z-index: 8;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 576px) {
  .designer .tab-bar {
    top: 90px;
  }
}
.designer .tab-bar a {
  display: block;
  width: calc(100% / 3);
  padding: 10px 0;
  border-right: 1px solid #000;
  font-weight: 700;
  line-height: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.designer .tab-bar a:last-child {
  border-right: none;
}
.designer .tab-bar a:hover {
  background: #44DB5E;
  color: #000;
}
.designer .content-box {
  width: 100%;
  padding: 0 100px;
  border-bottom: 1px solid #000;
}
.designer .content-box:last-child {
  border-bottom: none;
}
@media (max-width: 1025px) {
  .designer .content-box {
    padding: 0 40px;
  }
}
@media (max-width: 576px) {
  .designer .content-box {
    padding: 0 20px;
  }
}

.designer-box {
  padding-top: 25vh;
  position: relative;
  padding-left: calc(120px/2);
}
.designer-box:last-child {
  padding-bottom: 10vh;
}
.designer-box.pt-15vh {
  padding-top: 15vh;
}
@media (max-width: 922px) {
  .designer-box {
    padding-left: calc(40px/2);
    padding-top: 20vh;
  }
}
.designer-box .brand-logo {
  width: 150px;
  display: inline-block;
  border: 1px solid #000;
  position: absolute;
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 922px) {
  .designer-box .brand-logo {
    width: 80px;
  }
}
.designer-box .pic {
  width: calc((550 / 1920)*100vw);
}
@media (max-width: 576px) {
  .designer-box .pic {
    width: 100%;
  }
}
.designer-box .pic.h-resize {
  width: auto;
  height: calc((450 / 1920)*100vw);
  overflow: hidden;
}
@media (max-width: 922px) {
  .designer-box .pic.h-resize {
    height: calc((450 / 750)*100vw);
  }
  .designer-box .pic.h-resize.sm-un-h-size {
    height: calc((450 / 922)*100vw);
  }
  .designer-box .pic.h-resize.un-h-size {
    height: calc((500 / 1920)*100vw);
  }
}
.designer-box .name-title {
  font-weight: 700;
  font-size: calc((30/1920)*100vw);
}
@media (max-width: 1025px) {
  .designer-box .name-title {
    font-size: calc((30/1025)*100vw);
  }
}
@media (max-width: 576px) {
  .designer-box .name-title {
    font-size: 30px;
  }
}
.designer-box .txt-content {
  padding-left: 4vw;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
@media (max-width: 576px) {
  .designer-box .txt-content {
    padding-left: 0;
  }
}