:root {
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 5rem;
  --open: 30rem;
  --accent: #ff6b35;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Inter, sans-serif;
}

.head {
  max-width: 1400px;
  margin: auto;
  padding: 70px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.head h2 {
  font: 400 1.5rem/1.2 Inter, sans-serif;
  color: #fff;
}
@media (min-width: 1024px) {
  .head h2 {
    font-size: 2.25rem;
  }
}
.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: black;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.nav-btn:hover {
  background: var(--accent);
}
.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.slider {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}

.controls {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}
.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}
.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(0px);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.45);
}
.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(75%);
  transition: filter 0.3s, transform var(--speed);
}
.project-card:hover .project-card__bg {
  filter: brightness(0.9) saturate(100%);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}
.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.35rem;
  writing-mode: vertical-rl;
  transform: rotate(0deg);
}
.project-card__thumb,
.project-card__desc,
.project-card__btn {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.1rem;
}
.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 2.4rem;
}
.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
  display: block;
}

.project-card__thumb {
  width: 133px;
  height: 269px;
  border-radius: 0.45rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.project-card__desc {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 16rem;
}
.project-card__btn {
  padding: 0.55rem 1.3rem;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.project-card__btn:hover {
  background: #ff824f;
}

/* .dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 20px 0;
}
.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--accent);
  transform: scale(1.2);
} */

@media (max-width: 767px) {
  :root {
    --closed: 4rem;
    --open: 22rem;
  }
  .head {
    padding: 50px 20px 30px;
  }
  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }
  .project-card {
    height: 20rem;
  }
  .project-card__title {
    font-size: 1.1rem;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    padding-inline: 0.3rem;
  }
  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .head {
    padding: 30px 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slider {
    padding: 0 15px;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 80px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
    margin-right: auto;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  .project-card[active] .project-card__content {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .project-card[active] .project-card__thumb {
    width: 170px;
    height: 245px;
    border-radius: 0.35rem;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
  }

  .dots {
    display: none;
  }

  .controls {
    width: 100%;
    justify-content: space-between;
    padding: 0 15px 20px;
  }

  .nav-btn {
    position: static;
    transform: none;
  }
}




a{
  text-decoration: none;
}
p{
  font-size: 18px !important;
}

.site-header{
  z-index: 1;
  display: flex;
  width: 100%;
  position: fixed;

}
.site-header3{
  /* background-color: #fffaf0 !important;
  border-radius: 32px 8px 8px 32px !important;
  padding: 10px 30px; */
  display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
  justify-content: space-between;
    width: 100%;
    height: 64px;
    padding: 0 30px;
    margin-right: 30px;
    background-color: #fffaf0;
    border-radius: 32px 8px 8px 32px;
    -webkit-box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
.site-header a {
  color: #8e8e8e;
  transition: color .15s ease-in-out;
}
.nav-item{
  color: white;
  padding: 0 3px;
}
.call-btn{
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.call-btn ul{
  list-style: none;
  padding-left: 0;
  position: relative;
  margin-left: auto;
  background-color: #fff;
  border-radius: 50px 0 0 50px;
  -webkit-box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  width: 50px;
  height: 50px;
  align-self: center;
  padding: 13px 0px 0px 10px;
}
.call_list{
  margin: 0 auto;
  text-align: center;
}
.fa-phone-alt:before{
  font-size: 30px;
}
.call-btn:hover .call_list{
  padding-right: 4rem;
}
.ms-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #df1f29;
  height: .1rem;
  top: 50%;
  width: 0;
  transition: width .3s ease;
}
.nav-item__label {
  position: relative;
  display: block;
  margin: 0.5em 0 0 0;
  margin-top: 0.25em;
  padding: 0.5em;
  color: #555;
  transition: color .3s ease;
  text-decoration: none;
}
.nav-item:hover .nav-item__label {
  color: salmon;
}
.is-visible .nav-item {
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.16, 1.08, 0.38, 0.98) .3s;
}
.nav-item .ms-btn {
  transition: all .3s ease;
}
.nav-item:active .ms-btn,
.nav-item:focus .ms-btn,
.nav-item:hover .ms-btn {
    color: #df1f29;
    opacity: 1;
    padding-left: 2.4rem;
}
.nav-item:active .ms-btn::before,
.nav-item:focus .ms-btn::before,
.nav-item:hover .ms-btn::before {
    width: 2rem;
}
.nav-sub{
  display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 64px;
  padding: 0 30px;
  background-color: #e6505a;
  border-radius: 8px 32px 32px 8px;
  -webkit-box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
.nav-sub .nav-item a{
  color: white;
}
.nav-sub .nav-item a:hover{
  color: blue;
}
.nav-item a:hover{
  color: blue;
}
.ms-header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 3;
}
.navbar-white {
  color: black;
  background-color: transparent !important;
}
.ms-nav{
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
  background-color: rgb(206, 206, 206, 0.25);
  backdrop-filter: blur(10px);
}

.hamburger {
  /* position: fixed;
  right: 0;
  top: 0; */
  margin-right: 0;
  margin-left: auto;
  overflow: visible;
  cursor: pointer;
  z-index: 7;
  border: 0;
  transition-timing-function: linear;
  transition-duration: .3s ease;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  background-color: transparent;
}

.navbar-white .hamburger-label {
  color: #CD853F;
}
.hamburger-label {
  display: block;
  font-family: 'Yantramanav', Arial;
  font-size: 16px;
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: -4em;
  padding-right: 4em;
  text-transform: uppercase;
  line-height: 1.5em;
  transition: color .3s ease .4s;
  color: #151515;
}
.hamburger.is-active .hamburger-label {
  color: #fff !important;
  transition: color .1s ease;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
  vertical-align: middle;
}
.hamburger-inner {
  display: block;
  top: 0;
}
.navbar-white .hamburger-inner,
.navbar-white .hamburger-inner:after,
.navbar-white .hamburger-inner:before {
  background-color: #CD853F !important;
  transition: transform .3s ease .2s, background-color .3s ease .2s, opacity .3s ease .3s;
}
.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: '';
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #151515;
  transition: all .3s ease .5s;
}
.hamburger-inner:before {
  top: 8px;
  left: -8px;
}
.hamburger-inner:after {
  top: 16px;
  width: 26px;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after {
  background-color: white;
  transition-delay: .1s;
}
.hamburger.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger.is-active .hamburger-inner:before {
  opacity: 0;
  transition: opacity .3s ease 0s
}
.hamburger.is-active .hamburger-inner:after {
  width: 30px;
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}
.navbar-white .hamburger-inner,
.navbar-white .hamburger-inner:after,
.navbar-white .hamburger-inner:before {
    background-color: #fff;
    transition: transform .3s ease .2s, background-color .3s ease .2s, opacity .3s ease .3s;
}
.height-full-viewport {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: lightslategray;
  z-index: 5;
  overflow: hidden;
  transition: height .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
}
.ms-nav.is-visible .height-full-viewport {
  height: 100vh;
  transition: height 1s ease;
}
.ms-navbar {
  z-index: 6;
  margin: 0 auto;
  display: block;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}
.ms-navbar a {
  display: block;
}
.ms-navbar .ms-btn {
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 0.25em;
  position: relative;
}
.ms-navbar .ms-btn {
  font-size: 1.75em;
  letter-spacing: .02em;
  color: #fff;
  font-weight: 700 !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.IndexHero{
  width: 100%;
  position: relative;
  /* background-color: antiquewhite; */
  height: auto;
  z-index: 1;
}
.Hero_mainHead{
  display: flex;
  align-items: center;
  /* padding-right: 200px; */
}
.Hero_Visual{
  width: 100%;
  position: relative;
  height: auto;
  /* height: calc(100vh - 80px); */
}
.Hero_VisualImage{
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  opacity: 1;
  transition: opacity 1.5s .5s;
}
.Hero_VisualItem{
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 2.5s;
  opacity: 0;
  overflow: hidden;
}
.banner-slide{
	background-repeat:no-repeat;
	display:none;
}
.slide-active{
	display:block;
}
.slide1{
  position: relative;
	background-image:url(../images/hero1.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 90px 0px;
}
.hero_p1{
  position: absolute;
  bottom: 10%;
  left: 3%;
  font-size: 56px;
}
.slide2{
	background-image:url(../images/hero2.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 90px 0px;
}
.slide3{
	background-image:url(../images/hero3.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 0px 0px 90px 0px;
}
.animatable {
  visibility: hidden;
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}
.animated {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.75s;
  -moz-animation-duration: 0.75s;
  -ms-animation-duration: 0.75s;
  -o-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}
@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	60% {
		-webkit-transform: translateX(20px);
	}

	80% {
		-webkit-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}
@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}

	60% {
		-moz-transform: translateX(20px);
	}

	80% {
		-moz-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}
@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-o-transform: translateX(20px);
	}

	80% {
		-o-transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}
@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}

	60% {
		transform: translateX(20px);
	}

	80% {
		transform: translateX(-5px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
/* .dots {
	position: absolute;
	bottom: 0px;
	right: -30px;
	text-align: center;
	line-height: 12px;
}
.dots span {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin-left: 8px;
	background-color: transparent;
	cursor: pointer;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8) inset;
  margin: 5px 0;
}
.dots span.active{
	box-shadow: 0 0 0 1.2px rgba(0, 0, 0, 0.4) inset;
  border-radius: 50%;
	background-color: white;
} */
.phoneTittle{
  position: absolute;
  left: 3%;
  bottom: 110px;
  z-index: 200;
}
.phone{
  /* transform: translate(-15%,-26px); */
  font-size: 40px;
  font-weight: 100;
  line-height: 1.4;
  letter-spacing: 7px;
  font-family: 游明朝, YuMincho, yu-mincho-pr6, sans-serif;
  display: inline-block;
}
.phone a:first-of-type::before{
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/tel-g.png) no-repeat;
  background-size: contain;
  margin-right: 5px;
  position: relative;
  bottom: -3px;
}
.phone a{
  color: #666666;
}
.phone a:hover{
  text-decoration: none;
  color: #004085;
}
.phone_title{
  display: inline-block;
  font-size: 35px;
}
.phone_title:before {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  max-width: 7em;
  white-space: nowrap;
  color: red;
  animation: loading 5s linear;
  animation-iteration-count: infinite;
}
@keyframes loading {
  0% {
      max-width: 0;
  }
}
.mobil-br{
  display: none;
}
.about{
  margin-left: calc((100vw - 1122px)/ 2);
  background-color: #fffaf0;
  border-radius: 80px 0 0 80px;
  -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  position: relative;
  top: -15vh;
  z-index: 1;
}
.about_inner{
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 20% 15px 0px;
  margin-left: 0;
  max-width: 90%;
  margin: auto;
}
.about_header{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 8%;
}
.about_header h4{
  margin-left: 20px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  border-right: 1px solid #ca000c;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.about_p{
  width: 72%;
}
.about_p p{
  border-top: 1px solid #e6e1d8;
  border-bottom: 1px solid #e6e1d8;
  letter-spacing: 3px;
}
.about_link{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 15%;
  padding-left: 40px;
}
.about_link_btn{
  position: relative;
  font-size: 20px;
  letter-spacing: 2px;
  color: #ca000c;
}
.about_link_btn::after{
  position: absolute;
  bottom: -8px;
  left: 0;
  display: inline-block;
  width: 162px;
  height: 14px;
  content: "";
  background-image: url(../images/btn-arrow-long.svg);
}
.about_link_btn:hover{
  color: blue;
}
.serve_item{
  margin-top: -80px;
}
.serve{
  height: 380px;
  text-align: center;
  background-image: url(../images/serve.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.serve h2{
  display: inline-block;
  padding-bottom: 5px;
  margin-top: 15px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  border-bottom: 1px solid #ca000c;
}
.serve::before{
  content: "";
  display: block;
  width: 100vw;
  height: 460px;
  position: absolute;
  right: 20%;
  top: 185px;
  background-color: #eef8fe;
  z-index: -1;
  border-radius: 0px 0px 80px 0px;
}
.serve1{
  margin-top: 40px;
  background-image: url(../images/serve1.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve2{
  margin-top: 40px;
  background-image: url(../images/serve2.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve3{
  margin-top: 40px;
  background-image: url(../images/serve3.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve4{
  margin-top: 40px;
  background-image: url(../images/serve4.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve5{
  margin-top: 40px;
  background-image: url(../images/serve5.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve6{
  margin-top: 40px;
  background-image: url(../images/serve6.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve7{
  margin-top: 40px;
  background-image: url(../images/serve7.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve8{
  margin-top: 40px;
  background-image: url(../images/serve8.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 67%;
}
.serve-btn{
  margin-top: 50px;
}
.bbt{
  position: relative;
  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;
  width: 100%;
  max-width: 354px;
  height: 64px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ca000c;
  letter-spacing: .1em;
  background-color: #fffaf0;
  border: 2px solid rosybrown;
  border-radius: 8px 32px 32px 8px;
  -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.bbt:hover{
  background-color: blue;
  color: white;
}
.news{
  position: relative;
  margin-top: 80px;
}
.news_inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 10;
}
.news_inner::before{
  content: "";
  display: block;
  width: 63%;
  height: 300px;
  position: absolute;
  left: 0%;
  top: 80%;
  z-index: -1;
  margin-left: calc((100vw - 546px)/ 2);
  background: linear-gradient(45deg, #ffe5e7, #ffecd9);
  border-radius: 50px 0 0 50px;
}
.news_header{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 374px;
  background-color: #ca000c;
  border-radius: 0 50px 50px 0;
  -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.news_content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 70px;
  margin-left: calc((100vw - 1120px)/ 2);
}
.news_content h2{
  color: #fff;
  border-color: #fff;
  margin-left: 20px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  writing-mode: vertical-rl;
  border-right: 1px solid white;
}
.news_list{
  position: relative;
  list-style: none;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: calc((100vw - 1120px)/ 2);
  margin-left: 40px;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.news_list_item{
  position: relative;
  width: 30%;
  min-width: 270px;
  padding: 14px;
  margin-right: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 97%;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 10%);
}
.news_list_item:hover{
  cursor: pointer;
}
.tag{
  position: absolute;
  top: -10px;
  right: -5px;
  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;
  width: 100px;
  height: 100px;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  background-color: red;
  border-radius: 8px;
  -webkit-transition: all .6s;
  transition: all .6s;
  padding: 0.3rem;
}
.tag_inner{
  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;
  width: 100px;
  height: 85px;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  border-radius: 8px;
  background-color: white;
}
.tag span{
  font-size: 20px;
  margin-right: 6px;
}
.news_list_item:hover a .tag{
  background-color: white;
}
.news_list_item:hover a .tag_inner{
  background-color: red;
}
.news_list_item:hover a .tag span{
  color: white;
}
.item_title{
  margin-top: 20px;
  font-weight: 700;
  color: #ca000c;
  text-align: center;
  letter-spacing: .1em;
  margin-bottom: 0px;
}
.item_list{
  margin-top: 15px;
  color: #000;
  font-family: cursive;
  font-size: 18px;
}
.certificate{
  margin-top: 90px;
  background-color: transparent;
}
.certificate_title{
  margin-top: 25px;
  font-weight: 700;
  color: black;
  letter-spacing: .1em;
  margin-bottom: 5px;
  width: fit-content;
  width: max-content;
  border-bottom: 1px solid red;
}
.carousel-gallery {
  margin: 15px 0;
  padding: 0 30px;
}
.carousel-gallery .swiper-slide a {
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
}
.link_a{
  height: 55px !important;
}
.link_a:hover{
  opacity: 0.5;
}
.carousel-gallery .swiper-slide a:hover .image .overlay {
  opacity: 1;
}
.carousel-gallery .swiper-slide a .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.carousel-gallery .swiper-slide a .image .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.8);
  text-align: center;
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.carousel-gallery .swiper-slide a .image .overlay em {
  color: #fff;
  font-size: 26px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
}
.carousel-gallery .swiper-pagination {
  position: relative;
  bottom: auto;
  text-align: center;
  margin-top: 25px;
}
.carousel-gallery .swiper-pagination .swiper-pagination-bullet {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.carousel-gallery .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: .7;
}
.carousel-gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #d63031;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.carousel-gallery .swiper-pagination{
  margin-top: 10px;
}
.top{
  display: none; 
  position: fixed; 
  bottom: 30px; 
  right: 30px; 
  opacity:0.5; 
  cursor: pointer; 
  z-index: 2;
  color: black;
}
.top:hover{
  color: #5cb85c;
}
.hero{
  /* background-color: #f2f2f2; */
  /* margin-top: -112px; */
}
.sever_hero{
  background-image: url(../images/serve-hero.jpg);
  background-position: 50% 35%;
  background-size: cover;
  height: 460px;
}
.about_hero{
  background-image: url(../images/about.webp);
  background-position: 50% 35%;
  background-size: cover;
  height: 460px;
  border-radius: 0 0 35px 35px;
  position: relative;
  overflow: hidden;
}

.hero_under{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero_under::after{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/sub_mv.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 494px;
  height: 125px;
  content: '';
  z-index: -1;
}



.about_us{
  margin-top: 40px;
  margin-bottom: 20px;
  background-image: url(../images/about_us.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.header_title{
  margin: 0 auto;
  position: absolute;
  right: 0;
}
.breadcrumb{
  background-color: transparent;
}
.breadcrumb-item a{
  color: #666666;
}
.breadcrumb-item a:hover{
  color: blue;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: ">";
}
.itemTitle{
  font-family: æ¸¸æ˜Žæœ, YuMincho, yu-mincho-pr6, sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 55px 0 70px;
}
.itemTitle::after{
  content: '';
  width: 65px;
  height: 1px;
  background: red;
  display: block;
  margin: 5px auto 0;
}
.Team-content .team{
  margin: 50px auto 50px;
  padding: 1rem;
  background: aliceblue;
  border-radius:  60px 0px 60px 0px;
}
.Team-content .team h2{ 
  width: 100%;
  background: linear-gradient(to left, rgba(134, 205, 249, 1) 0%, rgba(87, 139, 213, 1) 100%);
  font-family: æ¸¸æ˜Žæœ, YuMincho, yu-mincho-pr6, sans-serif;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 10px 0px;
}
.Team-content .team h3{
  color: gray;
  border-bottom: 1px solid red;
  padding-bottom: 5px;
  font-weight: 500;
  margin: 40px 0 20px;
}
.Team-content .team h4{
  background: burlywood;
  font-size: 16px;
  color: #fff;
  padding: 8px 10px;
  display: inline-block;
  min-width: 100px;
  text-align: center;
  font-family: sans-serif;
}
.Team-content .team li{
  list-style: disc;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-family: sans-serif;
  font-size: 18px;
}
.Team-content p{
  font-family: sans-serif;
  line-height: 28px;
  letter-spacing: 1.5px;
  font-size: 18px;
}
.article{
  display: inline-block;
  font-size: 18px;
  font-family: cursive;
}
.evaluation{
  border: 1px solid gray;
  border-radius: 3px;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  padding: 0.3rem;
  display: block;
  box-shadow: 6px 6px 16px rgba(0,0,0,0.3)!important;
  margin: 40px 20% 0px 20%;
}
.evaluation-link{
  border: 1px solid gray;
  border-radius: 3px;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  padding: 0.3rem;
  display: block;
  box-shadow: 6px 6px 16px rgba(0,0,0,0.3)!important;
  margin: 40px 0% 0px 0%;
}
.evaluation_title{
  width: none !important;
  font-size: 25px!important;
  text-align: center !important;
  padding: 0px !important;
  margin: 0 auto !important;
  border-radius: 1.5px !important;
}
.eva_conent{
  margin-top: 20px;
}
.eva_list{
  padding-left: 40px;
}
.pro_item{
  display: block;
  width: 100%;
  height: 280px;
  margin-top: 20px;
  padding: 90px 5% 0;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid black;
  border-radius: 65px 0px 0px 65px;
  color: white;
  background: linear-gradient(325deg,rgba(134, 205, 249, 1) 0%, rgba(87, 139, 213, 1) 100%);
}
.pro_item2{
  display: block;
  margin-top: 40px;
  width: 100%;
  height: 280px;
  padding: 90px 5% 0;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid black;
  border-radius: 0px 65px 65px 0px;
  color: white;
  background: linear-gradient(325deg,rgba(134, 205, 249, 1) 0%, rgba(87, 139, 213, 1) 100%);
}
.pro_item3{
  display: block;
  margin: 0 auto;
  width: 20%;
  padding: 20px 0% 0;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid black;
  border-radius: 5px;
  color: white;
  background: linear-gradient(325deg,rgba(134, 205, 249, 1) 0%, rgba(87, 139, 213, 1) 100%);
}
.slid{
  cursor: pointer;
}
.slid:hover{
  color: red;
}
.icon{
  display: block;
  text-align: center;
  font-size: 45px;
  margin-bottom: 5px;
}
.pro_p{
  text-align: center;
}
.pro_item:hover{
  transform:scale(1.05,1.05);
  color: 	#6F00D2;
}
.pro_item2:hover{
  transform:scale(1.05,1.05);
  color: 	#6F00D2;
}
.pro_item3:hover{
  transform:scale(1.05,1.05);
  color: 	#6F00D2;
}
.pro1{
  background-image: url(../images/為何要找徵信.jpg);
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 74%;
  border: 1px solid Gainsboro;
}
.pro2{
  background-image: url(../images/徵信社都做什麼服務.jpg);
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 74%;
  border: 1px solid Gainsboro;
}
.company-list{
  background: #f6f6f6;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  text-align: center;
}
.company-list a{ 
  color: black;
}
.company-list a:hover{ 
  color: blue;
}
.company-list p{ 
  margin-bottom: 0;
}


.InformationAll{
  position: absolute;  
  inset-inline: 0;
  display: flex;
  justify-content: flex-start;
  padding-left: clamp(1rem, 3vw, 20%);
  z-index: 2;
  bottom: 20%;
  transition: opacity 1.5s 1.4s;
  align-items: center;
}
.Information_head{
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.lable{
  font-family: canada-type-gibson,sans-serif;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 1.6px;
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #fff;
  padding: 4px 3px 3px 4px;
  font-size: 15px;
  text-align: center;
}
.lable::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #231815;
}
.Information__date{
  font-family: canada-type-gibson,sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2.4px;
    color: black;
}
.Information__date::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #231815;
  transition: width .5s cubic-bezier(0,.42,.25,.98);
}
.Information_foot{
  font-size: 20px;
  line-height: 1.8;
  color: black;
}
.ellipsis {
  width: 260px;
  margin-bottom: 0px;
  overflow:hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.Information .InformationAll:after{
    background-repeat: no-repeat;
    content: ">";
    width: 15px;
    height: 15px;
    margin-left: 20px;
    color: black;
}
.equipment{
  position: relative;
}



.p-idx-about_image {
    width: calc(43.25rem + 50vw - 42.6875rem);
    margin-left: calc(-10.625rem - (50vw - 48.6875rem));
    background-image: url(../images/about___.webp) ;
    background-repeat: no-repeat;
    background-position: 50% 70%;
    background-size: cover;
    padding: 85% 0;
    border-radius: 0px 15px 15px 0;
}

/* button base */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

/* button.learn-more */
button.learn-more {
  width: 12rem;
  height: auto;
}

/* circle */
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

/* icon */
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #ffffff;
}

/* arrow */
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  content: '';
  position: absolute;
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  transform: rotate(45deg);
}

/* button text */
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

/* hover effects */
button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #ffffff;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #ffffff;
}

.banner-info{
  color: black;
  overflow: hidden;
}

.banner-info img{  
  transition: transform 0.3s ease, filter 0.3s ease;
}

.banner-info:hover img{
  transform: scale(0.99);    
  filter: brightness(0.8);  
}

.news_link{
  color: black;
}

.news_link:hover{
  color: blue;
}

.news_link:hover .Information__date{
  color: blue;
}

.news_link:hover .Information_foot{
  color: blue;
}

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

.table-box th {
  background-color: #615e5b;
  color: white;
  border-right: 1px solid #fff;;
  border-bottom: 1px solid #fff;;
}

.table-box td{
  background-color: #585552;
  color: white;
  border-right: 1px solid #fff;;
  padding: 25px 10px;
}

.line{
  display: block;
  width: 1px;
  height: 6px;
  margin: 7px auto;
  background-color: #d5d2cc;
}

.about-title{
  position: relative;
  /* margin-bottom: -90px; */
  z-index: 2; 
  font-size: 11.625em;
  color: #CD853F;
  text-decoration: underline;
}

.view-mobile{
  display: none;
}

.view-pc{
  display: block;
}

.into{
  position: relative;
}

.into::before{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/cloud-white2.png);
  width: 100%;
  padding: 23px 0px;
}

figure.snip1104 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.snip1104 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

figure.snip1104 img {
  max-width: 100%;
  position: relative;
  opacity: 0.4;
}

figure.snip1104 figcaption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

figure.snip1104 h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
}

figure.snip1104 h2 span {
  font-weight: 800;
}

figure.snip1104:before {
  height: 100%;
  width: 180%;
  top: 0;
  left: -40%;
  content: '';
  background: #ffffff;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(105deg) translateY(-50%);
  transform: rotate(105deg) translateY(-50%);
}

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

figure.snip1104.blue {
  background: #123851;
}

figure.snip1104.blue h2 {
  background: #0a212f;
}

figure.snip1104.red {
  background: #581a14;
}

figure.snip1104.red h2 {
  background: #36100c;
}

figure.snip1104.yellow {
  background: #7f5006;
}

figure.snip1104.yellow h2 {
  background: #583804;
}

figure.snip1104:hover img,
figure.snip1104.hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.snip1104:hover h2,
figure.snip1104.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.snip1104:hover:before,
figure.snip1104.hover:before {
  -webkit-transform: rotate(110deg) translateY(-150%);
  transform: rotate(110deg) translateY(-150%);
}

.active-link{
  display: block;
  margin-top: 10px;
  font-size: 20px;
  text-align: center;
  color: black;
}

.active-link:hover{
  color: red;
}


.read-bg{
  position: relative;
  width: 100%;
}

.read-bg::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-color: mistyrose;
  background-image: url(../images/bg_dotted.svg);
  border-radius: 0 0 30px 0;
  z-index: -1;
}


.list{
  list-style-type: none;
  padding-left: 0;
}

.list li{
  padding: 16px 0px;
  padding-left: 1rem;
  border-bottom: 1px solid #ddd;
}
.list-item{
  display: inline-block;
  width: 50px;
  flex-shrink: 0;
}

.list-item::after{
  position: absolute;
  top: 0;
  right: 28px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  rotate: 45deg;
  border-top: 2px solid #111f2c;
  border-right: 2px solid #111f2c;
  content: "";
}

.list li:hover{
  opacity: 0.5;
}

.fb-img {
  width: 5%;
}

.ig-img{
  width: 5%;
}

.line-img{
  width: 5.2%;
}

.icon-box {
  display: inline-flex;
  align-items: center;      /* 垂直置中 */
  justify-content: center;  /* 水平置中 */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
}

.main-article img {
  max-width: 100%;
  height: auto;
  display: block;
}


@media(max-width:1025px){
  .navbar{
    display: none !important;
  }
  .ms-nav{
    display: block;
  }
  .site-header2{
    display: block !important;
    z-index: 50;
  }

  .p-idx-about_image {
      width: calc(100% + 3.5rem);
      margin-left: -4rem;
      height: auto;
  }

  .about-title{
    position: relative;
    /* margin-bottom: -60px; */
    z-index: 2; 
    font-size: 9em;
    color: #CD853F;
  }


  .ms-navbar {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 0px;
  }
  .nav-item {
    display: inline-block;
    width: auto;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .nav-item__label {
    display: none;
  }
  .is-visible .nav-item{
    font-size: 1.75rem;
  }
  .IndexHero{
    top: 0;
  }
  .hero_p1{
    font-size: 70px;
  }
  .Hero_mainHead{
    padding-right: 50px;
  }
  .phoneTittle{
    bottom: 135px;
  }
  .phone{
    font-size: 55px;
  }
  .phone a:first-of-type::before{
    width: 45px;
    height: 45px;
  }
  .about{
    margin-left: 24px;
    top: -5vh;
  }
  .about_inner{
    padding: 30px 0px 15px 0px;
  }
  .about_header{
    width: 12%;
  }
  .about_link{
    padding-left: 0px;
    width: 10%;
  }
  .about_link_btn::after{
    position: absolute;
    bottom: -8px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 14px;
    content: "";
    background-image: url(../images/btn-arrow-long.svg);
    background-position: 100% 0%;
    background-size: cover;
  }
  .serve_item{
    margin-top: 0px;
  }
  .serve::before{
    height: 600px;
    right: 12%;
    border-radius: 0px 0px 50px 0px;
  }
  .serve-btn{
    margin-top: 20px;
  }
  .bbt{
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }
  .news_inner{
    display: block;
  }
  .news_header{
    height: 150px;
    margin-right: calc((100vw - 100px)/ 2);
  }
  .news_content{
    display: block;
    margin-right: 40px;
    margin-left: 24px;
  }
  .news_content h2{
    display:inline-block;
    writing-mode: inherit;
    width: fit-content;
    width: max-content;
    border-right: 0px;
    border-bottom: 1px solid white;
  }
  .news_list{
    display: block;
    margin-top: 40px;
    padding-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    margin-right: 0;
    margin-left: 0;
  }
  .news_list_item{
    width: 100%;
    max-width: 285px;
    min-width: 230px;
    margin: 40px auto 0;
    background-size: 97%;
  }
  .news_inner::before{
    width: 76.5%;
    height: 800px;
    top: 56%;
  }
  .certificate{
    margin-top: 50px;
  }
  .hero{
    margin-top: 0px;
  }
  .sever_hero{
    height: 350px;
  }
  .evaluation{
    margin: 40px 10% 0px 10%;
  }
  .eva_list{
    padding-left: 30px;
  }
  .pro_item{
    float: right;
    border-radius: 35px 0px 0px 35px;
  }
  .pro_item2{
    border-radius: 0px 35px 35px 0px;
  }
}
@media(max-width:911px){
  .navbar{
    display: none !important;
  }
  .ms-nav{
    display: block;
  }
  .site-header2{
    display: block !important;
    z-index: 50;
  }
  .p-idx-about_image {
      width: calc(100% + 5.5rem);
      margin-left: -4rem;
      height: auto;
  }

  .about-title{
    position: relative;
    /* margin-bottom: -60px; */
    z-index: 2; 
    font-size: 8em;
    color:#CD853F;
  }




  .ms-navbar {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 0px;
  }
  .is-visible .nav-item{
    font-size: 1.75rem;
  }
  .nav-item {
    display: inline-block;
    width: auto;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .nav-item__label {
    display: none;
  }
  .IndexHero{
    top: 0;
  }
  .Hero_mainHead{
    padding-right: 50px;
  }
  .about{
    margin-left: 24px;
    top: -5vh;
  }
  .about_inner{
    max-width: 100%;
  }
  .phoneTittle{
    bottom: 110px;
  }
  .phone a:first-of-type::before {
    width: 35px;
    height: 35px;
  }
  .phone{
    font-size: 45px;
  }
  .about_inner{
    padding: 30px 0px 15px 0px;
  }
  .serve::before{
    height: 600px;
    right: 12%;
    border-radius: 0px 0px 50px 0px;
  }
  .serve-btn{
    margin-top: 20px;
  }
  .bbt{
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }
  .news_inner{
    display: block;
  }
  .news_header{
    height: 150px;
    margin-right: calc((100vw - 100px)/ 2);
  }
  .news_content{
    display: block;
    margin-right: 40px;
    margin-left: 24px;
  }
  .news_content h2{
    display:inline-block;
    writing-mode: inherit;
    width: fit-content;
    width: max-content;
    border-right: 0px;
    border-bottom: 1px solid white;
  }
  .news_list{
    display: block;
    margin-top: 40px;
    padding-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    margin-right: 0;
    margin-left: 0;
  }
  .news_list_item{
    width: 100%;
    max-width: 285px;
    min-width: 230px;
    margin: 40px auto 0;
    background-size: 97%;
  }
  .news_inner::before{
    width: 85.5%;
    height: 800px;
    top: 56%;
  }
  .certificate{
    margin-top: 50px;
  }
  .hero_p1{
    font-size: 48px;
  }
}
@media(max-width:767px){
  .view-pc{
    display: none;
  }
  .view-mobile{
    display: block;
  }  
  .p-idx-about_image {
      width: calc(100% + 1.5rem);
      margin-left: -1.5rem;
      height: auto;
  }

  .Hero_mainHead{
    padding-right: 0px;
  }

  .InformationAll{
    width: 80%;
  }
  .lable{
    font-size: 10px;
  }
  .Information_head{
    margin-right: 10px;
  }
  .Information_foot{
    font-size: 14px;
  }

  .table-box{
    width: 100%;
  }
  .about_hero{
    border-radius: 0;
  }

  .about-title{
    font-size: 6em;
    /* margin-bottom: -40px; */
  }


  .dots{
    display: none;
  }
  .phoneTittle{
    bottom: 10%;
  }
  .phone{
    font-size: 25px;
  }
  .phone a:first-of-type::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/tel-g.png) no-repeat;
    background-size: contain;
    margin-right: 5px;
    position: relative;
    bottom: -3px;
  }
  .phone_title{
    display: inline-block;
    font-size: 20px;
  }
  .mobil-br{
    display: block;
  }
  .about{
    margin-left: 15px;
  }
  .about_inner{
    display: block;
    padding: 30px 0px 30px 0px;
  }
  .about_header{
    display: block;
    width: auto;
  }
  .about_header h4{
    display: block;
    margin: 5px auto;
    width: fit-content;
    width: max-content;
    writing-mode:inherit;
    border-right: 0px;
    border-bottom: 1px solid #ca000c;
  }
  .about_p{
    width: 100%;
    padding-left: 15px;
  }
  .about_link{
    width: 100%;
  }
  .about_link_btn{
    display: block;
    margin: 0 auto;
  }
  .news_header{
    margin-right: 15px;
  }
  .news_inner::before{
    margin-left: 0;
    width: 100%;
    height: 800px;
    top: 56%;
    border-radius: 0;
  }
  .certificate{
    margin-top: 30px;
  }
  .certificate_title{
    margin-top: 25px;
    font-weight: 700;
    color: black;
    letter-spacing: .1em;
    margin-bottom: 5px;
    width: 100%;
    border-bottom: 0px;
  }
  .hero_p1{
    font-size: 30px;
  }
  .Team-content .team{
    padding: 1rem;
  }
  .evaluation{
    margin: 40px 2% 0px 2%;
  }
  .eva_list{
    padding-left: 10px;
  }
  .ms-navbar .ms-btn {
    font-size: 1em;
  }
  .data_item{
    display: flex;
    width: 50%;
  }
  .pro_item{
    float: none;
    margin: 10px auto;
    border-radius: 35px 0px 0px 35px;
  }
  .pro_item2{
    margin: 0 auto;
    margin-top: 40px;
    border-radius: 0px 35px 35px 0px;
  }
  .pro_item3{
    width: 50%;
  }
  .fb-img {
    width: 10%;
  }

  .ig-img{
    width: 10%;
  }

  .line-img{
    width: 10%;
  }

  .ellipsis {
    width: 80px;
  }

  .main-article .edui-upload-video {
      width: 100% !important; /* 寬度 100% */
      height: auto !important; /* 高度自動按比例 */
  }

}


@media(max-width:321px){
  .logo{
    width: 70% !important;
  }
  .Information__date{
    font-size: 10px !important;
  }
}