* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family:
		Arial,
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	font-size: 16px;
	color: #000000;
}

a {
	text-decoration: none;
	display: block;
	color: #000000;
}

img{
	width: 100%;
	height: auto;
	vertical-align: top;
}

.container {
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 1024px)  {
	.container {
		min-width: 960px;
	}
}


/*=== 版頭 & 版尾 ===*/
header {
	width: 100%;
}

.logo {
	width: 100%;
	background-color: #FFB01C;
	padding: 12px;
	margin: 0 auto;
}

.logo a {
	width: 135px;
}

footer {
	width: 100%;
	padding: 16px 0 8px;
	margin: 0 auto;
	font-size: 14px;
	text-align: center;
}


/*=== 圖片 & 影片 ===*/
.pc {
	display: none;
}

.pc_event {
	width: 100%;
	margin: auto;
}

.pc_bg{
	background-attachment: center;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.video {
	margin: auto;
	padding: 100px 0;
}

.video_yt {
	position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.video_yt iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile {
	width: 100%;
	margin: auto;
}

.mobile .video {
	padding: 0;
}

@media (min-width: 1024px)  {
	.pc {
		display: block;
		margin: auto;
	}

	.mobile {
		display: none;
	}
}


/*=== 標題 ===*/
.title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	padding:20px 0;
}


/*=== 產品 ===*/
.product {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 960px;
	margin: 24px auto 32px;
}

.product_list {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
}

.product_list_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	width: calc( 50% - 36px );
	margin-top: 12px;
}

.product_list_item img {
	width: 100%;
	border-radius: 8px;
}

.product_list_item h3 {
	font-size: 16px;
	font-weight: bold;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.product_list_item p {
	font-size: 14px;
	color: #969696;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.price {
	font-size: 20px;
	color: #FF6D2D;	
	font-weight: bold;
}

.price span {
	font-size: 15px;
	margin-right: 6px;
}

.more {
	display: inline-block;
	padding: 8px 20px;
	background-color: rgba(255, 109, 45, 0.16);
	border-radius: 6px;
	border: 1px solid #FF6D2D;
	color: #FF6D2D;
	font-size: 15px;
}

.more:hover {
	background-color: #FF6D2D;
	color: #FFFFFF;
}

@media (min-width: 1024px)  {
	.product_list {
		justify-content: space-between;
	}

	.product_list_item {
		width: calc( 25% - 18px );	
		margin-bottom: 0;
	}
}

/*=== 注意事項 ===*/
.info {
	width: calc( 100% - 40px );
	padding: 8px 0 24px;
	border-radius: 8px;
	margin: 0 auto;
}

.info ol {
	width: 80%;
	margin: 0 auto;
}

.info li{
	font-size: 14px;
	margin-bottom: 10px;
}

.info a {
	display: inline-block;
	color: #FF6D2D;
}

.info a:hover {
	color: #CC3D00;
}

@media (min-width: 1024px)  {
	.info {
		width: 100%;
		max-width: 960px;
	}
	.info ol {
		width: 80%;
	}
}