html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 1rem;
}

.title_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.title_con h2 {
  font-size: 2.25rem;
  letter-spacing: 0.18rem;
  font-weight: 900;
  color: #1d1d1d;
  position: relative;
}
.title_con h2::before, .title_con h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 28px;
  background: url(../images/index/title_icon.svg) center no-repeat;
  background-size: cover;
  padding: auto;
  position: absolute;
  top: -10px;
}
.title_con h2::before {
  left: -45px;
}
.title_con h2::after {
  transform: rotate(180deg);
  right: -45px;
}
.title_con h3 {
  width: 115px;
  height: 27px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  background: #BA1110;
  color: #fff;
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 15px;
}
.title_con h3::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: #BA1110;
  position: absolute;
  bottom: -10px;
  clip-path: polygon(100% 0, 50% 100%, 0 0);
}

/* nav */
.nav_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 80px;
  padding: 0 30px;
  position: fixed;
  background: #fff;
  z-index: 700;
  top: 0;
}
.nav_bar .logo_left img {
  width: 126px;
  height: auto;
}
.nav_bar .nav_center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.nav_bar .nav_center .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.nav_bar .nav_center .nav a {
  color: #000;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  height: 80px;
}
.nav_bar .nav_center .nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0px;
  position: absolute;
  background: #E31E22;
  bottom: 0;
  transition: all 0.3s;
}
.nav_bar .nav_center .nav a:hover {
  color: #E31E22;
}
.nav_bar .nav_center .nav a.active::after {
  height: 4px;
}
.nav_bar .nav_center .share_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.nav_bar .logo_right {
  width: 205px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.nav_bar .logo_right img:first-child {
  width: 98px;
  height: auto;
}
.nav_bar .logo_right img:last-child {
  width: 77px;
  height: auto;
}
.nav_bar .menu_sp {
  display: none;
}

/* footer */
footer {
  background: #040404;
  width: 100%;
  height: auto;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05rem;
}

.goTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.goTop.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1050px) {
  /* nav */
  .nav_bar {
    height: 60px;
    padding: 0 3%;
    justify-content: flex-start;
  }
  .nav_bar .nav_center {
    position: absolute;
    top: 60px;
    height: calc(100vh - 60px);
    right: 0;
    width: 100%;
    max-width: 260px;
    background: #1D1D1D;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s;
    transform: translateX(100%);
  }
  .nav_bar .nav_center .nav {
    flex-direction: column;
    gap: 0px;
    width: 100%;
    align-items: flex-start;
  }
  .nav_bar .nav_center .nav a {
    width: 100%;
    color: #fff;
    border-bottom: 1px solid rgba(216, 216, 214, 0.1);
    height: 60px;
    max-height: 11vh;
  }
  .nav_bar .nav_center .nav a.active {
    border-bottom: 0;
  }
  .nav_bar .nav_center .nav a.active::after {
    height: 1px;
  }
  .nav_bar .nav_center.open {
    transform: translateX(0%);
  }
  .nav_bar .logo_right {
    margin-left: 2%;
    width: 190px;
  }
  .nav_bar .menu_sp {
    background: #E31E22;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    right: 0;
  }
  .nav_bar .menu_sp::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/menu_open.svg) center no-repeat;
    background-size: 100% auto;
  }
  .nav_bar .menu_sp.active::before {
    background: url(../images/menu_close.svg) center no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 580px) {
  .title_con h2 {
    font-size: 7.8vw;
    letter-spacing: 0.2vw;
  }
  .title_con h2::before, .title_con h2::after {
    aspect-ratio: 30/28;
    width: 5vw;
    height: auto;
    top: -0.5vw;
  }
  .title_con h2::before {
    left: -7.5vw;
  }
  .title_con h2::after {
    transform: rotate(180deg);
    right: -7.5vw;
  }
  .title_con h3 {
    aspect-ratio: 115/35;
    width: 25.5vw;
    height: auto;
    font-size: 4vw;
  }
}
@media screen and (max-width: 740px) {
  footer {
    font-size: 0.75rem;
    line-height: 1.7;
    letter-spacing: 0rem;
    padding: 3% 5%;
  }
}
@media screen and (max-width: 420px) {
  /* nav */
  .nav_bar {
    height: 50px;
  }
  .nav_bar .logo_left {
    width: 27%;
  }
  .nav_bar .logo_left img {
    width: 100%;
  }
  .nav_bar .nav_center {
    top: 50px;
    height: calc(100vh - 50px);
  }
  .nav_bar .logo_right {
    margin-left: 5px;
    width: calc(56% - 50px);
  }
  .nav_bar .logo_right img {
    width: 47%;
    margin: 0 1% 0 0;
  }
  .nav_bar .logo_right img:first-child, .nav_bar .logo_right img:last-child {
    width: 47%;
  }
  .nav_bar .menu_sp {
    width: 50px;
    height: 50px;
  }
  .nav_bar .menu_sp::before {
    width: 25px;
    height: 25px;
  }
}/*# sourceMappingURL=common.css.map */