@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,600,700,300,800);

:root {
	--mascot-primary: #11c1c7;
	--mascot-label: #07b3bb;
	--mascot-mascotnav: #24bab5;
	--mascot-tag: #08c7d0;

	--mascot-primary-soft: #e6f9fa;
	--mascot-gray-1: #f2f2f2;
	--mascot-gray-2: #efefef;
	--mascot-text: #202020;
	--mascot-footer: #0d585a;

	--container-max: 1180px;
	--mascot-banner-image: url('img/lale-mascot-banner.png');
	--mascot-banner-image-mobile: url('img/lale-mascot-banner-mobile.png');
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	cursor: url('imgs/mouseCursor/hover.ico'), auto;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

.mascot-page {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	color: var(--mascot-text);
}

.mascot-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

.uline-b {
	border-bottom: 1px solid #168f8e;
}

.mascot-page p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin: 0;
}

.mascot-banner-title {
	font-size: 84px;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--mascot-primary);
	margin: 0;
}

.mascot-banner-subtitle {
	font-size: 40px;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--mascot-primary);
	margin: 10px 0 0 0;
}

.mascot-about-title {
	font-size: 32px;
	line-height: 1.4;
	font-weight: 500;
	margin: 0 0 16px 0;
}

.mascot-character-item-name {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 500;
	color: #202020;
	text-align: center;
}

.mascot-character-item-name span {
	font-weight: 500;
	color: #202020;
}

.mascot-name {
	font-size: 24px;
	line-height: 1.6;
	font-weight: 500;
	letter-spacing: 1.8px;
	margin: 0 0 16px 0;
	color: #202020;
}

/* =======================
   Top Nav
========================== */
.mascot-nav {
	font-family:
		Trebuchet MS,
		Microsoft JhengHei,
		Arial,
		sans-serif;
	position: sticky;
	top: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--mascot-mascotnav);
}

.mascot-nav-brand {
	font-size: 16px;
	color: #fff;
	padding: 0 2%;
	text-decoration: none;
}

.mascot-nav-hamburger {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	padding: 9px 45px;
}

.mascot-nav-hamburger:hover {
	color: #0d585a;
}

/* =============================
   Desktop Expand Menu
================================ */
.mascot-expand-menu {
	background: var(--mascot-mascotnav);
	display: none;
}

#mascotExpandMenu {
	padding: 0px 2%;
}

#mascotExpandMenu::after {
	content: '';
	display: block;
	clear: both;
}
#mascotExpandMenu ul.mascot-menu-right {
	margin: 0;
	padding: 0px 20px 10px 0px;
	list-style: none;

	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

#mascotExpandMenu ul.mascot-menu-right > li {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 9px;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
#mascotExpandMenu ul.mascot-menu-right > li:hover {
	background-color: #168f8e;
}

#mascotExpandMenu ul.mascot-menu-right > li > a {
	display: block;
	padding: 5px 10px;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
}
#mascotExpandMenu ul.mascot-menu-right > li.mascot-menu-right-google {
	width: auto;
}

/* ========================
banner
=========================== */
.mascot-banner {
	width: 100%;
	display: flex;
	position: relative;
	overflow: hidden;
}

.mascot-banner-bg {
	flex: 0 0 140vh;
	min-width: 0;
	background-image: var(--mascot-banner-image);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right top;
}

.mascot-container {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.mascot-banner-left {
	width: 100%;
}

.mascot-banner-title-group {
	display: flex;
	flex-direction: column;
	align-items: end;
	white-space: nowrap;
	transform: translateX(60px);
}

.mascot-banner > .mascot-container {
	width: 40%;
	height: 65vh;
	max-width: none;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mascot-banner > .mascot-banner-bg {
	width: 60%;
}

/* ========================
   About
=========================== */
.mascot-about {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 42px 24px 10px;
}

.mascot-about-desc {
	max-width: 1400px;
	margin: 0 auto;
}

.mascot-character-list {
	background: var(--mascot-gray-1);
	padding: 48px 24px;
}

.mascot-character-list-wrap {
	width: fit-content;
	margin: 0 auto;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: max-content;
	align-items: start;
	column-gap: 86px;
}

.mascot-character-item {
	text-decoration: none;
	color: var(--mascot-text);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.mascot-character-item-avatar {
	width: 88px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mascot-character-item-avatar img {
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.mascot-section {
	padding: 64px 24px;
	background: #fff;
}

.mascot-section-wrap {
	max-width: var(--container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 42px;
	align-items: center;
}

.mascot-section-wrap.is-reverse {
	grid-template-columns: 1fr 360px;
}

.mascot-character-image-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mascot-character-image-box img {
	width: min(100%, 320px);
	height: auto;
}

#shemmie .mascot-character-image-box img {
	width: min(100%, 250px);
}

#talkie .mascot-character-image-box img {
	width: min(100%, 210px);
}

#sweet .mascot-character-image-box img {
	width: min(100%, 380px);
}

.mascot-card {
	border-radius: 16px;
	padding: 40px;
}

.mascot-card-blue {
	background: var(--mascot-primary-soft);
}

.mascot-card-gray {
	background: var(--mascot-gray-2);
}

.mascot-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 8px;
	border-radius: 8px;
	background: var(--mascot-label);
	color: #fff;
	width: fit-content;
	margin-bottom: 10px;

	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.mascot-info-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.mascot-info-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 12px;
}

.mascot-info-key {
	color: #444;
	font-weight: 700;
}

.mascot-info-value {
	color: #333;
}

.mascot-hashtags {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mascot-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--mascot-tag);
	border-radius: 999px;
	color: var(--mascot-tag);
	background: rgba(255, 255, 255, 0.35);
	white-space: nowrap;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	padding: 0px 14px;
}

.mascot-footer {
	background: var(--mascot-footer);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.mascot-footer-bg {
	position: absolute;
	inset: 0;
	background-image: url('img/mascot-footer-banner.png');
	background-size: cover;
	background-position: center;
	opacity: 0.55;
}

.mascot-footer-content {
	position: relative;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 54px 24px;

	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.mascot-footer a {
	color: #08c7d0;
	text-decoration: none;
}

.mascot-footer a:hover {
	text-decoration: underline;
}

@media (min-width: 1900px) {
	.mascot-banner-title-group {
		transform: translateX(80px);
	}
}
/* <=1600px：改上字下圖 */
@media (max-width: 1600px) {
	:root {
		--mascot-banner-image: var(--mascot-banner-image-mobile);
	}

	.mascot-banner {
		flex-direction: column;
		align-items: center;
	}

	.mascot-banner > .mascot-banner-bg {
		flex: 0 0 70vh;
		width: 100%;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.mascot-banner > .mascot-container {
		height: 240px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.mascot-banner-left {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.mascot-banner-title-group {
		background: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		white-space: nowrap;
		transform: none;
	}

	#mascotExpandMenu {
		padding: 30px 0;
		background: var(--mascot-mascotnav);
	}

	#mascotExpandMenu::after {
		content: '';
		display: block;
		clear: both;
	}

	#mascotExpandMenu ul.mascot-menu-right {
		margin: 0 auto;
		padding: 0 24px 12px;
		list-style: none;

		width: min(100%, 500px);
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 24px;
		justify-items: stretch;
		align-items: stretch;
		text-align: center;
	}

	#mascotExpandMenu ul.mascot-menu-right > li {
		width: auto;
		margin: 0;
		padding: 0;

		border: 2px solid #fff;
		border-radius: 9px;
		background: transparent;
		box-sizing: border-box;
		cursor: pointer;
		transition: background-color 0.2s ease;
	}

	#mascotExpandMenu ul.mascot-menu-right > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		width: 100%;
		padding: 5px 0px;
	}

	#mascotExpandMenu ul.mascot-menu-right:nth-of-type(1) > li.mascot-menu-right-google {
		grid-column: auto;
	}
	#mascotExpandMenu ul.mascot-menu-right + ul.mascot-menu-right {
		margin-top: 30px;
	}
}
@media (max-width: 768px) {
	#mascotExpandMenu {
		padding: 10px 0;
	}

	.mascot-about {
		padding: 20px 20px 24px;
	}

	.mascot-character-list {
		padding: 26px 16px;
	}

	.mascot-character-list-wrap {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		grid-auto-flow: row;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px 20px;
		justify-items: center;
		align-items: start;
		column-gap: normal;
	}

	.mascot-character-item {
		gap: 10px;
	}

	.mascot-character-item-avatar,
	.mascot-character-item-avatar img {
		width: 68px;
		height: 68px;
	}

	.mascot-character-item-name {
		font-size: 16px;
	}

	.mascot-section {
		padding: 40px 16px;
	}

	.mascot-section-wrap,
	.mascot-section-wrap.is-reverse {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
	}

	.mascot-character-image-box {
		position: relative;
		z-index: 2;
		margin-bottom: -55px;
	}

	#money .mascot-character-image-box img {
		width: min(100%, 230px);
	}

	#shemmie .mascot-character-image-box img {
		width: min(100%, 200px);
	}

	#talkie .mascot-character-image-box img {
		width: min(100%, 140px);
	}

	#sweet .mascot-character-image-box img {
		width: min(100%, 250px);
		margin-bottom: 25px;
	}

	.mascot-card {
		order: 2;
		width: 100%;
		max-width: 560px;
		padding: 20px 18px;
	}

	.mascot-info-row {
		grid-template-columns: 68px 1fr;
		gap: 10px;
	}

	.mascot-hashtags {
		display: grid;
		grid-template-columns: repeat(2, max-content);
		gap: 12px;
		justify-content: center;
	}

	.mascot-tag {
		font-size: 14px;
		line-height: 1.4;
	}

	.mascot-footer-content {
		max-width: none;
		width: 100%;
		padding: 36px 20px;
		text-align: left;
	}

	.mascot-banner {
		background: #fff;
		flex-direction: column;
		align-items: center;
	}

	.mascot-banner > .mascot-banner-bg {
		flex: 0 0 40vh;
		width: 100%;
		order: 2;
	}

	.mascot-banner > .mascot-container {
		flex: 0 0 20vh;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		order: 1;
		width: 100%;
	}

	.mascot-banner-left {
		padding: 10% 10% 0 10%;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.mascot-banner-title-group {
		background: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		white-space: nowrap;
	}

	.mascot-banner-bg {
		background-color: transparent;
		background-image: var(--mascot-banner-image);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		display: flex;
		justify-content: center;
		margin-top: 18px;
		padding: 0;
	}

	.mascot-banner-subtitle {
		font-size: 32px;
	}

	.mascot-banner-title {
		font-size: 40px;
		line-height: 140%;
	}
}

@media (max-width: 480px) {
	#mascotExpandMenu ul.mascot-menu-right > li.mascot-menu-right-google > a {
		width: 100%;
		white-space: normal;
		line-height: 30px;
	}
	.mascot-banner > .mascot-banner-bg {
		flex: 0 0 30vh;
		width: 100%;
		background-size: cover;
	}
}

@media (max-width: 380px) {
	.mascot-banner-title {
		font-size: 32px;
	}

	.mascot-banner-subtitle {
		font-size: 20px;
	}

	.mascot-banner-bg {
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.mascot-info-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.mascot-banner > .mascot-banner-bg {
		height: 40vh;
	}
}
