@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;900&family=Noto+Sans+KR:wght@200;300;400;500;600;700;900&family=Noto+Sans+SC:wght@200;300;400;500;600;700;900&family=Noto+Sans+TC:wght@200;300;400;500;600;700;900&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
	font-family: 'Noto Sans', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans TC', Sans !important;
}

/* 底色 */
body {
	background-color: #fff;
	position: relative;
}

/* 所有圖片設定 */
img {
	width: 100%;
	vertical-align: bottom;
}

/* 所有連結裝飾消失 */
a {
	text-decoration: none;
}

/* 容器 */
.wrap {
	width: 90%;
	max-width: 1440px;
	margin: auto;
}

section {
	margin-bottom: 64px;
}

h2 {
	font-size: 36px;
	font-weight: 900;
	line-height: 130%;
	text-align: center;
	margin-bottom: 16px;
}

@media (min-width: 768px) {

	h2 {
		font-size: 48px;
		font-weight: 900;
		line-height: 130%;
		text-align: center;
	}
}

.PC {
	display: none;
}

@media (min-width: 768px) {
	.mobile {
		display: none;
	}

	.PC {
		display: block;
	}
}

/* <<<<<<<<<<<HEADER>>>>>>>>>>> */
header {
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 99;
}

header.bgc {
	background-color: #fff;
	box-shadow: 0px -4px 9px 2px rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: 0px -4px 9px 2px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px -4px 9px 2px rgba(0, 0, 0, 0.12);
}

header .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px 0px;
	position: relative;
	box-sizing: border-box;
}

/* HEADER LOGO*/
/* <<<<<<<<<<<<<<<<依照menu長度調整 >>>>>>>>>>>>*/
header .logo .pic {
	max-width: 200px;
}

/* HEADER HAMBURGER*/
header .hamburger {
	cursor: pointer;
}

/* HEADER MENU*/
header .menu {
	display: none;
	list-style: none;
	/* padding:16px 0 32px; */
}

header .menu.open {
	display: block;
	width: 100%;
	overflow: hidden;
	background-color: #f5f5f5;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	position: absolute;
	top: 100%;
	left: 0;
	box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-webkit-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-moz-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
}

header .menu .menu_item {
	padding: 24px 0 24px 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	cursor: pointer;
	box-sizing: border-box;
}

header .menu .menu_item:hover {
	color: #fff;
	background-color: #0068B6;
}

header .menu .menu_item.active {
	color: #fff;
	background-color: #0068B6;
}

.banner {
	margin-bottom: 64px;
}

/* 特色功能區 */
.feature .wrap {
	position: relative;
}

.feature .wrap aside {
	display: none;
}

.feature video {
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.09);
}

.feature .item {
	margin-bottom: 80px;
	padding-top: 16px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}

.feature .item .txt {
	padding: 0 20px;
	margin-top: 16px;
	display: flex;
	align-items: flex-start;
}

.feature .item .txt img {
	width: 30%;
	aspect-ratio: 1/1;
	max-width: 80px;
	max-height: 80px;
	border-radius: 999px;
	overflow: hidden;
	margin-right: 16px;
	flex-shrink: 0;
}

.feature .item .txt h3 {
	font-size: 28px;
	font-weight: 700;
	line-height: 130%;
}

.feature .item .txt p {
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
	margin-top: 8px;
}

.feature .item .txt p a {
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
	color: #F39444;
	transition: 0.3s;
}

.feature .item .txt p a:hover {
	color: #A24927;
}

.feature .item .pic {
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.1);
}


@media (min-width: 768px) {
	section.feature {
		margin-bottom: 84px;
	}

	.feature .wrap {
		display: flex;
	}

	.feature .item {
		flex-direction: column;
	}

	.feature .item:last-child {
		margin-bottom: 0;
	}

	.feature .item .txt {
		margin-top: 0px;
		margin-bottom: 16px;
	}

	.feature .wrap aside {
		display: block;
		height: 100%;
		position: sticky;
		top: 20px;
		padding: 0 36px 0 0;
	}

	.feature .wrap aside span {
		display: block;
		font-size: 28px;
		font-weight: 700;
		padding: 12px 0px 18px;
	}

	.feature .wrap aside li {
		white-space: nowrap;
		font-size: 18px;
		font-weight: 300;
		line-height: 150%;
		cursor: pointer;
		padding: 10px 20px;
		margin-bottom: 4px;
		border-radius: 99px;
		transition: 0.3s;
	}

	.feature .wrap aside li:hover {
		background-color: #ffba8c;
	}

	.feature .wrap aside li.active {
		background-color: #F39444;
		color: #fff;
		font-weight: 500;
	}
}

.moreinfo {
	background-color: rgb(238, 238, 238);
	padding: 48px 0;
	margin-bottom: 0;
}

.moreinfo .item {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 1px 115px 6px rgba(0, 0, 0, 0.1);
}


@media (min-width: 768px) {
	.moreinfo .item {
		width: 80%;
		margin: auto;
	}
}

/* footer */
footer {
	background-color: #f3f3f3;
	padding: 20px 0;
	margin: 0 auto;
}

footer ul {
	display: flex;
	justify-content: center;
}

footer ul li {
	aspect-ratio: 1 / 1;
	max-width: 48px;
}

footer p {
	text-align: center;
	margin-top: 8px;
	font-size: 12px;
	color: #696969;
}

@media (min-width: 768px) {

	/* HEADER HAMBURGER*/
	.hamburger {
		display: none;
	}

	/* HEADER MENU*/
	header .menu {
		display: flex;
	}

	header .menu .menu_item {
		cursor: pointer;
	}

	header .menu .menu_item:not(:last-child) {
		margin-right: 12px;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
	}

	header .menu .menu_item:hover {
		color: #0068B6;
		background-color: transparent;
	}

	header .menu .menu_item.active {
		color: #0068B6;
		background-color: transparent;
	}

	header .logo .pic {
		max-width: 280px;
	}
}

.newplatform {
	position: fixed;
	right: 0;
	bottom: 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F39444;
	padding: 16px 12px;
	gap: 8px;
	border-top-left-radius: 999px;
	border-bottom-left-radius: 999px;
	box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-webkit-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	-moz-box-shadow: 0px 6px 16px 0px rgba(176, 176, 176, 0.32);
	transition: 0.3s;
	opacity: 0.9;

    /* -webkit-animation-name: breathingLight;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite; */
}

/* 修正動畫語法錯誤：移除引號 */
/* @-webkit-keyframes breathingLight {
    from {
        background-color: #F39444;
        -webkit-box-shadow: 0 0 5px #ccc;
    }
    50% {
        background-color: #f9a764;
        -webkit-box-shadow: 0 0 10px #e68130;
    }
    to {
        background-color: #ee8835;
        -webkit-box-shadow: 0 0 5px #ccc;
    }
} */
.newplatform:hover {
	opacity: 1;
	padding-right:22px;
}
.newplatform .pic {
	width: 50px;
	aspect-ratio: 1/1;
}
.newplatform .txt p {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 120%;
}