:root {
  --headerHeight: 0px;
}

body {
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #5B5942;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden !important;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  * {
    letter-spacing: normal;
  }
}

a {
  text-decoration: none;
  color: #5B5942;
}

img {
  width: 100%;
}

.container {
  max-width: none;
  width: 85%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.card-block {
  max-width: 1400px;
  margin: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
  z-index: 9999;
}
.header .logo {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .header .logo {
    max-width: 200px;
  }
}
.header .menu {
  position: relative;
  font-size: 1.7rem;
  z-index: 99999;
  display: flex;
}
.header .menu .line:nth-child(1) {
  width: 70px;
  height: 1px;
  background: #707070;
  position: relative;
  top: 40%;
  transition: all 0.5s ease-in-out;
}
.header .menu .line:nth-child(2) {
  width: 30px;
  height: 1px;
  background: #707070;
  position: relative;
  top: 60%;
  transition: all 0.5s ease-in-out;
}
.header .menu:hover {
  color: #22439A;
}
.header .menu:hover .line {
  background: #22439A;
}
@media screen and (max-width: 768px) {
  .header .menu {
    font-size: 1.5rem;
  }
  .header .menu .line:nth-child(1) {
    width: 45px;
  }
  .header .menu .line:nth-child(2) {
    width: 30px;
  }
}
.header .menu.open .line:nth-child(1) {
  transform: rotate(-225deg);
  width: 42px;
  top: 50%;
  transition: all 0.5s ease-in-out;
}
.header .menu.open .line:nth-child(2) {
  transform: rotate(225deg);
  width: 42px;
  top: 46%;
  transition: all 0.5s ease-in-out;
}
.header nav {
  overflow: hidden;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff;
  -webkit-clip-path: circle(0% at 100% 0);
  clip-path: circle(0% at 100% 0);
  transition: -webkit-clip-path 0.5s ease-out;
  transition: clip-path 0.5s ease-out;
  transition: clip-path 0.5s ease-out, -webkit-clip-path 0.5s ease-out;
  width: 100%;
  height: 100%;
  padding: 5%;
}
@media screen and (max-width: 768px) {
  .header nav {
    overflow-y: auto;
  }
}
.header nav.open {
  -webkit-clip-path: circle(150% at 100% 0);
  clip-path: circle(150% at 100% 0);
}
.header nav .menu-tit {
  font-size: 800%;
  font-weight: bold;
  position: relative;
  z-index: -1;
  margin-bottom: 20px;
  line-height: 1;
}
.header nav .menu-tit::after {
  content: "";
  width: 95%;
  left: 0;
  right: 0;
  height: 20px;
  border-top: 1px solid #707070;
  background: #fff;
  position: absolute;
  bottom: -3%;
  z-index: 5;
}
@media screen and (max-width: 1600px) {
  .header nav .menu-tit {
    font-size: 600%;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }
  .header nav .menu-tit::after {
    width: 100%;
    bottom: -7%;
  }
}
@media screen and (max-width: 1200px) {
  .header nav .menu-tit {
    font-size: 500%;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }
  .header nav .menu-tit::after {
    width: 80%;
    bottom: -7%;
  }
}
@media screen and (max-width: 768px) {
  .header nav .menu-tit {
    font-size: 400%;
    margin-top: 5%;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .header nav .menu-tit::after {
    width: 80%;
    bottom: 3%;
  }
}
.header nav .nav-column {
  display: flex;
  flex-direction: column;
}
.header nav .nav-item {
  margin: 20px 0;
}
@media screen and (max-width: 1600px) {
  .header nav .nav-item {
    margin: 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .header nav .nav-item {
    margin: 10px 0;
  }
}
.header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header nav ul a {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .header nav ul a {
    font-size: 1.5rem;
  }
}
.header nav .footer_btn {
  border: 1px solid #5B5942;
  color: #5B5942;
}
.header nav .footer_btn:nth-child(1) .icon {
  background-image: url("../images/icon-phone-h.png");
}
.header nav .footer_btn:nth-child(2) .icon {
  background-image: url("../images/icon-mail-h.png");
}
.header nav .footer_btn:hover {
  background: #22439A;
  color: #fff;
}
.header nav .footer_btn:hover:nth-child(1) .icon {
  background-image: url("../images/icon-phone.png");
}
.header nav .footer_btn:hover:nth-child(2) .icon {
  background-image: url("../images/icon-mail.png");
}
@media screen and (max-width: 768px) {
  .header nav .footer_btn {
    height: 60px;
  }
}
.header nav .infor_icon {
  position: absolute;
  bottom: 5%;
  right: 8%;
}
.header nav .infor_icon i {
  color: #5B5942;
}
@media screen and (max-width: 768px) {
  .header nav .infor_icon {
    position: static;
  }
}
.header nav .circle_slogan {
  left: -5%;
  bottom: -30%;
}
@media screen and (max-width: 768px) {
  .header nav .circle_slogan {
    top: 0;
    bottom: unset;
    left: -8%;
  }
}

.more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  gap: 5px;
  position: relative;
  z-index: 2;
}
.more img {
  align-self: flex-end;
  vertical-align: middle;
  margin-bottom: 7px;
  max-width: 50px;
}
.more:hover img {
  animation: to-right 0.6s linear infinite;
  animation-direction: alternate;
}
@media screen and (max-width: 768px) {
  .more {
    font-size: 1.2rem;
  }
  .more img {
    width: 30px;
  }
}

.slider-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  position: fixed;
  top: var(--headerHeight);
  left: 92.5%;
  z-index: 999;
}
@media screen and (max-width: 1600px) {
  .slider-menu {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .slider-menu {
    position: sticky;
    bottom: 0;
    top: unset;
    left: 0;
    right: 0;
    margin: auto;
    flex-direction: row;
    gap: 0;
  }
}
.slider-menu a {
  background: #fff;
  border-radius: 0 15px 15px 0;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
  padding: 1rem 1.2rem;
}
.slider-menu a .icon {
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1400px) {
  .slider-menu a .icon {
    width: 25px;
    height: 25px;
  }
}
.slider-menu a .icon-about {
  background-image: url("../images/icon-image-h.png");
}
.slider-menu a .icon-qr-code {
  background-image: url("../images/icon-qr-code-h.png");
}
.slider-menu a .icon-hand {
  background-image: url("../images/icon-hand-h.png");
}
.slider-menu a:hover, .slider-menu a.active {
  background: #22439A;
  color: #fff;
}
.slider-menu a:hover .icon-about, .slider-menu a.active .icon-about {
  background-image: url("../images/icon-image.png");
}
.slider-menu a:hover .icon-qr-code, .slider-menu a.active .icon-qr-code {
  background-image: url("../images/icon-qr-code.png");
}
.slider-menu a:hover .icon-hand, .slider-menu a.active .icon-hand {
  background-image: url("../images/icon-hand.png");
}
@media screen and (max-width: 1400px) {
  .slider-menu a {
    padding: 0.8rem 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .slider-menu a {
    width: 50%;
    border-radius: 0;
  }
  .slider-menu a .icon {
    display: block;
    vertical-align: text-bottom;
    margin: auto;
    width: 25px;
    height: 25px;
  }
}
.slider-menu span {
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .slider-menu span {
    -webkit-writing-mode: unset;
    writing-mode: unset;
    font-size: 1.1rem;
  }
}
.slider-menu span span {
  writing-mode: lr;
  margin-top: 0;
  line-height: 1.1;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .slider-menu span span {
    margin: 0;
  }
}
.slider-menu .scroll {
  margin-top: 5%;
  animation: fly 2.5s linear infinite;
}
.slider-menu .scroll span {
  font-size: 1rem;
}
.slider-menu .scroll img {
  margin-top: 0.5rem;
  width: auto;
  max-height: 145px;
}
@media screen and (max-width: 768px) {
  .slider-menu .scroll {
    display: none;
  }
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  object-fit: cover;
}

.circle_slogan {
  max-width: 500px;
  position: absolute;
  animation: rotate 35s linear infinite;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .circle_slogan {
    max-width: 180px;
  }
}

.contanct {
  padding: 5% 0 0;
  background: url("../images/banner.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}
.contanct:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .contanct {
    background-size: cover;
  }
}
.contanct h2 {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .contanct h2 {
    font-size: 3rem;
  }
}
.contanct h2 span {
  display: block;
  font-size: 1.2rem;
}
.contanct h3 {
  color: #fff;
}
@media (max-width: 767px) {
  .contanct h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
}
.contanct p {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .contanct p {
    font-size: 0.9rem;
  }
}
.contanct .border-top img {
  max-width: 125px;
}
@media (max-width: 767px) {
  .contanct .border-top img {
    max-width: 95px;
  }
}

.footer_btn {
  display: inline-flex;
  padding: 15px;
  width: 350px;
  color: #fff;
  height: 80px;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  margin: 1%;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .footer_btn {
    max-width: 80%;
  }
}
.footer_btn:hover {
  background: #fff;
  color: #5B5942;
  opacity: 1;
}
.footer_btn:hover:nth-child(1) .icon {
  background-image: url("../images/icon-phone-h.png");
}
.footer_btn:hover:nth-child(2) .icon {
  background-image: url("../images/icon-mail-h.png");
}
.footer_btn span {
  text-align: left;
}
.footer_btn .font_small {
  font-size: 0.8em;
}
.footer_btn .icon {
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-right: 15px;
  opacity: 0.6;
}
.footer_btn:nth-child(1) .icon {
  background: url("../images/icon-phone.png") no-repeat;
  background-size: contain;
  background-position: center;
}
.footer_btn:nth-child(2) .icon {
  background: url("../images/icon-mail.png") no-repeat;
  background-size: contain;
  background-position: center;
}

.add_friend {
  border: 1px solid #fff;
  font-size: 1.4rem;
  padding: 20px;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 767px) {
  .add_friend {
    font-size: 1.2rem;
    width: 100%;
  }
}
.add_friend:hover {
  background: #fff;
  color: #5B5942;
}

.infor_icon {
  display: inline-block;
}
.infor_icon i {
  font-size: 30px;
  color: #fff;
  opacity: 0.7;
}
.infor_icon i:hover {
  opacity: 1;
}

.black_bg {
  background: rgba(2, 2, 2, 0.2705882353);
  padding: 15px;
}

.marquee {
  font-size: 150px;
  bottom: 0;
  margin-bottom: -4%;
  font-weight: bold;
  opacity: 0.1;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .marquee {
    font-size: 130px;
    margin-bottom: -8%;
  }
}
@media screen and (max-width: 768px) {
  .marquee {
    font-size: 80px;
    margin-bottom: -5%;
  }
}

.link_btn {
  background: #fff;
  box-shadow: 22px 17px 19px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  display: block;
  width: 100%;
  height: 100%;
  color: #22439A;
  text-align: center;
  font-size: 2rem;
  padding: 15% 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.link_btn img {
  position: absolute;
  max-width: 50%;
  left: -25%;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: -1;
  opacity: 0.1;
  filter: brightness(0.5);
}
.link_btn:hover {
  background: #22439A;
  color: #fff;
}
.link_btn:hover img {
  filter: none;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .link_btn {
    font-size: 1.5rem;
  }
}

.card {
  background: none;
  border: none;
  margin-bottom: 1rem;
}
.card .card-pic {
  position: relative;
  padding-bottom: 85%;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 3px;
}
.card .card-pic img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s;
}
.card:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .card .card-tit {
    font-size: 1.1rem;
  }
}

.member-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  background: #fff;
  position: sticky;
  top: 50px;
  z-index: 2;
  overflow: hidden;
}
.member-side li h3 {
  background: #22439A;
  color: #fff;
  padding: 1rem 0rem;
  margin: 0;
}
.member-side li a {
  width: 100%;
  display: block;
  padding: 1.1rem 0.5rem;
  font-size: 1.3rem;
}
.member-side li a:hover {
  background: #56C3E7;
  color: #fff;
}
.member-side li a.active {
  background: #56C3E7;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .member-side li a {
    font-size: 1.2rem;
    padding: 0.8rem 0;
  }
}
.member-side * {
  text-align: center;
}

.nav-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav-toggle {
    margin-left: 1rem !important;
  }
  .nav-toggle li {
    margin: 1rem 0;
  }
}

.text-org {
  color: #F6A400 !important;
}

.check-table-list {
  max-height: 300px;
  overflow: auto;
}

#add-member-info {
  z-index: 99999;
}
#add-member-info img {
  max-width: 100%;
  height: auto !important;
}

/* keyframes */
@keyframes fly {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes to-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(10px);
  }
}
.flatpickr-input.flatpickr-mobile {
  display: block;
  border: 1px solid rgba(91, 89, 66, 0.3);
  max-width: 300px;
  margin: auto;
  margin-bottom: 1em;
  font-size: 1.4rem;
  border-radius: 10px;
  padding: 15px 20px;
  width: 90%;
  font-size: 1.2rem;
}/*# sourceMappingURL=custom.css.map */