@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800;900&display=swap");
@keyframes line-image {
  0% {
    -webkit-clip-path: inset(0% 100% 0% 0%);
            clip-path: inset(0% 100% 0% 0%);
  }
  50% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.w100 {
  width: 100%;
}

.container-160 {
  width: 160%;
  margin-left: -30%;
}

.container-100 {
  width: 100%;
}

.container-85 {
  width: 85%;
  margin: 0 auto;
}

.pc-open {
  display: block;
}

.mob-open {
  display: none;
}

section {
  z-index: 1;
  position: relative;
}

.dflexc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.frame {
  padding: 0;
}
.frame .imgbox {
  padding-bottom: 63%;
  margin-bottom: 70px;
}

.f18 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  margin: 64px auto;
}

.w150 {
  width: 150px !important;
}

.btn {
  background: rgba(255, 255, 255, 0);
  color: #800000;
  padding: 10px 30px 10px 40px;
  border: solid 1px #800000;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.btn i {
  margin: 0 8px 0 2px;
  font-size: 13px;
  padding-left: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn:hover i {
  margin: 0 2px 0 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn01 {
  color: #1C1B1B;
  padding: 14px 27.5px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid #ffffff;
  position: relative;
  z-index: 1;
}
.btn01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.btn01:hover {
  color: #ffffff;
  background-color: transparent;
}
.btn01:hover::before {
  transform-origin: right center;
  transform: scaleX(0);
}
.btn01 i {
  margin: 0 8px 0 2px;
  font-size: 13px;
  padding-left: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn01:hover i {
  margin: 0 2px 0 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn02 {
  margin: 20px auto 80px;
  display: flex;
  color: #ffffff;
  border: 1px solid #1C1B1B;
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 3.5px;
  position: relative;
  z-index: 1;
}
.btn02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #800000;
  z-index: -1;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn02:hover {
  background: transparent;
  color: #1C1B1B;
}
.btn02:hover::before {
  transform: scaleX(0);
  transform-origin: right center;
}

.btn02margin {
  margin: 42px auto 98px;
}

.btn03 {
  background: transparent;
  color: #1C1B1B;
  padding: 2px 0;
  border-bottom: 1px solid #1C1B1B;
  font-size: 16px;
  font-weight: 600;
}
.btn03:hover {
  color: #800000;
  border-bottom: 1px solid #800000;
}

.btn04 {
  background: #FFF !important;
  color: #800000 !important;
  font-size: 18px;
  border: solid 1px #800000 !important;
  border-radius: 0px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn04:hover {
  background: #000 !important;
  color: #FFF !important;
  font-size: 18px;
  border: solid 1px #000 !important;
  border-radius: 0px !important;
  background: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn_back {
  background: #800000;
  color: #FFF;
  padding: 10px 40px 10px 30px;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.btn_back i {
  margin: 0px 2px 0px 8px;
  font-size: 13px;
  padding-right: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btn_back:hover i {
  margin: 0px 8px 0px 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.reset {
  background: #CFCFCF !important;
  color: #FFF;
  border: none !important;
  border-radius: 50px !important;
}
.reset:hover {
  background: #6A6A6A !important;
}

.submit {
  background: #492F54 !important;
  color: #FFF;
  border: none !important;
  border-radius: 50px !important;
}
.submit:hover {
  background: #6A6A6A !important;
}

.l-h {
  line-height: 26px;
}

.color01 {
  color: #800000;
}

.color02 {
  color: #b81b23;
}

.color03 {
  color: #F3C2C2;
}

.color_gray {
  color: #6A6A6A;
}

.top-member {
  padding: 10% 0;
}

.top-alla {
  padding: 5% 0;
}

.top-allaa {
  padding: 5% 0 2%;
}

.top-allb {
  padding: 5% 0 8% 0;
}

.push {
  padding-top: 100px;
}

.bg01 {
  position: relative;
  background-size: cover;
}

.bg02 {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

.bg_page {
  background-image: url("../img/page.png");
  background-repeat: no-repeat;
  background-position: center bottom;
}

.banner-all img {
  width: 100%;
}

.maker {
  background: #800000;
  color: #ffffff;
  padding: 8px 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.col-12 .buttonbox .swiper-button-next, .col-12 .buttonbox .swiper-button-prev {
  top: 25px;
  background: #fff;
  border: solid 1px #800000;
  outline: none;
  border-radius: 0px;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
}
.col-12 .buttonbox .swiper-button-next:hover, .col-12 .buttonbox .swiper-button-prev:hover {
  background: #F3C2C2;
}
.col-12 .buttonbox .swiper-button-next:after, .col-12 .buttonbox .swiper-button-prev:after {
  font-size: 14px;
  font-weight: 400;
  color: #800000;
  font-family: "fontello";
}
.col-12 .buttonbox .swiper-button-next:after {
  content: "\e81b" !important;
}
.col-12 .buttonbox .swiper-button-prev:after {
  content: "\e828" !important;
}
.col-12 .buttonbox .swiper-button-prev {
  left: 0px !important;
  right: auto !important;
}
.col-12 .buttonbox .swiper-button-prev:hover {
  left: -4px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.col-12 .buttonbox .swiper-button-next {
  left: auto !important;
  right: 0px !important;
}
.col-12 .buttonbox .swiper-button-next:hover {
  right: -4px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.swiper-picbox .buttonbox {
  width: 100px;
  position: relative;
  margin: 0 auto;
}
.swiper-picbox .buttonbox .swiper-button-next, .swiper-picbox .buttonbox .swiper-button-prev {
  top: 25px;
  background: #fff;
  border: solid 1px #800000;
  outline: none;
  border-radius: 0px;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
}
.swiper-picbox .buttonbox .swiper-button-next:hover, .swiper-picbox .buttonbox .swiper-button-prev:hover {
  background: #F3C2C2;
}
.swiper-picbox .buttonbox .swiper-button-next:after, .swiper-picbox .buttonbox .swiper-button-prev:after {
  font-size: 14px;
  font-weight: 400;
  color: #800000;
  font-family: "fontello";
}
.swiper-picbox .buttonbox .swiper-button-next:after {
  content: "\e81b" !important;
}
.swiper-picbox .buttonbox .swiper-button-prev:after {
  content: "\e828" !important;
}
.swiper-picbox .buttonbox .swiper-button-prev {
  left: 0px !important;
  right: auto !important;
}
.swiper-picbox .buttonbox .swiper-button-prev:hover {
  left: -4px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.swiper-picbox .buttonbox .swiper-button-next {
  left: auto !important;
  right: 0px !important;
}
.swiper-picbox .buttonbox .swiper-button-next:hover {
  right: -4px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.index-swiper .swiper-button-next, .index-swiper .swiper-button-prev {
  display: none;
}

.fancybox-slide--current .ajax-box {
  width: 1000px !important;
  height: auto !important;
}
.fancybox-slide--current .ajax-box .ajax-box-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-image: url(../img/closeicon.svg);
  background-size: cover;
}
.fancybox-slide--current .detail-imgbox {
  margin-bottom: 20px;
}
.fancybox-slide--current .detail-imgbox img {
  width: 100%;
  border: solid 1px #B9B9B9;
}

.fancybox-slide--html .fancybox-close-small {
  color: #6A6A6A !important;
  padding: 30px 40px 30px 40px !important;
}

.swiper-slide-next {
  opacity: 1 !important;
}

.swiper-picbox .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.swiper-picbox .swiper-wrapper .swiper-slide:hover {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.picturebox:hover .imgbox img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform: translate(-50%, -50%) scale(1.1);
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  flex: wrap;
  align-items: end;
  background-image: linear-gradient(90deg, #ffffff 1%, #800000 2%, #800000 100%);
}
.picturebox .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  width: 50%;
  padding-bottom: 49.9%;
}
.picturebox .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.picturebox .textbox {
  width: calc(50% - 120px);
  color: #fff;
  padding: 60px;
}
.picturebox .textbox h4 {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.picturebox .textbox p {
  font-size: 18px;
  line-height: 24px;
}
.picturebox .textbox .morebox {
  margin-top: 20px;
  font-weight: 600;
}

.imgbox, .imgboxa {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
.imgbox:hover img, .imgboxa:hover img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform: translate(-50%, -50%) scale(1.1);
}
.imgbox img, .imgboxa img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
}

/*BANNER */
.banner {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #1C1B1B;
}
.banner .swiper-banner {
  width: 100%;
}
.banner .swiper-banner .swiper-slide {
  position: relative;
  overflow: hidden;
  height: auto;
  opacity: 0.5;
}
.banner .swiper-banner .swiper-slide img {
  position: relative;
  overflow: hidden;
}
.banner .swiper-banner .swiper-slide a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.banner .swiper-banner .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.banner .swiper-banner .swiper-slide-active {
  opacity: 1;
}
.banner .swiper-banner .swiper-slide-active a img {
  animation: zoom-out 2s linear;
}
.banner .swiper-banner .swiper-button-next, .banner .swiper-banner .swiper-button-prev {
  color: #fff;
}
.banner .swiper-banner .swiper-button-next::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 54px;
  background: url("../img/rightbtn.png");
  background-repeat: no-repeat;
  background-size: contain;
  right: 10px;
}
.banner .swiper-banner .swiper-button-prev::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 54px;
  background: url("../img/leftbtn.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 10px;
}
.banner .swiper-banner .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: solid 2px #CFCFCF;
}
.banner .swiper-banner .swiper-pagination .swiper-pagination-bullet-active {
  border: solid 2px #ffffff;
}

main .bn {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-bottom: 40%;
}
main .bn img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
main .bn .page-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.5882352941) 0em 0em 0.3em;
}
main .bn .page-title h4 {
  font-size: 35px;
  font-weight: 600;
  margin: 20px 0;
  letter-spacing: 6.5px;
}
main .bn .page-title P {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
  letter-spacing: 2.5px;
}
main .bn .page-title02 {
  left: 330px;
}
main .bn .page-title02 h4, main .bn .page-title02 p {
  text-align: left;
}
main .bn02 {
  padding-bottom: 0;
  padding-top: 260px;
}
main .bn02 .page-title {
  color: #1C1B1B;
  text-shadow: rgba(0, 0, 0, 0) 0em 0em;
  width: 60%;
  position: relative;
  top: auto;
  transform: translateY(0);
  margin: 0 auto;
}
main .bn02 .page-title h4 {
  font-size: 26px;
  letter-spacing: 1px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
}
main .bn02 .page-title p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: 500;
}
main .bn03 {
  padding-bottom: 20%;
}

.swiper-featured .swiper-wrapper {
  flex-wrap: wrap;
  width: 100%;
}
.swiper-featured .swiper-wrapper .swiper-slide {
  width: 23% !important;
  margin: 0 auto;
  overflow: hidden;
}

.swiper-featured-box {
  display: none;
  opacity: 0;
}

.scroll-view {
  filter: blur(10px);
}

.news-top, .tech-top {
  padding-bottom: 100%;
  background-color: #FFFFFF;
}
.news-top img, .tech-top img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.news-bottom, .tech-bottom {
  margin: 0 auto 90px;
  display: flex;
  flex-direction: column;
  width: 90%;
}
.news-bottom .title02, .tech-bottom .title02 {
  margin: 20px 0 0;
}
.news-bottom span, .tech-bottom span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.2px;
  margin: 18px auto;
  font-family: "Nunito Sans", sans-serif;
}

.tech-bottom span {
  margin: 18px 0;
}

.line-clamp-4 span {
  -webkit-line-clamp: 4;
}

.line-clamp-3 span {
  -webkit-line-clamp: 3;
}

.introduction {
  position: relative;
  margin: 40px 0;
  width: 100%;
}
.introduction .text {
  max-width: 100%;
  padding: 0 20px 90px;
  margin: 0 auto;
  position: relative;
}
.introduction .text::before {
  position: absolute;
  content: "";
  width: 74px;
  height: 53px;
  background: url("../img/introduction.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: -25px;
}
.introduction .text h4 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 26px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1C1B1B;
}
.introduction .text span {
  font-size: 16px;
}
.introduction .text p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 600;
  color: #1C1B1B;
}

.about .row {
  align-items: center;
  margin: 100px auto;
}
.about .imgbox {
  height: 100%;
  padding-bottom: 0%;
  min-height: 400px;
}
.about h4 {
  margin: 30px auto;
  font-size: 24px;
}
.about p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 170px;
  align-items: center;
}
.team:nth-child(2n+1) .infobox {
  margin-left: calc(50% + 25px);
}
.team:nth-child(2n+1) .imgbox {
  margin-left: -100%;
}
.team .infobox {
  width: calc(50% - 25px);
  padding: 0 25px;
}
.team .infobox h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.team .infobox p {
  font-size: 16px;
  line-height: 1.5;
}
.team .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  cursor: auto;
  width: calc(50% + 10px);
}

.news {
  margin-bottom: 40px;
}
.news .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 75%;
  margin-bottom: 10px;
}
.news .imgbox .borderbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 94%;
  height: 92%;
  border: solid 1px rgba(255, 255, 255, 0);
}
.news .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.news .infobox time {
  font-size: 16px;
  color: #800000;
}
.news .infobox h4 {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #800000;
}
.news .infobox p {
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 16px;
  line-height: 22px;
  color: #707070;
}
.news:hover .imgbox .borderbox {
  border: solid 1px #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.news:hover .imgbox img {
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.swiper-craftsmanship .swiper-slide:nth-child(0n+1) {
  width: 50% !important;
  margin-left: 200px !important;
}
.swiper-craftsmanship .swiper-slide:nth-child(0n+1) .craftsmanship .imgbox {
  padding-bottom: 51.2% !important;
}

.swiper-craftsmanship .swiper-slide {
  width: 20% !important;
  margin-left: 40px !important;
}

.swiper-craftsmanship .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.swiper-craftsmanship .swiper-pagination-bullet-active {
  background: #800000;
}

.craftsmanship {
  margin-bottom: 40px;
}
.craftsmanship .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  padding-bottom: 128%;
}
.craftsmanship .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.craftsmanship:hover .imgbox img {
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.products {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  background-color: #1C1B1B;
}
.products .img02 {
  padding-bottom: 0 !important;
}
.products:hover .img01 {
  padding-bottom: 0 !important;
}
.products:hover .img02 {
  padding-bottom: 100% !important;
}
.products:hover .cartbox {
  opacity: 1;
}
.products .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  min-height: 160px;
}
.products .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
.products .active img {
  animation: line-image 3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0s;
}
.products .infobox {
  padding: 14px 0px;
  position: absolute;
  bottom: 50px;
  left: 40px;
  width: 90%;
}
.products .infobox .textbox {
  color: #ffffff;
}
.products .infobox p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.products .infobox h3 {
  letter-spacing: 3.5px;
  margin: 15px 0 26px;
  font-size: 22px;
}

.featured {
  padding: 0 40px;
}

.product .img02, .featured .img02 {
  padding-bottom: 0 !important;
}
.product:hover .img01, .featured:hover .img01 {
  padding-bottom: 0 !important;
}
.product:hover .img02, .featured:hover .img02 {
  padding-bottom: 100% !important;
}
.product:hover .cartbox, .featured:hover .cartbox {
  opacity: 1;
}
.product .imgbox, .featured .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  box-shadow: 0 7px 13px rgba(0, 0, 0, 0.25);
}
.product .imgbox img, .featured .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.product .infobox, .featured .infobox {
  padding: 30px 0px 90px;
  text-align: center;
  position: relative;
  bottom: 0;
  left: 0;
}
.product .infobox .textbox, .featured .infobox .textbox {
  color: #1C1B1B;
}
.product .infobox p, .featured .infobox p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.product .cartbox, .featured .cartbox {
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 90%;
  background: #fff;
  padding: 8px 0;
  top: -50px;
  margin: 0 auto;
  right: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  color: #800000;
  font-size: 16px;
  font-weight: 600;
}
.product .cartbox a, .featured .cartbox a {
  color: #800000;
  font-size: 16px;
  font-weight: 600;
}
.product .cartbox:hover, .featured .cartbox:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  background: #800000;
  color: #fff;
}
.product .cartbox:hover a, .featured .cartbox:hover a {
  color: #fff;
}

.quick_login {
  display: flex;
}
.quick_login button {
  width: 32%;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  padding: 12px 0;
}
.quick_login button.line {
  background: #00C300;
}
.quick_login button.fb {
  background: #3B5998;
}
.quick_login button.google {
  background: #E16322;
}

.quick_login button:nth-child(2n) {
  margin: 0 2%;
}

/*大標*/
.title, .titleS {
  text-align: center;
  margin: 60px 0 60px 0;
  z-index: 1;
}
.title h1, .title h2, .titleS h1, .titleS h2 {
  font-size: 34px;
  color: #800000;
  letter-spacing: 2px;
  position: relative;
  display: inline;
}

.titleS {
  text-align: left;
  margin: 0 0 30px 0;
}
.titleS h2::before {
  display: none;
}

.title01 {
  text-align: center;
  margin: 160px 0 20px;
  z-index: 1;
  color: #800000;
  font-weight: 600;
  letter-spacing: 3.5px;
}

.title02 {
  margin: 20px auto;
  font-weight: 600;
  letter-spacing: 3.5px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.title03 {
  color: #1C1B1B;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0 0 69px;
  display: flex;
  justify-content: center;
}

.title04 {
  margin: 30px auto;
}
.title04 h4 {
  font-size: 16px;
  letter-spacing: 1.8px;
  font-weight: 600;
}

.title_line hr, .title_line hr.contact, .title_line2 hr, .title_line2 hr.contact {
  background: #E8E8E8;
  height: 4px;
  position: relative;
}
.title_line hr::before, .title_line hr.contact::before, .title_line2 hr::before, .title_line2 hr.contact::before {
  content: "";
  background: #800000;
  width: 80px;
  height: 4px;
  left: 0;
  bottom: 0;
  position: absolute;
}
.title_line h3, .title_line2 h3 {
  font-size: 25px;
  padding-right: 5px;
}
.title_line h4, .title_line2 h4 {
  font-size: 20px;
}

.title_line2 hr, .title_line2 hr.contact {
  height: 2px;
}
.title_line2 hr::before, .title_line2 hr.contact::before {
  display: none;
}
.title_line2 h4 {
  color: #800000;
}

.news-date {
  border-bottom: solid 2px #ebebeb;
  padding-bottom: 10px;
}
.news-date time {
  color: #800000;
}
.news-date p {
  margin-top: 8px;
  font-weight: 600;
  font-size: 25px;
  color: #800000;
}

.actpage img {
  width: 100%;
}
.actpage p {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
}
.actpage .act_btn {
  background: #492F54;
  color: #FFF;
  padding: 10px 20px 10px 20px;
  display: inline-block;
}
.actpage .act_btn p {
  margin: 0 20px;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.actpage .act_btn:hover p {
  margin: 0 10px 0 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.designer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  background: #EAEAEA;
  margin-bottom: 30px;
}
.designer .imgbox {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  cursor: auto !important;
  padding-bottom: 30%;
  width: 40%;
}
.designer .imgbox::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 100%;
  background: rgba(229, 229, 229, 0.8274509804);
  right: 0px;
  top: 0px;
}
.designer .imgbox img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.designer .infobox {
  width: 60%;
  padding: 20px 80px;
}
.designer .infobox h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.designer .infobox p {
  font-size: 18px;
  line-height: 30px;
  color: #6A6A6A;
  margin-bottom: 30px;
}

.experience {
  background: #F5F5F5;
  padding: 60px 60px;
  margin-top: -30px;
  margin-bottom: 30px;
  display: none;
}
.experience h3 {
  font-size: 22px;
  font-weight: 600px;
  color: #800000;
  margin-bottom: 30px;
}
.experience .info {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.experience .info .date {
  width: 150px;
  font-size: 18px;
  font-weight: 600;
}
.experience .info p {
  font-size: 18px;
  line-height: 26px;
  width: calc(100% - 150px);
}

.product-text h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1.5px;
  margin: 26px auto;
}
.product-text p {
  color: #1C1B1B;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.8px;
}
.product-text span {
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #800000;
}
.product-text hr {
  background: #CFCFCF;
}

.product-share {
  display: flex;
  align-items: center;
}
.product-share span {
  color: #6A6A6A;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.product-share ul {
  display: flex;
}
.product-share a {
  font-size: 25px;
  color: #6A6A6A;
}

.swiper-recommend {
  margin: 50px auto;
}

.downloadbox {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0 5px;
  border-bottom: solid 1px #CFCFCF;
}
.downloadbox .textbox {
  width: calc(100% - 80px);
  padding: 20px 0;
}
.downloadbox .textbox .f18 {
  margin: 0 auto;
}
.downloadbox .iconbox {
  width: 80px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6A6A6A;
}
.downloadbox .iconbox i {
  font-size: 36px;
}
.downloadbox:hover .textbox {
  color: #800000;
}
.downloadbox:hover .iconbox i {
  color: #800000;
  font-size: 36px;
}

.product_d-money ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  font-size: 20px;
}
.product_d-money ul li .share-line {
  position: relative;
}

.selectbox form select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.selectbox .shapebox {
  position: relative;
}
.selectbox .shapebox::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  pointer-events: none;
  background-image: url(../img/s_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 11px;
  margin: auto;
}

.number-p .shopify-buy {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.number-p .shopify-buy button {
  background: #800000;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  padding: 0 0 4px 0;
  font-size: 25px;
  line-height: 14px;
}
.number-p .shopify-buy input[type=number] {
  height: 30px;
  width: 60px;
  text-align: center;
  margin: 0 8px;
}

/*產品 */
.product__carousel {
  display: block;
  max-width: 700px;
  margin: 1em auto 3em;
}
.product__carousel a {
  display: block;
  margin-bottom: 15px;
}
.product__carousel .gallery-top {
  margin-bottom: 5px;
  height: 420px !important;
}
.product__carousel .gallery-top .swiper-slide {
  position: relative;
  overflow: hidden;
}
.product__carousel .gallery-top .swiper-slide a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.product__carousel .gallery-top .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.product__carousel .swiper-button-next.swiper-button-white, .product__carousel .swiper-button-prev.swiper-button-white {
  color: #E6E6E6;
}
.product__carousel .gallery-thumbs .swiper-slide {
  position: relative;
  transition: border 0.15s linear;
  border: 1px solid #E6E6E6;
  cursor: pointer;
  overflow: hidden;
  height: calc(100% - 2px);
  margin-top: 5px;
}
.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #800000 !important;
}
.product__carousel .gallery-thumbs .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.swiper-news, .swiper-product {
  padding-top: 60px !important;
}
.swiper-news .swiper-button-next, .swiper-news .swiper-button-prev, .swiper-product .swiper-button-next, .swiper-product .swiper-button-prev {
  top: 25px;
  background: #800000;
  outline: none;
  border-radius: 3px;
  width: 30px;
  height: 30px;
}
.swiper-news .swiper-button-next:after, .swiper-news .swiper-button-prev:after, .swiper-product .swiper-button-next:after, .swiper-product .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
}
.swiper-news .swiper-button-prev, .swiper-product .swiper-button-prev {
  left: auto;
  right: 50px;
  background: #800000;
}

.swiper-slide-thumb-active {
  border: solid 3px #800000;
  box-sizing: border-box;
}

.products_detail-money .products_detail-money-text, .products_detail-money .products_detail-money-quantity {
  margin: 20px 0;
}
.products_detail-money .products_detail-money-text span {
  margin-right: 10px;
  font-size: 25px;
  font-weight: 600;
}
.products_detail-money .products_detail-money-quantity p {
  margin-right: 10px;
}

.shop-btn {
  display: flex;
  margin: 30px 0;
}
.shop-btn .shop-btn-basket, .shop-btn .shop-btn-shop {
  margin-right: 10px;
  text-align: center;
  font-size: 18px;
  width: 30%;
}
.shop-btn .shop-btn-basket a, .shop-btn .shop-btn-shop a {
  padding: 10px 30px;
  display: block;
  width: 100%;
}
.shop-btn .shop-btn-basket:hover, .shop-btn .shop-btn-shop:hover {
  background: #151515;
  border: solid 1px #151515;
}
.shop-btn .shop-btn-basket:hover a, .shop-btn .shop-btn-shop:hover a {
  color: #FFF;
}
.shop-btn .shop-btn-basket {
  background: #FFF;
  border: solid 1px #800000;
}
.shop-btn .shop-btn-basket a {
  color: #800000;
}
.shop-btn .shop-btn-shop {
  background: #800000;
  border: solid 1px #800000;
}
.shop-btn .shop-btn-shop a {
  color: #ffffff;
}

.contact {
  margin: 80px auto 50px;
}
.contact .imgbox {
  padding-bottom: 35%;
}
.contact .info-box {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact .info-box .title02 {
  margin: 5px 0;
}
.contact .info-box p {
  font-size: 18px;
  margin: 18px 0 32px 68px;
  position: relative;
}
.contact .info-box p::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: calc(50% - 25px);
  left: -64px;
  width: 54px;
  height: 54px;
}
.contact .info-box p.tel::after {
  background-image: url(../img/tel.svg);
}
.contact .info-box p.mail::after {
  background-image: url(../img/mail.svg);
}
.contact .info-box p.add::after {
  background-image: url(../img/add.svg);
}
.contact .info-box span {
  font-weight: 600;
}
.contact .form-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.contact .form-box .forms-group .radios {
  margin: 33px auto;
}

ul.tabs {
  margin: 0 auto;
  padding: 0 0 100px 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
}
ul.tabs li {
  cursor: pointer;
  padding: 5px 0;
  border-bottom: 2px solid #B2B2B2;
  margin: 0 30px;
}

ul.tabs li:hover {
  border-bottom: 2px solid #800000;
}
ul.tabs li.active {
  border-bottom: 2px solid #800000;
}

.tab_container {
  width: 100%;
}

.tab_drawer_heading {
  display: none;
}

.Recipient-Information .text h4, .Subscriber-Information .text h4, .payment-method .text h4 {
  font-size: 18px;
  line-height: 22px;
}

@media screen and (max-width: 1440px) {
  .featured {
    padding: 0 10px;
  }
  .introduction .text {
    max-width: 70%;
    margin: 0 auto;
    position: relative;
  }
  .team {
    margin-bottom: 100px;
  }
  .team .infobox h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
  }
  .shop-btn {
    display: flex;
    margin: 30px 0;
  }
  .shop-btn .shop-btn-basket, .shop-btn .shop-btn-shop {
    margin-right: 10px;
    text-align: center;
    font-size: 18px;
    width: auto;
  }
  .subscribe p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #800000;
    margin-bottom: 30px;
  }
  .picturebox {
    margin-bottom: 60px;
  }
  .picturebox .textbox {
    width: calc(50% - 80px);
    padding: 40px;
  }
  .picturebox .textbox h4 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .picturebox .textbox p {
    font-size: 16px;
    line-height: 22px;
  }
  .picturebox .textbox .morebox {
    margin-top: 20px;
  }
  .product .infobox {
    width: 100%;
    padding: 12px 0px;
    position: relative;
  }
  .product .infobox p {
    font-size: 18px;
  }
  .product .infobox .money {
    font-size: 16px;
    margin-top: 10px;
  }
  .product .cartbox {
    width: 90%;
    padding: 8px 0;
    top: -50px;
    font-size: 14px;
  }
  .product .cartbox a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .featured .infobox {
    padding: 30px 0 50px;
  }
  .team:nth-child(2n+1) .infobox {
    margin-left: 0;
  }
  .team:nth-child(2n+1) .imgbox {
    margin-left: 0;
  }
  .team .infobox {
    width: 100%;
    padding: 0;
  }
  .team .imgbox {
    width: 100%;
  }
  .frame .imgbox {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .designer .infobox .btn02 {
    font-size: 16px;
    padding: 8px 18px;
  }
  .picturebox {
    margin-bottom: 60px;
  }
  .picturebox .textbox {
    width: calc(50% - 40px);
    padding: 20px;
  }
  .picturebox .textbox h4 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .picturebox .textbox p {
    font-size: 16px;
    line-height: 20px;
  }
  .picturebox .textbox .morebox {
    margin-top: 15px;
  }
  .Recipient-Information form.forms-group input:nth-child(1) {
    margin-top: 0px;
  }
  /*產品 */
  .product__carousel .gallery-top {
    height: 300px !important;
  }
  .rwd-table.rwd-table-order3 tbody .fare td:last-child, .rwd-table.rwd-table-order3 tbody .total td:last-child {
    padding-right: 17% !important;
  }
}
@media screen and (max-width: 991px) {
  .pc-open {
    display: none;
  }
  .mob-open {
    display: block;
  }
  .btn, .btn01 {
    padding: 8px 10px 8px 20px;
    font-size: 16px;
  }
  .btn_back {
    padding: 8px 20px 8px 10px;
    font-size: 16px;
  }
  .introduction {
    position: relative;
    margin: 0;
    width: 100%;
  }
  .introduction .text {
    max-width: 100%;
    padding: 40px;
    margin: 0 auto;
    position: relative;
  }
  .introduction .text::before {
    width: 50px;
    left: 10px;
    top: 20px;
  }
  .introduction .text h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .introduction .text p {
    font-size: 16px;
  }
  .swiper-featured .swiper-wrapper {
    flex-wrap: nowrap;
  }
  .swiper-featured .swiper-wrapper .swiper-slide {
    width: 31% !important;
  }
  main .bn {
    padding-bottom: 31%;
  }
  main .bn02 {
    padding-top: 120px;
    padding-bottom: 5%;
  }
  main .bn03 .page-title02 {
    left: 50px;
  }
  .team {
    padding-bottom: 0;
  }
  .swiper-craftsmanship .swiper-slide:nth-child(0n+1) {
    width: 50% !important;
    margin-left: 120px !important;
  }
  .swiper-craftsmanship .swiper-slide:nth-child(0n+1) .craftsmanship .imgbox {
    padding-bottom: 51.2% !important;
  }
  .swiper-craftsmanship .swiper-slide {
    width: 20% !important;
    margin-left: 20px !important;
  }
  .subscribe {
    background: rgba(255, 255, 255, 0.8156862745);
    padding: 80px 80px;
  }
  .subscribe p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .subscribe form.forms-group input {
    margin-top: 0;
  }
  /*大標*/
  .title, .titleS {
    text-align: center;
    margin: 30px 0 30px 0;
    z-index: 1;
  }
  .title h1, .title h2, .titleS h1, .titleS h2 {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .title h1::before, .title h2::before, .titleS h1::before, .titleS h2::before {
    width: 31px;
    height: 24px;
    top: -30px;
  }
  .titleS {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .subscribe {
    padding: 10px 40px 40px 40px;
  }
  .container-160 {
    width: 120%;
    margin-left: -10%;
  }
  .news-bottom, .tech-bottom {
    margin: 0 auto 30px;
  }
  .news-bottom .title02, .tech-bottom .title02 {
    margin: 10px 0 0;
  }
  .news-bottom span, .tech-bottom span {
    margin: 0;
  }
  .news-bottom .btn03, .tech-bottom .btn03 {
    margin: 20px 0 0;
  }
  .about .row {
    align-items: center;
    margin: 50px auto;
  }
  /*大標*/
  .title, .titleS {
    text-align: center;
    margin: 60px 0 30px 0;
    z-index: 1;
  }
  .title h1, .title h2, .titleS h1, .titleS h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .title h1::before, .title h2::before, .titleS h1::before, .titleS h2::before {
    width: 26px;
    top: -25px;
  }
  ul.tabs {
    overflow-x: scroll;
  }
  ul.tabs li {
    display: block;
    min-width: 120px;
    text-align: center;
    padding: 10px 6px;
    font-size: 16px;
  }
}
@media screen and (max-width: 667px) {
  .btn02 {
    margin: 20px auto;
  }
  .contact .col-lg-5 .info-box p {
    margin: 0 0 12px 35px;
  }
  .contact .col-lg-5 .info-box p::after {
    top: calc(50% - 8px);
    left: -32px;
    width: 23px;
    height: 23px;
  }
  .contact .form-box {
    margin-left: 0px;
  }
  .product .cartbox {
    top: -40px;
  }
  .f18 {
    font-size: 14px;
  }
  .products .infobox {
    left: 50%;
    transform: translateX(-50%);
  }
  main .bn .page-title {
    bottom: 12%;
    width: 100%;
  }
  main .bn .page-title h4 {
    font-size: 22px;
    line-height: 1.5;
    margin: 14px 0;
  }
  main .bn .page-title P {
    font-size: 16px;
    margin: 14px 0;
  }
  .container-160 {
    width: 100%;
    margin-left: 0%;
  }
  .contact {
    margin: 50px auto;
  }
  .swiper-picbox .swiper-wrapper .swiper-slide {
    opacity: 1;
  }
  .picturebox {
    margin-bottom: 60px;
  }
  .picturebox .textbox {
    width: calc(50% - 40px);
    padding: 20px;
  }
  .picturebox .textbox h4 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .picturebox .textbox p {
    font-size: 14px;
    line-height: 18px;
  }
  .picturebox .textbox .morebox {
    margin-top: 10px;
    font-size: 14px;
  }
  .info-box h3 {
    font-size: 20px;
  }
  .info-box p {
    font-size: 16px;
  }
  .title_line hr::before {
    width: 80px;
  }
  .title_line h3 {
    font-size: 20px;
  }
  .title_line h4 {
    font-size: 20px;
    letter-spacing: 0;
  }
  .frame {
    padding: 20px 0;
  }
  .news-date p {
    letter-spacing: 0px;
    font-size: 20px;
  }
  /*產品 */
  .product__carousel {
    display: none;
  }
  .products-img {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .title01 {
    margin: 20px auto;
  }
  .title04 {
    margin: 0 auto;
  }
  .products .infobox h3 {
    font-size: 18px;
  }
  ul.tabs {
    padding: 0 0 45px 0;
  }
  ul.tabs li {
    width: 100%;
  }
  main .bn {
    padding-bottom: 30%;
  }
  main .bn .page-title {
    bottom: 8%;
  }
  main .bn .page-title h4 {
    margin: 8px 0;
  }
  main .bn .page-title p {
    margin: 8px 0;
  }
  main .bn02 {
    padding-top: 110px;
    padding-bottom: 5%;
  }
  main .bn03 .page-title02 {
    left: 5%;
  }
  .product .infobox p {
    font-size: 16px;
  }
  .product .imgbox {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  .about .row {
    margin: 14px auto;
  }
  .subscribe {
    padding: 10px 20px 40px 20px;
  }
  .swiper-craftsmanship .swiper-slide:nth-child(0n+1) {
    width: 62.5% !important;
    margin-left: 40px !important;
  }
  .swiper-craftsmanship .swiper-slide:nth-child(0n+1) .craftsmanship .imgbox {
    padding-bottom: 51.2% !important;
  }
  .swiper-craftsmanship .swiper-slide {
    width: 25% !important;
    margin-left: 10px !important;
  }
  .col-12 .buttonbox .swiper-button-next, .col-12 .buttonbox .swiper-button-prev {
    top: 25px;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
  .col-12 .buttonbox .swiper-button-prev {
    left: 10px !important;
  }
  .col-12 .buttonbox .swiper-button-prev:hover {
    left: 4px !important;
  }
  .col-12 .buttonbox .swiper-button-next {
    right: 10px !important;
  }
  .col-12 .buttonbox .swiper-button-next:hover {
    right: 4px !important;
  }
}
@media screen and (max-width: 450px) {
  .products .infobox h3 {
    font-size: 16px;
    letter-spacing: 1px;
  }
  main .bn .page-title {
    bottom: 0;
  }
  main .bn .page-title h4, main .bn .page-title p {
    letter-spacing: 0;
    margin: 4px 0;
  }
  main .bn .page-title h4 {
    font-size: 18px;
  }
  main .bn .page-title p {
    font-size: 16px;
  }
  .contact .info-box p {
    font-size: 16px;
  }
}/*# sourceMappingURL=all.css.map */