@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Manrope:wght@200..800&family=Noto+Sans+TC:wght@100..900&display=swap');


::selection {
	background: var(--Second);
	color: var(--Bg);
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	overflow-x: hidden;
	--Bg: #fff;
	--Text: #000;
	--Main: #F78745;
	--Second: #1936E6;
	--Gray: #D9D9D9;
	--Red: #FF0000;
	--Green: #68EC00;

	--White: #fff;
	--Black: #000;
	--Glass: rgba(0, 0, 0, .5);
	--G01: linear-gradient(180deg, rgba(247, 135, 69, 1) 0%, rgba(255, 70, 0, 1) 100%);
	--G02: linear-gradient(180deg, rgba(25, 54, 230, 1) 0%, rgba(0, 15, 107, 1) 100%);

	--Sans: 'Manrope', 'Noto Sans TC', sans-serif;
	--SP: 'Dela Gothic One', 'Noto Sans TC', sans-serif;

	color: var(--Text);
	background: var(--Bg);

	font-family: var(--Sans);
	width: 100vw;
	position: relative;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.dark {
	--Bg: #000;
	--Text: #fff;
}


a {
	text-decoration: none;
	color: var(--Text);
}

html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar {
	width: 7px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	border-radius: 7px;
	background-color: var(--Main);
}

.big {
	font-size: 1.5em;
}

.small {
	font-size: .6em;
}

.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
.orange {
	color: var(--Main);
}
main {
	width: 100vw;
	overflow: hidden;
	position: relative;
}

section {
	width: 95%;
	max-width: 1280px;
	position: relative;
	z-index: 0;
	padding: 0;
	margin: 0 auto;
	white-space: normal;
	line-height: 0;
}

p {
	line-height: 1.5em;
}

h1,
h2,
h3,
h4 {
	line-height: 1.2em;
	margin: 0;
	padding: 0;
}

.mobile {
	display: none !important;
}

nav {
	width: 95vw;
	max-width: 1280px;
	position: fixed;
	z-index: 10;
	top: 20px;
	left: calc(50vw - 640px);
	background: var(--Bg);
	border-radius: 10px 10px;
	height: 50px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	padding: 0 20px;
	margin: 0;
}

body.dark nav,
body.dark .navMenu ul {
	background: var(--Text);
	color: var(--Bg);
}

body.dark .navLink a {
	color: var(--Bg);
}

.navLogo {
	width: 100px;
}

.navMenu {
	position: relative;
}

.navMenu ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row;
	gap: 40px;
	list-style: none;
	font-weight: 500;
	font-size: 14px;
}

.navSocial {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row;
	gap: 5px;
}

.navSocial a {
	color: var(--Main);
	transition: .3s;
}

.navSocial a:hover {
	color: var(--Second);
	transition: .3s;
}

.navLink a:hover {
	color: var(--Main);
	transition: .3s;
}

.navHamberger,
.navClose {
	color: var(--Main);
	display: none !important;
}

.faq {
	padding: 20px 20px;
	border-radius: 10px 10px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	background: url(../img/faq.webp) no-repeat center center/cover;
	gap: 50px;
}

body.dark .faq {
	color: var(--Bg);
}

body.dark .faqSection02 {
	background: var(--Text);
}

.faqSection {
	width: 50%;
	padding: 20px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 50px;
}

.faqSection h1 {
	width: 100%;
	line-height: 1.2em;
}

.faqSection h3 {
	line-height: 1.2em;
	margin-bottom: 10px;
}

.faqSection02 {
	background: var(--Bg);
	border-radius: 10px 10px;
}

.aForm {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.aForm02 {
	justify-content: flex-start;
}

.aForm h3,
.aForm h4 {
	width: 100%;
	line-height: 1.2em;
}

.aForm input {
	border: 1px solid var(--Gray);
	font-size: 12px;
	height: 40px;
	padding: 0 10px;
}

.halfInput {
	width: calc(50% - 10px);
}

.oneInput {
	width: 100%;
}

.aForm input:focus {
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}

.formBtn {
	width: calc(50% - 10px);
	height: 40px;
	text-align: center;
	padding: 10px 10px;
	color: var(--Main);
	border: 1px solid var(--Main);
	font-size: 12px;
	line-height: 1.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	font-weight: bold;
	gap: 5px;
	cursor: pointer;
}

.formBtn02 {
	height: 80px;
}

.formBtn .big {
	display: block;
	line-height: 1em;
}

.formBtn:hover,
.formBtn.active {
	background: var(--Main);
	color: var(--White);
	transition: .3s;
}

footer {
	width: 95vw;
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footerContent {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 50px;
	padding: 100px 20px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
}

.footerLogo {
	width: 50%;
}

.footerCopy {
	width: 100%;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
}

.footerTop {
	width: 60px;
	aspect-ratio: 1/1;
	border: 1px solid var(--Gray);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--Main);
	font-size: 30px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 1;
}

.footerTop:hover {
	color: var(--Second);
	transition: .3s;
}


.one3 {
	width: calc(100% / 3 - 15px);
	position: relative;
}

.two3 {
	width: calc(200% / 3 - 10px);
	position: relative;
}

.one2 {
	width: calc(100% / 2 - 10px);
	position: relative;
}

.one4 {
	width: calc(100% / 4 - 15px);
	position: relative;
}

.one {
	width: 100%;
	position: relative;
}

.BR {
	border-radius: 10px 10px;
}

.orange {
	color: var(--Main);
}

.blue {
	color: var(--Second);
}

.SP {
	font-family: var(--SP);
}



/*ProjectSwiper*/
.mySwiper,
.swiper-wrapper {
	width: 100%;
	height: 100%;
}

.projectSwiper .swiper-slide {
	width: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 50px;
}

.projectSwiper01 .swiper-slide:nth-child(1) {
	background: url(../img/index/case/01.webp) center/cover no-repeat;
}

.projectSwiper01 .swiper-slide:nth-child(2) {
	background: url(../img/index/case/02.webp) center/cover no-repeat;
}

.projectSwiper01 .swiper-slide:nth-child(3) {
	background: url(../img/index/case/03.webp) center/cover no-repeat;
}

.projectSwiper01 .swiper-slide:nth-child(4) {
	background: url(../img/index/case/04.webp) center/cover no-repeat;
}

.projectSwiper01 .swiper-slide:nth-child(5) {
	background: url(../img/index/case/05.webp) center/cover no-repeat;
}

.projectSwiper02 .swiper-slide:nth-child(1) {
	background: url(../img/index/case/06.webp) center/cover no-repeat;
}

.projectSwiper02 .swiper-slide:nth-child(2) {
	background: url(../img/index/case/07.webp) center/cover no-repeat;
}

.projectSwiper02 .swiper-slide:nth-child(3) {
	background: url(../img/index/case/08.webp) center/cover no-repeat;
}

.projectSwiper02 .swiper-slide:nth-child(4) {
	background: url(../img/index/case/09.webp) center/cover no-repeat;
}

.projectSwiper02 .swiper-slide:nth-child(5) {
	background: url(../img/index/case/10.webp) center/cover no-repeat;
}

.projectSwiper .swiper-slide .content {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	color: var(--Bg);
}

.projectSwiper .swiper-slide .content h1,
.projectSwiper .swiper-slide .content p {
	display: block;
	line-height: 1.2em;
	margin: 0;
}

.projectSwiper .btn {
	width: 105px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: 1px solid var(--Bg);
	color: var(--Bg);
	font-weight: bold;
	transition: .3s;
}

.projectSwiper .btn i {
	margin-left: 5px;
}

.projectSwiper .btn:hover {
	background: var(--Bg);
	color: var(--Text);
	transition: .3s;
}

/*End*/

/*logoSwiper*/
.logoSwiper .swiper-wrapper {
	transition-timing-function: linear;
}

.marquee {
	width: 100px;
}

.marquee img {
	width: 100%;
}


/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {
	nav {
		left: calc(50vw - 640px);
	}
}

@media screen and (max-width:1279px) {
	nav {
		left: 2.5%;
	}
}

@media screen and (max-width:1024px) {}

@media (orientation:portrait) and (max-height: 1180px) {
	.navHamberger {
		display: none;
	}

	.halfInput,
	.formBtn {
		width: 100%;
	}
}

@media (orientation:portrait) and (max-height: 1024px) {}

@media screen and (max-width:480px) {
	.mobile {
		display: block !important;
	}

	.desktop {
		display: none !important;
	}

	.navHamberger {
		display: block !important;
		position: absolute;
		right: 20px;
	}

	.navMenu ul {
		position: fixed;
		top: 20px;
		right: -100%;
		width: 95vw;
		height: calc(100vh - 40px);
		background: var(--Bg);
		border-radius: 10px 10px;
		box-shadow: 0 0 5px rgba(0, 0, 0, .2);
		padding: 20px 20px;
		justify-content: center;
		flex-direction: column;
		font-size: 20px;
		transition: .5s;
	}

	.navClose {

		position: absolute;
		z-index: 11;
		top: -10px;
		right: 0px;
		font-size: 20px;
	}

	nav.active .navMenu ul {
		right: 2.5%;
		transition: .5s;
	}

	nav.active .navClose {
		display: block !important;

	}

	.faq {
		flex-direction: column;
	}

	.faqSection {
		width: 100%;
	}

	.footerContent {
		flex-direction: column;
	}

	.footerLogo {
		width: 100%;
	}

	.projectSwiper .swiper-slide {
		width: 110%;
		padding: 20px 20px;
	}
}

/*Iphone 10*/
@media (orientation: portrait) and (max-height: 812px) {}

@media (orientation: portrait) and (max-height: 736px) {}

@media (orientation: portrait) and (max-height: 667px) {}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {}