.event_title {
	margin: 0 auto 30px;
	display: block;
}

.topic {
	background-color: #ad8373;
	color: #fff;
	padding: 40px 60px 10px;
	margin: 10px 0;
	border-radius: 21px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.topic {
		padding: 5.2vw 4vw 1.8vw;
	}
}

@media screen and (max-width: 480px) {
	.topic {
		padding: 6vw 3.4vw 1.8vw;
	}
}

.topic h2 {
	font-size: 44px;
	font-weight: 900;
	line-height: 1;
}

@media screen and (max-width: 767px) {
	.topic h2 {
		font-size: 5.8vw;
	}
}

.topic h2 strong {
	transform: scale(1, 1.8);
	display: inline-block;
	top: -16px;
	position: relative;
}

@media screen and (max-width: 480px) {
	.topic h2 strong {
		top: -10px;
	}
}

.topic h2 span {
	font-size: 30px;
	top: -3px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.topic h2 span {
		font-size: 3.6vw;
	}
}

@media screen and (max-width: 480px) {
	.topic h2 span {
		top: 0;
	}
}

.topic h3 {
	font-size: 21px;
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.topic h3 {
		font-size: max(3.4vw, 14px);
	}
}

.people {
	line-height: 1.7;
	display: flex;
	justify-content: center;
	gap: 10%;
	padding: 40px 0 60px;
	flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
	.people {
		gap: 0;
		justify-content: space-between;
	}
}

.people_box {
	width: 30%;
	padding: 0 0 60px;
}

@media screen and (max-width: 576px) {
	.people_box {
		width: 38%;
	}
}

@media screen and (max-width: 480px) {
	.people_box {
		width: 46%;
	}
}

@media screen and (max-width: 400px) {
	.people_box {
		width: 100%;
	}
}

.people_img {
	max-width: 100%;
	width: auto;
	margin: 0 auto 10px;
	border-radius: 50%;
	display: block;
}

.people_name {
	font-weight: bold;
	color: #966152;
	font-size: 21px;
}

@media screen and (max-width: 480px) {
	.people_name {
		font-size: 4.4vw;
	}
}

.people_title {
	font-weight: bold;
	padding: 0 0 10px;
	margin: 0 0 10px;
	border-bottom: 1px solid #eee;
}

.people_text {
	color: #444;
	font-size: 16px;
	font-weight: 400;
	text-align: justify;
}

@media screen and (max-width: 480px) {
	.people_text {
		font-size: max(3.4vw, 14px);
	}
}

.event_intro {
	max-width: 1000px;
	margin: auto;
	color: #444;
	font-size: 20px;
	line-height: 1.7;
	text-align: justify;
}

@media screen and (max-width: 767px) {
	.event_intro {
		font-size: max(2.8vw, 16px);
	}
}

.event_intro h2 {
	font-weight: bold;
	color: #966152;
}

.event_title {
	margin: auto;
	color: #966152;
	font-size: 42px;
	font-weight: 900;
	padding: 30px 60px 22px;
	margin: 30px auto 30px;
	border-top: 1px dotted #966152;
}

@media screen and (max-width: 767px) {
	.event_title {
		font-size: 5.8vw;
	}
}

.event_topic {
	margin: auto;
	color: #966152;
	font-size: 28px;
	font-weight: 900;
	padding: 30px 60px 22px;
	margin: 30px auto 30px;
}

@media screen and (max-width: 767px) {
	.event_topic {
		font-size: 3.8vw;
	}
}

.event_list {
	margin: auto;
	color: #966152;
	font-size: 25px;
	font-weight: 900;
	background-color: #fef0ec;
	padding: 30px 60px 22px;
	border-radius: 21px;
	margin: 10px auto 30px;
}

@media screen and (max-width: 767px) {
	.event_list {
		padding: 20px 20px 18px;
		font-size: max(3.8vw, 18px);
		margin: 30px auto 60px;
	}
}

@media screen and (max-width: 480px) {
	.event_list {
		padding: 20px 3.4vw 18px;
	}
}

.event_list dt {
	position: relative;
	padding: 0 0 8px 34px;
}

@media screen and (max-width: 767px) {
	.event_list dt {
		padding: 0 0 8px 28px;
	}
}

.event_list b {
	position: absolute;
	background-color: #b4627b;
	color: #fff;
	display: inline-block;
	border-radius: 30px;
	width: 24px;
	height: 24px;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	font-style: normal;
	top: 8px;
	left: 0;
}

@media screen and (max-width: 767px) {
	.event_list b {
		width: 20px;
		height: 20px;
		top: 4px;
	}
}

.event_list b:after {
	content: "";
	border: solid #fff;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: 0 0 0 5px;
	position: relative;
	top: 2px;
	left: -4px;
	-webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
	.event_list b:after {
		border-width: 0 1px 1px 0;
		padding: 2px;
		top: -2px;
		left: -4px;
	}
}

.getfree {
	font-size: 2em;
	font-weight: 900;
	color: #fff;
	background-color: #b8345a;
	padding: 10px 60px;
	margin: 0 auto 60px;
	display: table;
	border-radius: 10px;
}

.getfree:hover {
	color: #fff;
	background-color: #671d57;
}

.event_p {
	margin: 10px auto;
	display: table;
}

.event_p img {
	width: 50%;
	display: inline-block;
}

@media screen and (max-width: 480px) {
	.event_p img {
		width: 100%;
	}
}

.exhibitor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px 0 60px;
}

.exhibitor a {
	position: relative;
	flex: 0 1 30%;
	/* 每個項目大約占 30%的寬度 */
	box-sizing: border-box;
	/* 確保 border 和 padding 不會影響宽度 */
	margin: 10px;
	/* 為每個項目之間添加一些間距 */
	text-align: center;
	/* 將文字居中 */
}

@media screen and (max-width: 768px) {
	.exhibitor a {
		flex: 0 1 45%;
	}
}

@media screen and (max-width: 535px) {
	.exhibitor a {
		flex: 0 1 auto;
	}
}

.exhibitor h3 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.2em;
	line-height: 1.4;
	font-weight: 900;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	/* 設置文字陰影 */
	white-space: nowrap;
}

.titleword {
	margin-top: 30px;
	margin-bottom: 10px;
	padding-top: 5px;
	text-align: center;
	display: table;
	margin: 30px auto 10px;
}

.exhibitor_brochure {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	margin: 24px auto 60px;
}

.exhibitor_brochure h3 {
	font-size: 1.6em;
	line-height: 1.4;
	color: white;
	font-weight: 900;
	background-color: #ad8373;
	border-radius: 20px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.exhibitor_brochure img {
	width: 100%;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.titleword h1 {
	font-size: 1.8em;
	font-weight: 900;
	color: #b8345a;
	line-height: 1.4;
	padding: 0 30px;
}

.pink_content .pink_hr {
	border: 0;
	border-top: 2px solid #b8345a;
	margin-top: 3px;
	text-align: center;
}

.traffic h1 {
	font-size: 1.5em;
	font-weight: 900;
	color: #b8345a;
	padding: 20px 0 5px;
	border-bottom: 2px solid #b8345a;
	margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
	.traffic h1 {
		font-size: 1.3em;
	}
}

.traffic h3 {
	font-size: 1.2em;
	font-weight: 900;
	color: #b8345a;
	padding: 15px 0;
}

@media screen and (max-width: 768px) {
	.traffic h3 {
		font-size: 1.1em;
	}
}

.traffic p {
	font-size: 0.85em;
	padding: 0 0 10px;
}

@media screen and (max-width: 768px) {
	.traffic p {
		font-size: 0.84em;
	}
}

.traffic b {
	color: #000;
	font-weight: bold;
}

.map-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.booknow {
	padding: 60px 0;
}

.booknow b,
.booknow strong {
	font-weight: bold;
	color: #000;
	vertical-align: initial;
}

.booknow img {
	max-width: 100% !important;
	width: auto !important;
	display: block !important;
}