head, body {
  margin: 0;
  padding: 0;
  color: #4c4c4c;
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 1px;
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

h1 {
  font-size: 36px;
  letter-spacing: 6px;
  font-weight: bold;
  width: 100%;
}

h2 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 4px;
  position: relative;
  text-align: center;
}

h3 {
  font-weight: 700;
  font-size: 24px;
  color: #CA7A2C;
}

h4 {
  font-weight: 700;
  font-size: 20px;
}

p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}

.anchor {
  display: block;
  height: 90px;
  margin-top: -90px;
  visibility: hidden;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1420px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

header {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header nav {
  color: #000000;
}

header nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
  padding: 16px 12px;
}

header nav .container a {
  text-decoration: none;
  color: #000000;
}

header nav .container a .nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

header nav .container a .nav-title img {
  margin-right: 8px;
}

header nav .container .navbar-menu-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

header nav .container .navbar-menu-pc a {
  text-decoration: none;
  color: #000000;
}

header nav .container .navbar-menu-pc a li {
  list-style-type: none;
  margin: 0 20px;
  font-size: 22px;
}
header nav .container .navbar-menu-pc a:hover {
  color: red;
}
.home:hover h2{
  color: red;
}

header nav .container .navbar-toggle-open {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 8px;
  border: 0;
  border-radius: 4px;
  z-index: 1000;
  cursor: pointer;
  background-color: transparent;
}

header nav .container .navbar-toggle-open .toggle-line-set {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header nav .container .navbar-toggle-open .toggle-line-set .toggle-line {
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background-color: #305A56;
}

header nav .container .navbar-toggle-close {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 8px;
  border: 0;
  border-radius: 4px;
  background-color: transparent;
}

header nav .container .navbar-toggle-close .toggle-line-set {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header nav .container .navbar-toggle-close .toggle-line-set .toggle-line {
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background-color: #305A56;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header nav .container .navbar-toggle-close .toggle-line-set .toggle-line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
}

header nav .navbar-menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fafafa;
  display: none;
  padding: 12px 0;
  width: 100%;
}

header nav .navbar-menu-mobile ul {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

header nav .navbar-menu-mobile ul a {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
}

header nav .navbar-menu-mobile ul a li {
  list-style-type: none;
  text-align: center;
  margin: 8px 0;
}

header nav .navbar-menu-mobile ul a:hover {
  color: red;
}

@media (max-width: 991px) {
  header nav .container .navbar-menu-pc {
    display: none;
  }
  header nav .container .navbar-toggle-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.banner {
  height: 100vh;
  width: 100%;
  margin: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85) 0%, rgba(0, 0, 0, 0) 100%), url(../img/background.jpg); 
  /* background-image: url("../img/background.jpg"); */
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /* background-position: bottom; */
  /* background-color: #E1C4C4; */
  text-align: center;
  /* color: #ffffff; */
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* -ms-flex-wrap: wrap;
      flex-wrap: wrap; */
  width: 100%;
  height: 100vh;
  position: relative;
}

.banner .container .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.banner .container .banner-content .banner-square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: none;
      flex-wrap: none;
  width: 450px;
  height: 350px;
  position: relative;
  background-color: rgba(15, 37, 64, 0.7);
  border: 2px solid #ffffff;
}

.banner .container .banner-content .banner-square .banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.banner .container .banner-content .banner-square .banner-text .banner-title {
  font-size: 48px;
  letter-spacing: 6px;
  text-shadow: 0px 0px 10px #000000;
  font-weight: bold;
  line-height: 1.5;
}

.banner .container .banner-content .banner-square .banner-text .banner-line {
  width: 100px;
  height: 2px;
  background-color: #CA7A2C;
  margin: 24px 0;
}

.banner .container .banner-content .banner-square .banner-text p {
  width: 100%;
  text-shadow: 0px 0px 10px #000000;
}

.banner .container .banner-content .banner-space {
  width: 200px;
}

.banner .container .banner-content .banner-button {
  width: 200px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 15px;
  /* margin-top: 30px; */
}

.banner .container .banner-content .banner-button button {
  border: 1px solid #305A56;
  background-color: #305A56;
  padding: 6px 10px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.banner .container .banner-content .banner-button button a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
}

.banner .container .banner-content .banner-button button:hover {
  background-color: #CA7A2C;
  border: 1px solid #CA7A2C;
}

.banner .container .banner-arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 50px;
  animation: heart 0.6s ease-in-out 0.01s infinite alternate;
}

@keyframes  heart {
  from{
    transform: translate(0,-5px);
  }
  to{
    transform: translate(0,1px);
  }
}

.banner .container .banner-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  display: inline-block;
  width: 25px;
  height: 25px;
  border-top: 1.5px solid black;
  border-right: 1.5px solid black;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media (max-width: 991px) {
  .banner .container .banner-content .banner-space {
    display: none;
  }
  .banner .container .banner-content .banner-button {
    width: 450px;
    margin-top: 24px;
  }
  .banner .container .banner-content .banner-button button {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 40px;
  }
}

@media (max-width: 576px) {
  .banner .container .banner-content .banner-square {
    width: 380px;
    height: 300px;
  }
  .banner .container .banner-content .banner-square .banner-text .banner-title {
    font-size: 40px;
  }
  .banner .container .banner-content .banner-button {
    width: 380px;
  }
}

@media (max-width: 400px) {
  .banner .container .banner-content .banner-square {
    width: 300px;
    height: 250px;
    padding: 12px;
  }
  .banner .container .banner-content .banner-square .banner-text .banner-title {
    font-size: 32px;
  }
  .banner .container .banner-content .banner-button {
    width: 300px;
  }
}

.intro {
  padding: 8vh 0;
  margin: 0;
}

.intro .container h2 {
  position: relative;
  margin-bottom: 36px;
}

.intro .container h2:before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #CA7A2C;
}

.intro .container .intro-slogon {
  font-size: 16px;
  text-align: center;
  color: #CA7A2C;
}

.intro .container .intro-set {
  width: 100%;
}

.intro .container .intro-set .intro-text {
  border-radius: 10px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.service {
  padding: 8vh 0;
  margin: 0;
}

.service .container h2 {
  position: relative;
  margin-bottom: 36px;
}

.service .container h2:before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #CA7A2C;
}

.service .container .service-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 24px;
}

.service .container .service-set .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 150px) / 8);
  height: 300px;
  background-size: cover;
  background-position: bottom;
  position: relative;
  -webkit-transform: skewY(2deg);
          transform: skewY(2deg);
  margin: 0 5px;
  text-decoration: none;
}

.service .container .service-set .service-item h3 {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  z-index: 10;
  text-shadow: 0 0 10px #000000;
  color: #ffffff;
  -webkit-transform: skewY(-2deg);
          transform: skewY(-2deg);
  font-size: 28px;
}

.service .container .service-set .service-item:nth-child(even) {
  margin-top: 12px;
}

.service .container .service-set .service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service .container .service-set .service-item:hover::before {
  background-color: transparent;
}

@media (max-width: 991px) {
  .service .container .service-set .service-item {
    width: calc( (100% - 50px) / 5);
    margin-top: 12px;
  }
}

@media (max-width: 576px) {
  .service .container .service-set .service-item {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 24px 0;
  }
  .service .container .service-set .service-item h3 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.member {
  padding: 8vh 0;
  margin: 0;
}

.member .container h2 {
  position: relative;
  margin-bottom: 36px;
}

.member .container h2:before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #CA7A2C;
}

.member .container .member-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding-top: 12px;
}

.member .container .member-set a {
  width: calc( (100% - 60px) / 7);
  margin: 0 5px;
  margin-top: 10px;
}

.member .container .member-set a img {
  width: 100%;
}

@media (max-width: 991px) {
  .member .container .member-set a {
    width: calc( (100% - 60px) / 6);
  }
}

@media (max-width: 767px) {
  .member .container .member-set a {
    width: calc( (100% - 30px) / 3);
  }
}

@media (max-width: 400px) {
  .member .container .member-set a {
    width: calc( (100% - 20px) / 2);
  }
}

.contact {
  padding: 8vh 0;
  margin: 0;
  margin-top: 4vh;
  background-image: url("../img/background-contact-main.jpg");
  background-size: cover;
  background-position: bottom;
  width: 100%;
}

.contact .contact-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.contact .contact-set .contact-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  padding: 0 36px;
  color: #ffffff;
  text-shadow: 0 0 10px #000000;
}

.contact .contact-set .contact-left h2 {
  position: relative;
  margin-bottom: 36px;
}

.contact .contact-set .contact-left h2:before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #CA7A2C;
}

.contact .contact-set .contact-left p {
  font-size: 16px;
}

.contact .contact-set .contact-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  padding: 0 36px;
  color: #ffffff;
}

.contact .contact-set .contact-right .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  width: calc( 100% / 3);
  text-decoration: none;
  color: #ffffff;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact .contact-set .contact-right .contact-item p {
  width: 100%;
  text-align: center;
  line-height: 24px;
  margin-top: 4px;
}

.contact .contact-set .contact-right .contact-item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media (max-width: 991px) {
  .contact {
    background-image: none;
    background-color: #0F2540;
    padding: 0;
  }
  .contact .contact-set .contact-left {
    width: 100%;
    background-image: url("../img/background-contact-mobile.jpg");
    background-size: cover;
    background-position: bottom;
    padding: 36px 24px;
    padding-bottom: 60px;
  }
  .contact .contact-set .contact-right {
    width: 100%;
    padding: 36px 24px;
    background-color: #0F2540;
  }
  .contact .contact-set .contact-right .contact-item {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .contact .contact-set .contact-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact .contact-set .contact-right .contact-item {
    width: calc( 100% / 3);
  }
}

@media (max-width: 576px) {
  .contact .contact-set .contact-right .contact-item {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 16px;
  }
}

.float-btn .float-set {
  position: fixed;
  right: 0;
  bottom: 24px;
  width: 65px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 100;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.float-btn .float-set .float-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 55px;
  height: 55px;
  position: relative;
  margin-top: 4px;
}

.float-btn .float-set .float-item img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.float-btn .float-set .float-item .float-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(15, 37, 64, 0.7);
  border-radius: 10px;
  margin-top: 12px;
  position: relative;
}

.float-btn .float-set .float-item .float-arrow::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 13px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.float-btn .float-set .float-item img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (max-width: 576px) {
  .float-btn .float-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: rgba(15, 37, 64, 0.7);
  }
  .float-btn .float-set .float-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc( 100% / 4);
    margin-top: 0;
  }
  .float-btn .float-set .float-item .float-arrow {
    margin-top: 0;
  }
  .float-btn .float-set .float-item img:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

footer {
  background-color: rgba(15, 37, 64, 0.7);
  padding-top: 16px;
  padding-bottom: 16px;
}

footer .container .footer-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

footer .container .footer-content .divide-line-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .container .footer-content p {
  color: #ffffff;
}

footer .container .footer-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-decoration: none;
  padding: 4px;
  margin: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

footer .container .footer-content a p {
  margin-left: 4px;
}

footer .container .footer-content a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (max-width: 576px) {
  footer {
    padding-bottom: 75px;
  }
}

.side {
  padding: 0;
  padding-top: 120px;
  margin: 0;
  min-height: calc( 100vh - 505px);
}

.side .container h2 {
  position: relative;
  margin-bottom: 36px;
}

.side .container h2:before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #CA7A2C;
}

.side .container .side-slogon {
  font-size: 16px;
  text-align: center;
  color: #CA7A2C;
}

.side .container .side-set {
  width: 100%;
  margin-bottom: 30px;
}

.side .container .side-set .side-text {
  border-radius: 10px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.side .container .side-set .side-text h3 {
  font-size: 20px;
}

.side .container .side-set .side-text span {
  color: #CA7A2C;
}

.side .container .side-set .side-text .table-set-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.side .container .side-set .side-text .table-set-1 .table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 70px) / 7);
  background-color: #eeeeee;
  margin: 5px;
  padding: 5px;
  text-align: center;
}

.side .container .side-set .side-text .table-set-2 {
  width: 100%;
  font-size: 18px;
}

.side .container .side-set .side-text .table-set-2 tr th {
  background-color: #D9A16B;
  border: 2px solid #ffffff;
  padding: 2px 6px;
  color: #ffffff;
}

.side .container .side-set .side-text .table-set-2 tr td {
  border: 2px solid #ffffff;
  padding: 2px 6px;
  background-color: #eeeeee;
}

.side .container .side-set .side-text .table-set-2 tr:nth-child(even) td {
  background-color: #dddddd;
}

.side .container .side-set .side-text .table-set-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.side .container .side-set .side-text .table-set-3 .table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 70px) / 7);
  margin: 16px 5px;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.side .container .side-set .side-text .table-set-3 .table-item img {
  width: 150px;
  height: 120px;
}

.side .container .side-set .side-text .table-set-3 .table-item p {
  width: 100%;
  text-align: center;
}

.side .container .side-set .side-text .table-set-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.side .container .side-set .side-text .table-set-4 .table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( (100% - 120px) / 3);
  margin: 0 20px;
}

.side .container .side-set .side-text .table-set-4 .table-item img {
  width: 100%;
}

.side .container .side-set .side-text .table-set-4 .table-item h3 {
  width: 100%;
  margin-top: 24px;
  font-size: 24px;
}

.list{
  list-style: none;
  padding-left: 25%;
}
.list li{
  font-size: 30px;
}
.list-in{
  list-style: none;
  text-align: left;
  padding-left:5% ;
}
.list a{
  color: black;
}
.list a:hover{
  color: blue;
}

.logo{
  background-image: url(../img/logo.png);
  background-position: center center;
  background-size: cover;
  width: 60px;
  height: 60px;
}


  .directory-ui{
    display: inline-block;
    width: 50%;
    margin-bottom: 15px;
    padding: 1.5rem;
    border-radius: 10px;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  }
  .directory-ui li{
    list-style: disc;
    margin-left: 5%;
    font-size: 20px;
    padding: 8px 0px;
  }
  
  .directory-title{
    font-weight: 700 !important;
    font-size: 2em !important;
    color: #CA7A2C !important;
    text-align: left !important;
    display: inline-block;
  }

  .target-fix{
    position: relative;
    top: -108px;  /*偏移值*/
    display: block;
    height: 0;
    overflow: hidden;
  }


@media(max-width:1025px){
  .nav-title{
    font-size: 29px;
  }
}


@media (max-width: 1200px) {
  .side .container .side-set .side-text .table-set-3 .table-item {
    width: calc( (100% - 60px) / 6);
  }
  .list{
    list-style: none;
    padding-left: 0%;
  }
}

@media (max-width: 991px) {
  .side .container .side-set .side-text .table-set-1 .table-item {
    width: calc( (100% - 30px) / 3);
  }
  .side .container .side-set .side-text .table-set-3 .table-item {
    width: calc( (100% - 40px) / 4);
  }
  .list{
    list-style: none;
    padding-left: 0%;
  }
}

@media (max-width: 767px) {
  .side .container .side-set .side-text .table-set-3 .table-item {
    width: calc( (100% - 30px) / 3);
  }
  .side .container .side-set .side-text .table-set-4 .table-item {
    width: calc( 100% - 40px);
    margin-top: 60px;
  }
  .side .container .side-set .side-text .table-set-4 .table-item:first-child {
    margin-top: 0;
  }
  .list{
    list-style: none;
    padding-left: 8%;
  }
  .directory-ui{
    width: 100%;
  }
  .directory-ui li{
    margin-left: 12%;
  }
  .target-fix{
    position: relative;
    top: -108px !important; /*偏移值*/
    display: block;
    height: 0;
    overflow: hidden;
  }

}

@media (max-width: 576px) {
  .side .container .side-set .side-text .table-set-3 .table-item {
    width: calc( (100% - 20px) / 2);
  }
}

@media (max-width: 400px) {
  .side .container .side-set .side-text .table-set-1 .table-item {
    width: calc( (100% - 20px) / 2);
  }
  .side .container .side-set .side-text .table-set-2 tr th:nth-child(1) {
    width: 90px;
  }
  .side .container .side-set .side-text .table-set-2 tr th:nth-child(2) {
    width: 90px;
  }
  .side .container .side-set .side-text .table-set-3 .table-item img {
    width: 120px;
    height: 100px;
  }
  .side .container .side-set .side-text .table-set-4 .table-item {
    width: calc(100% - 20px);
    margin: 0 10px;
    margin-top: 60px;
  }
}
@media(max-width:322px){
  .list{
    list-style: none;
  }
}
/*# sourceMappingURL=style.css.map */

.logo-h2{
  line-height: 50px;
  color: #CA7A2C !important;
  font-size: 2em !important;
  font-weight: 700 !important;
}

.square{
  margin: 0 auto;
  background-color: rgb(255, 255, 255,0.9);
  padding: 0.5rem;
  -webkit-box-shadow: 5px 1px 5px rgba(0, 0, 0, 0.8);
  box-shadow: 5px 1px 5px rgba(0, 0, 0, 0.8);
}
.h1-text{
  margin: 10px auto;
  color: 	#FF5151;
}
.hero-s{
  width: 100vw;
  background-image: url(../img/background.jpg);
  background-position: center center;
  background-size: cover;
  padding-bottom: 28%;
  margin-bottom: 10px;
}
.under{
  display: block;
  width: 100%;
  z-index: 10;
}
.under-list{
  padding-left: 0;
  margin-bottom: 0;
}
.under-list li{
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
}
.under-list li :hover{
  color: red;
  text-decoration: none;
}
.img{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/徵信社費用\ .jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;

}
.img1{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/合法徵信社\ .jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img2{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/找徵信社要注意什麼.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img3{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/徵信社推薦.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img4{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/徵信社評價.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img5{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/徵信社意思.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img6{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/徵信社是什麼.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img7{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/徵信社PTT.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}
.img8{
  width: 80px;
  height: 80px;
  background-image: url(../img/小圖示/new_a.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  box-shadow: 0 1px 5px rgb(0 0 0 / 30%);
  border-radius: 5px;
}

img{
  display: block;
  margin: 0 auto;
}


.under-mobil{
  display: none;
}
.text-sm{
  display: none;
}
.Link-list{
  list-style: none;
  padding: 0.5rem;
  margin-bottom: 0;
}
.Link-list li{
  text-align: center;
  padding: 1.2rem;
}
.Link-list li a{
  font-size: 25px;
}
.Link-list li a:hover{
  text-decoration: none;
}

.snip1534 {
  font-family: 'Muli', sans-serif;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  background-color: #000000;
}

.snip1534 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.snip1534 img {
  vertical-align: top;
  backface-visibility: hidden;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.75;
  width: 100%;
}

.snip1534 figcaption {
  z-index: 1;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(195, 86, 97, 0.85);
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  padding: 20px;
}

.snip1534 figcaption:before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(-50%, 50%) rotate(45deg);
  position: absolute;
}

.snip1534 h3,
.snip1534 h5 {
  margin: 0;
  letter-spacing: 2px;
}

.snip1534 h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

.snip1534 h5 {
  font-weight: normal;
}

.snip1534 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1534:hover > img,
.snip1534.hover > img {
  opacity: 1;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.row-cols-lg-3>* {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.list-l{  
  padding: 0.5rem 2.5rem;
}

.list-l li{
  font-size: 18px;
  padding: 8px 0px;
}

.accordion {
  width: 100%;
  margin: 30px auto 20px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  list-style: none;
  padding: 0;
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 42px 15px 42px;
  color: #4D4D4D;
  font-size: 23px;
  font-weight: 700;
  border: 1px solid #CCC;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion li i {
  position: absolute;
  top: 23px;
  left: 12px;
  font-size: 23px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 23px;
}

.accordion li.open .link { color: #b63b4d; }

.accordion li.open i { color: #b63b4d; }

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.submenu {
  display: none;
  background: white;
  font-size: 14px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #4b4a5e; 
}

.submenu li { 
  padding: 1rem;
}

.submenu li p{ 
  line-height: 35px;
  letter-spacing: 2px;
  font-size: 20px;
  padding: 0.5rem;
  border: 1px solid #BEBEBE;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.qa{
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.qa .container h2:before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1.5px;
  background-color: #CA7A2C;
}

.link-article{
  color: black;
}


.card-title{
  font-size: 25px;
  font-weight: bold;
  overflow:hidden; 
  text-overflow:ellipsis;
  display:-webkit-box; 
  -webkit-box-orient:vertical;
  -webkit-line-clamp:1;
  padding-bottom: 2px;
  border-bottom:0.5px solid #CA7A2C ;
  font-family: 'Noto Serif TC', serif;
  color: #CA7A2C;
}


.card-text{
  overflow:hidden; 
  text-overflow:ellipsis;
  display:-webkit-box; 
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2; 
  font-family: 'Noto Serif TC', serif;
}


.link-article:hover{
  text-decoration: none;
}

.link-article:hover img{
  opacity: 0.6;
}

.btn{
  background: #BEBEBE;
  color: white;
}

.link-article:hover .btn{
  color: blue;
}

.article-img{
  border-radius: 15px;
  max-width:100%;
  margin: 0 auto;
  margin-bottom: 15px;
}


.table-box td{
    border: 1px solid black;
}

.table-box th{
    border: 1px solid black;
    border-bottom: 2px solid black !important;
}

@media(max-width:1025px){
  header nav .container .navbar-menu-pc a li{
    font-size: 16px;
  }
  .hero-s{
    padding-bottom: 75%;
  }
  .row-s{
    margin-right: 15px !important;
  }
  .mobil{
    padding-right: 0px;
  }
  .row-s{
    margin-right: 0px !important;
  }
  .logo-h2{
    font-size: 1.8rem !important;
  }
}
@media(max-width:911px){
  header nav .navbar-menu-mobile ul a{
    font-size: 30px;
  }
  .row-cols-md-2>* {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media(max-width:767px){
  .banner{
    height: auto;
  }
  .banner .container{
    height: auto;
  }
  .row-s{
    margin-top: 120px;
  }
  .square{
    background-color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
  }
  .under{
    display: none;
  }
  .under-mobil{
    display: block;
    z-index: 2;
    margin: 10px auto;
  }
  .under-list li{
    padding: 10px 8.3333%;
    font-size: 18px;
  }
  .text-sm{
    display: block;
  }
  .or{
    display: none;
  }
  .img-sm{
    padding: 0px 30%;
  }
  .banner-arrow{
    display: none;
  }
  .snip1534 img{
    height: 200px;
  }
  .col-s{
    width: 100%;
  }
}
@media(max-width:322px){
  .img{
    width: 50px;
    height: 50px;
  }
  .img1{
    width: 50px;
    height: 50px;
  }
  .img2{
    width: 50px;
    height: 50px;
  }
  .img3{
    width: 50px;
    height: 50px;
  }
  .img4{
    width: 50px;
    height: 50px;
  }
  .img5{
    width: 50px;
    height: 50px;
  }
  .img6{
    width: 50px;
    height: 50px;
  }
  .img7{
    width: 50px;
    height: 50px;
  }
  .under-list li{
    padding: 10px 5.3333%;
  }
  .snip1534 h5{
    font-size: 1rem;
  }
}