@import url("https://fonts.googleapis.com/css2?family=Days+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");
body {
  margin: 0;
  color: rgb(97, 97, 97);
  font-family: "Noto Sans TC", sans-serif;
  position: relative;
}
body:after {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../image/bg-02.jpg) no-repeat center/cover;
}
body.active {
  overflow: hidden;
}

#loading {
  height: 100vh;
  width: 100%;
  background-color: #adadad;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  max-width: 1140px;
  width: 95%;
  margin: auto;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul,
ol {
  margin-bottom: 0;
  padding: 0;
  list-style-position: inside;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 1px;
}

h2 {
  font-size: 24px;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 4px;
}

h3 {
  font-size: 24px;
}

p {
  line-height: 2;
}

.bg-text {
  position: sticky;
  top: 0;
  font-family: "Days One", sans-serif;
}
.bg-text span {
  position: absolute;
  top: -20px;
  left: 0;
  text-transform: uppercase;
  display: block;
  writing-mode: vertical-rl;
  opacity: 0.08;
  color: #adadad;
  font-size: 70px;
  letter-spacing: 4px;
}

img {
  width: 100%;
}

.link-btn {
  display: block;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
}

.btn {
  width: 100px;
  line-height: 20px;
  border: 1px solid white;
  background-color: white;
  color: #4d4d4d;
  border-radius: 50vh;
  text-align: center;
  transition: all 0.3s;
  font-size: 14px;
  position: relative;
  left: 0;
}
.btn i {
  transition: all 0.3s;
  position: relative;
  left: -20px;
  width: 0;
  opacity: 0;
}
.btn.secondary {
  color: white;
  border: 1px solid white;
  background-color: transparent;
}

section:not(:first-child) {
  padding: 60px 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar .navbar-brand span {
  font-size: 0;
  position: absolute;
  height: 0;
  width: 0;
}

.navbar.active {
  background-color: white;
  box-shadow: 0 2px 3px rgba(187, 187, 187, 0.121);
}

.navbar.active h1 a {
  color: #4d4d4d;
}

.navbar.active .navbar-toggler i {
  color: #4d4d4d;
}

.navbar.active .navbar-collapse .navbar-nav .nav-link {
  color: #4d4d4d;
}

.navbar.open {
  background-color: white;
}

.navbar.open h1 a {
  color: #4d4d4d;
}

.navbar.open .navbar-toggler i {
  color: #4d4d4d;
}

.navbar .navbar-brand {
  display: block;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 400;
  margin-left: 12px;
  font-family: "Noto Serif TC", serif;
  color: #adadad;
  letter-spacing: 3px;
}
.navbar .navbar-brand img {
  width: 80px;
}

.navbar .navbar-toggler {
  color: transparent;
}

.navbar .navbar-toggler i {
  font-size: 18px;
  color: #adadad;
}

.navbar .navbar-collapse {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.navbar .navbar-collapse .navbar-nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar .navbar-collapse .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-collapse .navbar-nav .nav-link {
  text-align: center;
  margin: 12px;
  padding: 10px;
  color: rgb(97, 97, 97);
}

#banner {
  position: relative;
}
#banner .video-box {
  position: relative;
  width: 90%;
  margin-left: auto;
  height: 0;
  padding-bottom: 70vh;
}
#banner .video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85%;
  border-radius: 0 0 0 100px;
  animation: dark 2s forwards;
  filter: brightness(1);
}
@keyframes dark {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(0.65);
  }
}
#banner a.scroll {
  position: absolute;
  font-size: 12px;
  top: calc(100vh - 100px);
  right: 0;
  margin-left: auto;
  margin-right: 1.5rem;
  height: 100px;
  letter-spacing: 2px;
  color: #adadad;
  text-align: center;
  display: block;
  writing-mode: vertical-rl;
  z-index: 10;
}
#banner a.scroll:after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: rgba(173, 173, 173, 0.2509803922);
}
#banner a.scroll:before {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 0;
  height: 0;
  width: 1px;
  background-color: rgba(173, 173, 173, 0.3764705882);
  animation: top 3s infinite;
}
@keyframes top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

#banner .name {
  display: block;
  text-align: center;
  margin: 0;
  position: relative;
  margin-left: 5%;
  width: 80%;
  padding: 20px 10px;
  z-index: 10;
  font-family: "Noto Serif TC", serif;
  border: 1px solid #adadad;
  background-color: #fafafc;
  margin-top: -150px;
}
#banner .name:after {
  content: "";
  position: absolute;
  border: 1px solid #adadad;
  z-index: -1;
  animation: out 0.5s 1.5s forwards;
}
@keyframes out {
  0% {
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
  }
  100% {
    left: -8px;
    top: -8px;
    bottom: 8px;
    right: 8px;
    opacity: 1;
  }
}
#banner .name strong {
  color: #4d4d4d;
  writing-mode: vertical-rl;
  letter-spacing: 10px;
}
#banner .name strong span {
  padding: 0 10px;
  font-size: 40px;
}
#banner .name small {
  letter-spacing: 12px;
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #4d4d4d;
}
#banner .name small.eng {
  font-size: 12px;
  color: #adadad;
  letter-spacing: 1px;
}

#about {
  position: relative;
  margin-top: 80px;
}
#about .wrap:not(:last-child) {
  margin-bottom: 40px;
}
#about .img-box {
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
}
#about .img-box:after {
  content: "";
  position: absolute;
  left: 10px;
  right: -10px;
  top: 10px;
  bottom: -10px;
  background-color: #4d4d4d;
  opacity: 0.1;
  z-index: -1;
}
#about .text-box h2 {
  border-left: 6px solid #4d4d4d;
  padding-left: 12px;
  color: #4d4d4d;
  font-size: 20px;
}
#about .text-box h3 {
  color: #4d4d4d;
  margin: 8px 0 12px;
  font-family: "Noto Serif TC", serif;
}

#brand,
#strategy {
  position: relative;
}
#brand h2,
#strategy h2 {
  font-size: 16px;
  margin-bottom: 40px;
}
#brand h2 span,
#strategy h2 span {
  font-size: 36px;
  margin-right: 8px;
  border-bottom: 6px solid;
  padding-bottom: 8px;
}
#brand p,
#strategy p {
  font-size: 15px;
}
#brand ul li:not(:last-child),
#strategy ul li:not(:last-child) {
  margin-bottom: 16px;
}
#brand ul li small,
#strategy ul li small {
  display: block;
  font-size: 15px;
  margin-top: 4px;
}
#brand .pop-up,
#strategy .pop-up {
  position: fixed;
  width: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: white;
  color: white;
  box-shadow: 9px 12px 20px rgba(0, 0, 0, 0.08);
  display: none;
  background-blend-mode: overlay;
  text-align: center;
  animation: open 0.3s forwards;
}
@keyframes open {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
#brand .pop-up.pop-up-hide,
#strategy .pop-up.pop-up-hide {
  animation: pop-up-hide 0.6s forwards;
}
@keyframes pop-up-hide {
  0% {
    width: 90%;
  }
  100% {
    width: 0;
  }
}
#brand .pop-up h3,
#strategy .pop-up h3 {
  background-color: #adadad;
  display: block;
  color: white;
  padding: 8px 0;
  display: none;
}
#brand .pop-up .text-box,
#strategy .pop-up .text-box {
  position: relative;
  padding: 40px 28px;
  display: none;
  height: 80vh;
  overflow-y: scroll;
}
#brand .pop-up .text-box ul,
#strategy .pop-up .text-box ul {
  margin-bottom: 20px;
}
#brand .pop-up .text-box ul li,
#strategy .pop-up .text-box ul li {
  font-weight: 300;
}
#brand .pop-up .text-box ul li:last-child,
#strategy .pop-up .text-box ul li:last-child {
  list-style-type: none;
}
#brand .pop-up .text-box .price,
#strategy .pop-up .text-box .price {
  margin: 40px 0;
  padding: 0 20px;
  background-color: white;
  border: 1px solid rgb(240, 240, 240);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
#brand .pop-up .text-box .price dl,
#brand .pop-up .text-box .price dt,
#brand .pop-up .text-box .price dd,
#strategy .pop-up .text-box .price dl,
#strategy .pop-up .text-box .price dt,
#strategy .pop-up .text-box .price dd {
  margin: 0;
}
#brand .pop-up .text-box .price dl,
#strategy .pop-up .text-box .price dl {
  color: #4d4d4d;
}
#brand .pop-up .text-box .price dl .col-md-4:not(:last-child),
#strategy .pop-up .text-box .price dl .col-md-4:not(:last-child) {
  border-bottom: 1px solid rgb(240, 240, 240);
}
#brand .pop-up .text-box .price dl dt,
#strategy .pop-up .text-box .price dl dt {
  margin: 20px 0 12px;
  font-size: 20px;
  letter-spacing: 2px;
}
#brand .pop-up .text-box .price dl dd,
#strategy .pop-up .text-box .price dl dd {
  margin-bottom: 20px;
}
#brand .pop-up .text-box .price-m p,
#strategy .pop-up .text-box .price-m p {
  letter-spacing: 1px;
}
#brand .pop-up .text-box .price-m p span,
#strategy .pop-up .text-box .price-m p span {
  font-style: italic;
  display: block;
  font-size: 2em;
  line-height: 1.4;
}
#brand .pop-up .btn-box,
#strategy .pop-up .btn-box {
  margin-top: 40px;
}
#brand .services-card,
#strategy .services-card {
  background-color: white;
}
#brand .services-box,
#strategy .services-box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  box-shadow: 9px 12px 20px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
  overflow: hidden;
}
#brand .services-box .more,
#strategy .services-box .more {
  position: absolute;
  right: 32px;
  bottom: 20px;
  z-index: 10;
  opacity: 1;
  transform: scale(1) rotate(0);
  transition: all 0.3s;
  font-size: 14px;
  color: #adadad;
}
#brand .services-box .more::after,
#strategy .services-box .more::after {
  content: "";
  position: absolute;
  left: -12px;
  top: -4px;
  width: 20px;
  height: 20px;
  border-left: 1px solid #adadad;
  border-top: 1px solid #adadad;
  transition: all 0.3s;
}
#brand .services-box .more::before,
#strategy .services-box .more::before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -4px;
  width: 20px;
  height: 20px;
  border-right: 1px solid #adadad;
  border-bottom: 1px solid #adadad;
  transition: all 0.3s;
}
#brand .services-box .img-box,
#strategy .services-box .img-box {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  clip-path: polygon(0 0, 78% 0, 52% 100%, 0% 100%);
  z-index: 10;
  transition: all 0.3s;
}
#brand .services-box .img-box .inner,
#strategy .services-box .img-box .inner {
  position: absolute;
  right: 0;
  top: 40px;
  width: 250px;
  margin-left: auto;
  padding: 15px;
  transition: all 0.3s;
}
#brand .services-box .img-box .inner h3,
#strategy .services-box .img-box .inner h3 {
  color: white;
  z-index: 5;
  text-shadow: 0 1px 1px #000;
  font-size: 26px;
  text-align: right;
  width: 100%;
  line-height: 1.4;
}
#brand .services-box .outside,
#strategy .services-box .outside {
  position: absolute;
  right: 0;
  top: 40px;
  width: 250px;
  margin-left: auto;
  padding: 15px;
  transition: all 0.3s;
}
#brand .services-box .outside h3,
#strategy .services-box .outside h3 {
  color: #4d4d4d;
  z-index: 1;
  font-size: 26px;
  text-align: right;
  width: 100%;
  line-height: 1.4;
}

#brand {
  background-color: #fafafc;
}
#brand .bg-text span {
  left: unset;
  right: 0;
  top: -140px;
  color: #adadad;
}
#brand .col-lg-4:nth-child(1):hover .img-box {
  background-size: 110%;
}
#brand .col-lg-4:nth-child(1) .img-box {
  background: url(../image/brand/img-01.jpg) no-repeat center;
  background-size: 120%;
}
#brand .col-lg-4:nth-child(1) .pop-up {
  background: url(../image/brand/img-01.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#brand .col-lg-4:nth-child(2):hover .img-box {
  background-size: 110%;
}
#brand .col-lg-4:nth-child(2) .img-box {
  background: url(../image/brand/img-02.jpg) no-repeat center;
  background-size: 120%;
}
#brand .col-lg-4:nth-child(2) .pop-up {
  background: url(../image/brand/img-02.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#brand .col-lg-4:nth-child(3):hover .img-box {
  background-size: 110%;
}
#brand .col-lg-4:nth-child(3) .img-box {
  background: url(../image/brand/img-03.jpg) no-repeat center;
  background-size: 120%;
}
#brand .col-lg-4:nth-child(3) .pop-up {
  background: url(../image/brand/img-03.jpg) no-repeat center/cover, rgb(60, 60, 60);
}

#price {
  width: 100%;
}
#price h2 {
  text-align: center;
}
#price .price_box {
  display: flex;
  flex-direction: row;
}
#price .price_box .price_card {
  color: #575859;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  height: auto;
  transition: 0.5s;
}
#price .price_box .price_card h3 {
  margin: 2rem;
  text-align: center;
}
#price .price_box .price_card div {
  width: 60%;
  margin-bottom: 2rem;
}
#price .price_box .price_card div ul {
  list-style: none;
  text-align: center;
  line-height: 2.5rem;
}
#price .price_box .price_card div ul p {
  font-style: italic;
  opacity: 0.8;
}
#price .price_box .price_card button {
  background-color: #575859;
  color: #fff;
  margin-bottom: 10px;
}
#price .price_box .price_card button:hover {
  background-color: #a1a1a2;
  color: #fff;
  transform: scale(1.1);
}
#price .price_card#pb1 {
  background: url(../image/price/01.png);
  background-size: cover;
}
#price .price_card:hover {
  transform: scale(1.05);
  transition: 0.5s;
  color: #fff;
}
#price .price_card:hover button {
  background-color: #a1a1a2;
  color: #fff;
  margin-bottom: 10px;
}
#price .price_card:hover button:hover {
  background-color: #575859;
  color: #fff;
  transform: scale(1.1);
}
#price .price_card#pb1 {
  background: url(../image/price/01.png);
  background-size: cover;
}
#price .price_card#pb1:hover {
  background: url(../image/price/01_b.png);
  background-size: cover;
}
#price .price_card#pb2 {
  background: url(../image/price/02.png) -20px 0px;
  background-size: cover;
}
#price .price_card#pb2:hover {
  background: url(../image/price/02_b.png) -20px 0px;
  background-size: cover;
}
#price .price_card#pb3 {
  background: url(../image/price/03.png);
  background-size: cover;
}
#price .price_card#pb3:hover {
  background: url(../image/price/03_b.png);
  background-size: cover;
}
@media (max-width: 992px) {
  #price .price_box {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  #price .price_box .price_card {
    height: 350px;
    display: flex;
    justify-content: center;
  }
}

#strategy {
  background: url(../image/bg-04.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
#strategy .bg-text span {
  top: -200px;
}
#strategy .col-lg-4:nth-child(1):hover .img-box {
  background-size: 110%;
}
#strategy .col-lg-4:nth-child(1) .img-box {
  background: url(../image/strategy/img-01.jpg) no-repeat center;
  background-size: 120%;
}
#strategy .col-lg-4:nth-child(1) .pop-up {
  background: url(../image/strategy/img-01.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#strategy .col-lg-4:nth-child(2):hover .img-box {
  background-size: 110%;
}
#strategy .col-lg-4:nth-child(2) .img-box {
  background: url(../image/strategy/img-02.jpg) no-repeat center;
  background-size: 120%;
}
#strategy .col-lg-4:nth-child(2) .pop-up {
  background: url(../image/strategy/img-02.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#strategy .col-lg-4:nth-child(3):hover .img-box {
  background-size: 110%;
}
#strategy .col-lg-4:nth-child(3) .img-box {
  background: url(../image/strategy/img-03.jpg) no-repeat center;
  background-size: 120%;
}
#strategy .col-lg-4:nth-child(3) .pop-up {
  background: url(../image/strategy/img-03.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#strategy .col-lg-4:nth-child(4):hover .img-box {
  background-size: 110%;
}
#strategy .col-lg-4:nth-child(4) .img-box {
  background: url(../image/strategy/img-04.jpg) no-repeat center;
  background-size: 120%;
}
#strategy .col-lg-4:nth-child(4) .pop-up {
  background: url(../image/strategy/img-04.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#strategy .col-lg-4:nth-child(5):hover .img-box {
  background-size: 110%;
}
#strategy .col-lg-4:nth-child(5) .img-box {
  background: url(../image/strategy/img-05.jpg) no-repeat center;
  background-size: 120%;
}
#strategy .col-lg-4:nth-child(5) .pop-up {
  background: url(../image/strategy/img-05.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#strategy .col-lg-4:nth-child(6):hover .img-box {
  background-size: 110%;
}
#strategy .col-lg-4:nth-child(6) .img-box {
  background: url(../image/strategy/img-06.jpg) no-repeat center;
  background-size: 120%;
}
#strategy .col-lg-4:nth-child(6) .pop-up {
  background: url(../image/strategy/img-06.jpg) no-repeat center/cover, rgb(60, 60, 60);
}
#strategy .services-box {
  padding-bottom: 70%;
  background-color: #fafafc;
}
#strategy .services-box .more {
  right: unset;
  left: 40px;
  bottom: 20px;
}
#strategy .services-box .img-box {
  clip-path: polygon(17% 0, 100% 0%, 100% 100%, 40% 100%);
}
#strategy .services-box .img-box .inner {
  right: unset;
  left: 10px;
  top: 20px;
  width: 100%;
  margin-left: unset;
  margin-right: auto;
}
#strategy .services-box .img-box .inner h3 {
  text-align: left;
}
#strategy .services-box .outside {
  right: unset;
  left: 10px;
  top: 20px;
  width: 100%;
  margin-left: unset;
  margin-right: auto;
}
#strategy .services-box .outside h3 {
  text-align: left;
}

#contact-block {
  position: relative;
  background: url(../image/bg.jpg) no-repeat center/cover, rgb(60, 60, 60);
  background-blend-mode: overlay;
  color: white;
  background-attachment: fixed;
}
#contact-block .text-box {
  max-width: 600px;
  font-size: 20px;
  padding: 100px 0;
}
#contact-block .text-box p {
  margin-bottom: 0;
}
#contact-block .text-box a {
  width: 100%;
  margin-top: 160px;
  border-radius: 0;
  line-height: 40px;
  font-size: 20px;
  color: white;
  background-color: transparent;
  position: relative;
}
#contact-block .text-box a:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -130px;
  height: 100px;
  width: 1px;
  background-color: white;
  animation: contact 3s infinite;
}
@keyframes contact {
  0% {
    height: 0;
  }
  100% {
    height: 100px;
  }
}

@media (max-width: 576px) {
  #contact-block {
    background-attachment: unset;
  }
  #contact-block .text-box {
    padding: 60px 20px;
    font-size: 16px;
  }
}
#group {
  position: relative;
  background-color: #fafafc;
  z-index: 0;
}
#group:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background-color: #adadad;
  clip-path: polygon(0 100%, 100% 100%, 0 90%);
  z-index: -10;
  transition: all 0.8s;
}
#group::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  background-color: #adadad;
  clip-path: polygon(100% 10%, 100% 0, 0 0);
  z-index: -10;
  transition: all 0.8s;
}
#group .bg-text span {
  left: unset;
  right: 0;
  top: -350px;
}
#group .sentence {
  width: 95%;
  margin: 0 auto 80px;
}
#group .sentence p {
  padding: 20px 10px;
  font-family: "Noto Serif TC", serif;
  font-style: italic;
  margin-bottom: 0;
}
#group .group-box {
  position: relative;
}
#group .group-box img {
  position: relative;
  left: 8px;
  border-radius: 10px;
  object-fit: cover;
}
#group .group-box h3 {
  position: relative;
  bottom: 30px;
  left: -8px;
  text-align: center;
  color: white;
  width: 200px;
  line-height: 50px;
  font-family: "Noto Serif TC", serif;
  background-color: #4d4d4d;
}
#group .group-box h3:after {
  content: "";
  position: absolute;
  left: 6px;
  right: -6px;
  top: 6px;
  bottom: -6px;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
}
#group .group-box .btn {
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 200px;
  border: 0;
  border: 2px solid #4d4d4d;
  border-radius: 10px;
  position: relative;
}
#group .group-box .btn p {
  font-size: 36px;
}
#group .group-box .btn p small {
  font-size: 16px;
  display: block;
}
#group .group-box i {
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  width: 60px;
  background-color: #4d4d4d;
  color: white;
  border-radius: 50%;
  transform: rotate(45deg);
}
#group .btn-box ul {
  list-style-type: none;
}
#group .btn-box ul li {
  text-align: left;
  width: 250px;
  padding: 0 20px;
  margin-bottom: 20px;
}
#group .btn-box ul li.active .link-btn i.fa-long-arrow-up {
  font-size: 28px;
  top: -10px;
}
#group .btn-box ul li .link-btn {
  text-align: left;
  width: 100%;
  border: 0;
  color: #4d4d4d;
  position: relative;
}
#group .btn-box ul li .link-btn i {
  font-size: 44px;
  width: 44px;
  height: 44px;
}
#group .btn-box ul li .link-btn i.fa-long-arrow-up {
  transition: all 0.3s;
  font-size: 14px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 10px;
  color: #adadad;
  transform: rotate(45deg);
}
#group .btn-box ul li span {
  vertical-align: text-bottom;
  display: inline-block;
  font-size: 16px;
  line-height: 44px;
  margin-left: 12px;
}

footer {
  position: relative;
  color: #fafafc;
  background-color: #4d4d4d;
  padding: 60px 0 20px;
}
footer .contact-box .logo img {
  width: 80%;
  max-width: 300px;
  filter: brightness(2) invert(2);
}
footer .contact-box .logo h2 {
  margin-bottom: 30px;
  color: white;
  font-size: 36px;
  letter-spacing: 10px;
}
footer .contact-box .logo h2 small {
  font-size: 16px;
  display: block;
  font-weight: 400;
  display: block;
  letter-spacing: 2px;
}
footer .contact-box .logo p {
  color: #adadad;
  font-style: italic;
  margin-bottom: 40px;
  font-size: 14px;
}
footer .contact-box ul {
  list-style-type: none;
}
footer .contact-box ul li {
  font-size: 12px;
  color: #adadad;
  line-height: 2;
  margin-bottom: 12px;
}
footer .contact-box ul li a,
footer .contact-box ul li span {
  color: white;
  display: block;
  font-size: 14px;
}
footer .contact-box .link-btn {
  border: 0;
  font-size: 36px;
  color: #fafafc;
  margin: 8px;
}
footer a.top {
  position: absolute;
  font-size: 12px;
  bottom: 80px;
  right: 0;
  margin-left: auto;
  margin-right: 1.5rem;
  height: 80px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  display: block;
  writing-mode: vertical-rl;
}
footer a.top:after {
  content: "";
  position: absolute;
  right: -0.5rem;
  bottom: 50%;
  transform: translateY(50%);
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
footer a.top:before {
  content: "";
  position: absolute;
  right: -0.5rem;
  bottom: 0;
  height: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  animation: top 3s infinite;
}
@keyframes top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
footer .footer-text {
  color: #adadad;
  font-size: 12px;
  margin-top: 60px;
}
footer .footer-text a {
  color: #adadad;
  letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
  .bg-text span {
    font-size: 120px;
  }
  #banner a.scroll {
    font-size: 16px;
  }
  #banner .video-box {
    height: 80vh;
  }
  #banner .name {
    margin-left: 5%;
    width: 500px;
    padding: 60px;
    margin-top: -250px;
  }
  @keyframes out {
    0% {
      left: 0px;
      top: 0px;
      bottom: 0px;
      right: 0px;
      opacity: 0;
    }
    100% {
      left: -16px;
      top: -16px;
      bottom: 16px;
      right: 16px;
      opacity: 1;
    }
  }
  #banner .name strong span {
    font-size: 56px;
  }
  #banner .name small {
    font-size: 28px;
  }
  #banner .name small.eng {
    font-size: 16px;
    margin-top: 30px;
  }
  #brand .pop-up .text-box,
  #strategy .pop-up .text-box {
    height: fit-content;
  }
  #brand .pop-up .text-box ul,
  #strategy .pop-up .text-box ul {
    margin: 50px 0;
  }
  #brand .pop-up .text-box ul li,
  #strategy .pop-up .text-box ul li {
    font-size: 16px;
  }
  #brand .pop-up .text-box ul li:not(:last-child),
  #strategy .pop-up .text-box ul li:not(:last-child) {
    margin-bottom: 24px;
  }
  #brand .pop-up .text-box p,
  #strategy .pop-up .text-box p {
    font-size: 16px;
  }
  #brand .pop-up .text-box .price,
  #strategy .pop-up .text-box .price {
    margin: 50px 0;
    padding: 20px 10px;
  }
  #brand .pop-up .text-box .price dl .col-md-4:not(:last-child),
  #strategy .pop-up .text-box .price dl .col-md-4:not(:last-child) {
    border-bottom: 0;
    border-right: 1px solid rgb(240, 240, 240);
  }
  #brand .pop-up .text-box .price-m,
  #strategy .pop-up .text-box .price-m {
    margin-top: 50px;
  }
  #brand .pop-up .text-box .price-m p,
  #strategy .pop-up .text-box .price-m p {
    font-size: 16px;
  }
  #brand .pop-up .text-box .price-m p span,
  #strategy .pop-up .text-box .price-m p span {
    font-size: 2.5em;
  }
  #brand .pop-up .text-box .btn-box,
  #strategy .pop-up .text-box .btn-box {
    margin-top: 80px;
    margin-bottom: 50px;
  }
  #brand .pop-up .text-box .btn,
  #strategy .pop-up .text-box .btn {
    line-height: 36px;
    font-size: 16px;
    width: 140px;
  }
  #brand p,
  #strategy p {
    font-size: 16px;
  }
  #brand .services-box .more,
  #strategy .services-box .more {
    right: 60px;
    bottom: 40px;
    font-size: 22px;
  }
  #brand .services-box .more::after,
  #strategy .services-box .more::after {
    content: "";
    left: -16px;
    top: -8px;
  }
  #brand .services-box .more::before,
  #strategy .services-box .more::before {
    right: -16px;
    bottom: -8px;
  }
  #brand .services-box .img-box .inner,
  #strategy .services-box .img-box .inner {
    padding: 30px;
    width: 500px;
  }
  #brand .services-box .img-box .inner h3,
  #strategy .services-box .img-box .inner h3 {
    font-size: 52px;
  }
  #brand .services-box .outside,
  #strategy .services-box .outside {
    padding: 30px;
    width: 500px;
  }
  #brand .services-box .outside h3,
  #strategy .services-box .outside h3 {
    font-size: 52px;
  }
  #strategy .services-box .more {
    right: unset;
    left: 60px;
  }
  #group .sentence {
    margin-bottom: 100px;
    font-size: 16px;
  }
  #group .group-box .btn {
    height: 400px;
  }
  #group .btn-box ul li {
    text-align: left;
    width: 300px;
    margin: 0 20px;
    padding: 0 20px;
  }
  #group .btn-box ul li:nth-child(1), #group .btn-box ul li:nth-child(2) {
    margin-bottom: 40px;
  }
  #group .btn-box ul li .link-btn i {
    font-size: 60px;
    width: 60px;
    height: 60px;
  }
  #group .btn-box ul li .link-btn i.fa-long-arrow-up {
    font-size: 20px;
  }
  #group .btn-box ul li span {
    font-size: 20px;
    line-height: 60px;
    margin-left: 12px;
  }
  footer .contact-box .logo h2 {
    font-size: 50px;
  }
  footer a.top {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .bg-text span {
    font-size: 120px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link,
  .navbar .navbar-brand {
    position: relative;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:after,
  .navbar .navbar-brand:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background-color: #4d4d4d;
    transition: all 0.3s;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:hover:after,
  .navbar .navbar-brand:hover:after {
    width: 100%;
  }
  #banner a.scroll {
    right: 20px;
  }
  #banner a.scroll {
    font-size: 16px;
  }
  #banner .video-box {
    height: 80vh;
    width: 65%;
    right: 80px;
  }
  #banner .video-box video {
    border-radius: 20px;
    margin-top: 70px;
  }
  #banner .name {
    margin-left: 5%;
    width: 600px;
    padding: 60px;
    margin-top: -250px;
  }
  #banner .name strong span {
    font-size: 56px;
  }
  #banner .name small {
    font-size: 28px;
  }
  #banner .name small.eng {
    font-size: 16px;
    margin-top: 30px;
  }
  #about .wrap:not(:last-child) {
    margin-bottom: 120px;
  }
  #about .img-box:after {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    transition: all 0.3s;
  }
  #about .text-box {
    padding: 0 20px;
  }
  #about .text-box h3 {
    margin-bottom: 24px;
  }
  #about .wrap:hover .img-box {
    position: relative;
    z-index: 0;
    margin-bottom: 40px;
  }
  #about .wrap:hover .img-box:after {
    left: 16px;
    right: -16px;
    top: 16px;
    bottom: -16px;
  }
  #brand .services-box .more,
  #strategy .services-box .more {
    right: 30px;
    bottom: 20px;
    font-size: 14px;
  }
  #brand .services-box .more::after,
  #strategy .services-box .more::after {
    left: -12px;
    top: -4px;
  }
  #brand .services-box .more::before,
  #strategy .services-box .more::before {
    right: -12px;
    bottom: -4px;
  }
  #brand .services-box .img-box .inner,
  #strategy .services-box .img-box .inner {
    padding: 15px;
  }
  #brand .services-box .img-box .inner h3,
  #strategy .services-box .img-box .inner h3 {
    font-size: 28px;
  }
  #brand .services-box .outside,
  #strategy .services-box .outside {
    padding: 15px;
  }
  #brand .services-box .outside h3,
  #strategy .services-box .outside h3 {
    font-size: 28px;
  }
  #brand .services-box:hover,
  #strategy .services-box:hover {
    cursor: pointer;
  }
  #brand .services-box:hover .more::after,
  #strategy .services-box:hover .more::after {
    left: -18px;
    top: -10px;
  }
  #brand .services-box:hover .more::before,
  #strategy .services-box:hover .more::before {
    right: -18px;
    bottom: -10px;
  }
  #brand .services-box:hover .img-box:after,
  #strategy .services-box:hover .img-box:after {
    transform: scale(1.2);
  }
  #brand .pop-up .text-box,
  #strategy .pop-up .text-box {
    padding: 40px 80px;
  }
  #brand .pop-up .text-box ul li,
  #strategy .pop-up .text-box ul li {
    font-weight: 300;
  }
  #brand .pop-up .text-box p,
  #strategy .pop-up .text-box p {
    font-weight: 300;
  }
  #brand .pop-up .text-box .btn,
  #strategy .pop-up .text-box .btn {
    line-height: 36px;
    font-size: 16px;
    width: 140px;
  }
  #brand .pop-up a:hover,
  #strategy .pop-up a:hover {
    background-color: #4d4d4d;
    color: white;
    border: 1px solid #4d4d4d;
  }
  @keyframes open {
    0% {
      width: 0;
    }
    100% {
      width: 900px;
    }
  }
  #brand .pop-up.pop-up-hide,
  #strategy .pop-up.pop-up-hide {
    animation: pop-up-hide 0.6s forwards;
  }
  @keyframes pop-up-hide {
    0% {
      width: 800px;
    }
    100% {
      width: 0;
    }
  }
  #strategy .services-box .more {
    right: unset;
    left: 40px;
  }
  #group {
    padding: 160px 0;
  }
  #group:hover .group-wrap:after {
    clip-path: polygon(0 0, 100% 20%, 100% 70%, 0 50%);
  }
  #group .sentence {
    margin-bottom: 200px;
    font-size: 24px;
  }
  #group .sentence p {
    padding: 20px;
  }
  #group .group-wrap {
    position: relative;
  }
  #group .group-wrap:after {
    content: "";
    position: absolute;
    top: -30px;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #adadad;
    z-index: -1;
    transition: all 0.8s;
    clip-path: polygon(0 0, 0 0, 0 50%, 0 50%);
  }
  #group:after {
    width: 0;
  }
  #group::before {
    width: 0;
  }
  #group .container {
    max-width: unset;
  }
  #group .col-11:nth-child(1) {
    position: relative;
    margin-top: 0;
  }
  #group .col-11:nth-child(2) {
    position: relative;
    margin-top: 30px;
  }
  #group .col-11:nth-child(3) {
    position: relative;
    margin-top: 60px;
  }
  #group .col-11:nth-child(4) {
    position: relative;
    margin-top: 90px;
  }
  #group .group-box .btn {
    height: 300px;
    margin-top: 120px;
  }
  #group .group-box .btn.active {
    background-color: #4d4d4d;
    color: white;
  }
  #group .group-box .btn p {
    font-size: 48px;
  }
  #group .group-box .btn p small {
    font-size: 18px;
  }
  #group .group-box .icon i {
    transition: all 0.3s;
  }
  #group .group-box .icon.active i {
    border: 1px solid #4d4d4d;
    color: #4d4d4d;
    background-color: white;
    transform: scale(1.2) rotate(45deg);
  }
  #group .btn-box ul li {
    text-align: left;
    width: 450px;
    margin: 0 30px;
    padding: 0 50px;
  }
  #group .btn-box ul li.active .link-btn i.fa-long-arrow-up {
    font-size: 40px;
  }
  #group .btn-box ul li:nth-child(1), #group .btn-box ul li:nth-child(2) {
    margin-bottom: 60px;
  }
  #group .btn-box ul li .link-btn i {
    font-size: 80px;
    width: 80px;
    height: 80px;
  }
  #group .btn-box ul li span {
    font-size: 24px;
    line-height: 80px;
  }
  #contact-block .text-box a {
    line-height: 80px;
    font-size: 28px;
  }
  #contact-block .text-box a:hover {
    background-color: white;
    color: #4d4d4d;
  }
  footer {
    padding-top: 100px;
  }
  footer .container {
    max-width: unset;
    width: 80%;
  }
  footer .contact-box .logo h2 {
    font-size: 52px;
    line-height: 52px;
  }
  footer .contact-box .logo p {
    font-size: 16px;
  }
  footer .contact-box a:hover {
    color: #adadad;
  }
  footer .contact-box .link-btn:hover {
    color: #adadad;
  }
  footer .contact-box .logo,
  footer .contact-box ul {
    padding: 0 50px;
    margin-top: 0;
  }
  footer a.top {
    right: 20px;
    bottom: 80px;
  }
  footer a.top:hover {
    color: #fafafc;
  }
  footer .footer-text {
    margin-top: 100px;
    text-align: center;
  }
  footer .footer-text a:hover {
    color: white;
  }
}/*# sourceMappingURL=style.css.map */