:root {
	--font-size-title: clamp(1.5rem, 3vw + 1rem, 4.375rem);
	--font-size-body: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
	--font-size-button: clamp(0.8125rem, 0.3vw + 0.7rem, 1rem);
	--spacing-gap: clamp(0.5rem, 1vw, 0.75rem);
	--spacing-padding-y: clamp(0.5rem, 1vw, 0.625rem);
	--spacing-padding-x: clamp(1rem, 2vw, 1.5625rem);
	--spacing-section: clamp(1.25rem, 2vw, 1.875rem);
	--width-container: clamp(90%, 41.875rem, 100%);
	--color-text-primary: #191C21;
	--color-text-secondary: #6F747D;
	--color-bg-default: rgba(25, 28, 33, 0.03);
	--color-bg-active: #191C21;
	--color-text-active: #fff;
}

.topModule {
	position: relative;
	overflow: visible;
	background: #f8fcfd;
}

.topModule .topImg {
	width: 100vw;
	height: 120vh;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

.topModule .topImgM {
	display: none;
	width: 100vw;
	object-fit: cover;
	position: absolute;
	right: 0;
	bottom: 0;
}

@keyframes floatUpDown {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.topLogo{
	width: clamp(200px, 25vw, 372px);
	height: clamp(225px, 28vw, 419px);
	position: absolute;
	right: 20%;
	top: clamp(10%, 15vh, 20%);
	z-index: 2;
	animation: floatUpDown 3s ease-in-out infinite;
}

.topModule .topCenter {
	position: relative;
	height: 100vh;
	/* display: flex;
	align-items: center;
	justify-content: center; */
	z-index: 1;
}

.topModule .topCenter .topCenter_left {
	width: var(--width-container);
	max-width: 41.875rem;
	padding: 0 clamp(1rem, 3vw, 0);
	padding-top: 20vh;
	position: relative;
}

.topModule .topCenter .topCenter_left .topCenter_left_top {
	color: var(--color-text-primary);
	font-size: var(--font-size-title);
	font-style: normal;
	font-weight: 700;
	line-height: 115%;
	letter-spacing: clamp(-0.05rem, -0.1vw, -0.0875rem);
}

.topModule .topCenter .topCenter_left .topCenter_left_center {
	padding: var(--spacing-section) 0;
	color: var(--color-text-secondary);
	font-size: var(--font-size-body);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom {
	display: flex;
	gap: var(--spacing-gap);
	flex-wrap: wrap;
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div {
	border-radius: 999px;
	padding: var(--spacing-padding-y) var(--spacing-padding-x);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-bg-default);
	color: var(--color-text-secondary);
	font-size: var(--font-size-button);
	font-weight: 400;
	position: relative;
	overflow: hidden;
	transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg-active);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div:hover::before,
.topModule .topCenter .topCenter_left .topCenter_left_bottom > div.active::before {
	transform: scaleX(1);
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div:hover {
	color: var(--color-text-active);
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div.active {
	color: var(--color-text-active);
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div svg {
	display: block;
	width: 22px;
	height: 15px;
}

.topModule .topCenter .topCenter_left .topCenter_left_bottom > div svg path {
	fill: currentColor;
}

@keyframes slideIn {
	from {
		transform: translateX(-6px) scale(0.8);
	}
	to {
		transform: translateX(0) scale(1);
	}
}


.propertyList {
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100vw;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.80) 50%, rgba(255, 255, 255, 0.95) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	padding: clamp(15px, 2vw, 20px) clamp(20px, 3vw, 35px);
	padding-bottom: 0;
	gap: 0;
	z-index: 2;
	border-top: 1px solid rgba(255,255,255,0.7);
	box-shadow: inset 0 10px 20px -10px rgba(0, 0, 0, 0.1);
}

.propertyList .property {
	flex: 1;
	border-right: 1.5px solid rgba(25, 28, 33, 0.1);
}

.propertyCenter {
	display: flex;
	width: 100%;
	max-width: 462px;
	padding: clamp(15px, 3vw, 25px) clamp(25px, 4vw, 45px);
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: clamp(5px, 1.5vw, 10px);
}

.propertyCenter_title {
	color: var(--color-text-primary);
	font-size: clamp(14px, 1.5vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: clamp(20px, 2.5vw, 24px);
}

.propertyCenter_title span {
	color: #000;
	font-size: clamp(18px, 2vw, 20px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.propertyCenter_content {
	color: var(--color-text-secondary);
	font-size: clamp(12px, 1.3vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.propertyCenter_button{
	cursor: pointer;
	line-height: 1;
}

.propertyCenter_button a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.propertyCenter_button a:hover {
	color: #F50;
}

.propertyCenter_button a span:hover {
	color: #F50;
}

.propertyCenter_button a svg {
	transition: transform 0.3s ease;
}

.propertyCenter_button a:hover svg {
	transform: translateX(4px);
}

.propertyCenter_button span{
	color: inherit;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}


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

.centerBgImg{
	width: 100%;
	object-fit: cover;
	position: absolute;
}

.centerBox {
	position: relative;
	z-index: 1;
	padding-top: clamp(100px, 15vw, 200px) !important;
}

.centerBox_title {
	width: 100%;
	max-width: 497px;
	margin-bottom: clamp(30px, 5vw, 75px);
}

.centerBox_title_text {
	color: var(--color-text-primary);
	font-size: clamp(2rem, 6vw, 3.375rem);
	font-style: normal;
	font-weight: 400;
	line-height: 115%;
	letter-spacing: clamp(-0.5px, -0.1vw, -1.08px);
	margin-bottom: clamp(15px, 2vw, 20px);
}

.centerBox_title_content {
	color: var(--color-text-secondary);
	font-size: clamp(14px, 1.5vw, 16px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.centerBox_items {
	width: 100%;
	/*padding: clamp(25px, 4vw, 40px) 0;*/
	padding: .5rem 1rem;
	display: flex;
	border-radius: clamp(8px, 1vw, 10px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.85) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255,255,255,0.7);
	gap: clamp(15px, 2vw, 0);
}

.centerBox_item {
	display: flex;
	padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 60px);
	flex-direction: column;
	align-items: center;
	gap: clamp(5px, 1.5vw, 10px);
	flex: 1;
}

.centerBox_item_icon {
	width: clamp(70px, 8vw, 70px);
	height: clamp(80px, 10vw, 120px);
	object-fit: contain;
}

.centerBox_item_title {
	color: var(--color-text-primary);
	text-align: center;
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
}

.centerBox_item_content {
	color: #8E9198;
	text-align: left;
	font-size: clamp(12px, 1.3vw, 14px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

.beadBox {
	width: clamp(400px, 60vw, 829px);
	position: absolute;
	top: 0;
	right: clamp(20px, 5vw, 100px);
}

.beadBoxImg {
	width: 100%;
	height: auto;
}

.beadBoxBtn {
	position: absolute;
	padding: clamp(6px, 0.8vw, 8px) clamp(20px, 2.5vw, 25px);
	border-radius: 100px;
	background: linear-gradient(90deg,#F50 0%,#FF9F63 100%);
	top: 0;
	border: 1px solid #F50;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: clamp(16px, 2vw, 20px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	animation: shake 4s ease-in-out infinite;
}

@keyframes shake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-8px);
	}
	75% {
		transform: translateX(8px);
	}
}

.beadBoxBtn1 {
	top: clamp(80px, 10vw, 120px);
	right: clamp(80px, 10vw, 130px);
	animation-delay: 0s;
}

.beadBoxBtn2 {
	top: clamp(140px, 15vw, 200px);
	left: clamp(50px, 6vw, 75px);
	animation-delay: 0.5s;
}

.beadBoxBtn3 {
	top: clamp(220px, 25vw, 300px);
	right: 0;
	animation-delay: 1s;
}

.beadBoxBtn4 {
	top: clamp(230px, 26vw, 310px);
	left: 0;
	animation-delay: 1.5s;
}


.dynamicModule{
	position: relative;
	width: 100vw;
	min-height: 100vh;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 10%);
}

.dynamicCenter {
	padding-top: clamp(50px, 15vw, 150px) !important;
	padding-bottom: 155px !important;
	display: flex;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: flex-start;
}

.dynamicBox {
	flex: 1;
}

.dynamicBox_title {
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);

}

.dynamicBox_title_text {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #191C21;
	line-height: 1.3;
}

.dynamicBox_title_text span {
	display: block;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	font-weight: 400;
	color: #6F747D;
	margin-top: 0.5rem;
}

.dynamicBox_title_more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	color: #6F747D;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	transition: color 0.3s ease;
}

.dynamicBox_title_more:hover {
	color: #191C21;
}

.dynamicBox_title_more svg {
	flex-shrink: 0;
}

.dynamicBox_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
	list-style: none;
}

.dynamicBox_item {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform 0.3s ease;
	height: 100%;
}

.dynamicBox_item a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.dynamicBox_item:hover {
	transform: translateY(-4px);
}

.dynamicBox_item img {
	width: 100%;
	height: clamp(10rem, 20vw, 14rem);
	border-radius: 8px;
	margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
	object-fit: cover;
}

.dynamicBox_item_title {
	font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
	font-weight: 700;
	color: #191C21;
	line-height: 1.4;
	margin-bottom: clamp(0.5rem, 1vw, 0.5rem);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	min-width: 0;
}

.dynamicBox_item_content {
	font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
	color: #6F747D;
	line-height: 1.5;
	margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dynamicBox_item_time {
	font-size: clamp(0.75rem, 1.2vw, 0.875rem);
	color: #6F747D;
}

.announcementBox {
	flex: 0 0 clamp(20rem, 30vw, 28rem);
}

.announcementBox_title {
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.announcementBox_title_text {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #191C21;
	line-height: 1.3;
}

.announcementBox_title_text span {
	display: block;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	font-weight: 400;
	color: #6F747D;
	margin-top: 0.5rem;
}

.announcementBox_title_more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	color: #6F747D;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	transition: color 0.3s ease;
}

.announcementBox_title_more:hover {
	color: #191C21;
}

.announcementBox_title_more svg {
	flex-shrink: 0;
}

.announcementBox_list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: clamp(0.75rem, 1.5vw, 1rem);
}

.announcementBox_item {
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.08);
	cursor: pointer;
	height: clamp(5rem, 10vw, 6.1rem);
	display: flex;
	flex-direction: column;
}

.announcementBox_item a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(1rem, 2vw, 1.25rem);
	text-decoration: none;
	color: inherit;
	flex: 1;
}

.announcementBox_item_title {
	max-width: 280px;
	font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
	font-weight: 700;
	color: #191C21;
	line-height: 1.4;
	margin-bottom: clamp(0.5rem, 1vw, 0.5rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.announcementBox_item_time {
	font-size: clamp(0.75rem, 1.2vw, 0.875rem);
	color: #6F747D;
}

.announcementBox_item:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
}

@media (max-width: 1440px) {
	.topLogo {
		width: clamp(300px, 26vw, 372px);
		height: clamp(338px, 29vw, 419px);
		right: clamp(8%, 18vw, 15%);
		top: clamp(15%, 14vh, 20%);
	}
	
	.topModule .topCenter .topCenter_left {
		max-width: clamp(500px, 45vw, 670px);
		padding-top: clamp(18vh, 20vw, 22vh);
	}
	
	.topModule .topCenter .topCenter_left .topCenter_left_top {
		font-size: clamp(1.75rem, 4vw + 0.5rem, 3.5rem);
		line-height: 1.15;
	}
	
	.topModule .topCenter .topCenter_left .topCenter_left_center {
		max-width: clamp(450px, 48vw, 600px);
	}
	
	.centerBox_title {
		width: 100%;
		max-width: clamp(450px, 50vw, 497px);
	}

	.centerBox_title_text {
		font-size: clamp(2.5rem, 5.5vw, 3.375rem);
	}

	.beadBox {
		width: clamp(400px, 60vw, 829px);
		right: clamp(20px, 5vw, 100px);
	}

	.beadBoxImg {
		width: 100%;
	}

	.propertyCenter {
		width: 100%;
		max-width: clamp(420px, 48vw, 462px);
		padding: clamp(20px, 3vw, 30px) clamp(30px, 4vw, 50px);
	}

	.dynamicCenter {
		gap: clamp(1.25rem, 2.5vw, 2.5rem);
	}

	.dynamicBox_title_text,
	.announcementBox_title_text {
		font-size: clamp(1.875rem, 2.8vw, 2.25rem);
	}

	.announcementBox {
		flex: 0 0 clamp(18rem, 28vw, 28rem);
	}
}

@media (max-width: 1024px) {
	.topLogo {
		width: clamp(250px, 28vw, 320px);
		height: clamp(281px, 32vw, 360px);
		right: clamp(10%, 15vw, 18%);
		top: clamp(10%, 12vh, 16%);
	}
	.topModule .topCenter .topCenter_left {
		width: 100%;
		max-width: clamp(400px, 50vw, 600px);
		padding: 0 clamp(1rem, 4vw, 2rem);
		padding-top: clamp(15vh, 18vw, 20vh);
	}
	
	.topModule .topCenter .topCenter_left .topCenter_left_top {
		font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
	}
}

@media (max-width: 900px) {
	.topModule .topCenter .topCenter_left {
		padding: 0 clamp(1.5rem, 5vw, 2rem);
		padding-top: clamp(12vh, 16vw, 18vh);
	}
	
	.topModule .topCenter .topCenter_left .topCenter_left_top {
		font-size: clamp(1.5rem, 4.5vw + 0.3rem, 2rem);
	}

	.propertyList {
		height: auto;
		min-height: 180px;
		padding: clamp(15px, 2vw, 20px) clamp(20px, 3vw, 35px);
		flex-wrap: wrap;
	}

	.propertyList .property {
		flex: 1 1 calc(50% - 10px);
		min-width: 200px;
		border-right: none;
		border-bottom: 1.5px solid rgba(25, 28, 33, 0.1);
		margin-bottom: 15px;
	}

	.propertyList .property:last-child {
		border-bottom: none;
	}

	.propertyCenter {
		width: 100%;
		padding: clamp(15px, 2vw, 20px) clamp(20px, 3vw, 30px);
	}

	.centerBox {
		padding-top: clamp(100px, 15vw, 200px) !important;
	}

	.centerBox_title {
		width: 100%;
		margin-bottom: clamp(30px, 5vw, 75px);
	}

	.centerBox_title_text {
		font-size: clamp(2rem, 6vw, 3.375rem);
		letter-spacing: clamp(-0.5px, -0.1vw, -1.08px);
	}

	.centerBox_items {
		padding: clamp(30px, 4vw, 54px) clamp(15px, 3vw, 0);
		flex-wrap: wrap;
		gap: clamp(15px, 2vw, 0);
	}

	.centerBox_item {
		flex: 1 1 calc(50% - 15px);
		min-width: 200px;
		padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 60px);
	}

	.beadBox {
		position: relative;
		width: 100%;
		max-width: 600px;
		right: 0;
		margin: clamp(30px, 5vw, 50px) auto 0;
	}

	.beadBoxBtn1 {
		top: clamp(60px, 8vw, 100px);
		right: clamp(40px, 6vw, 100px);
	}

	.beadBoxBtn2 {
		top: clamp(100px, 12vw, 160px);
		left: clamp(30px, 4vw, 60px);
	}

	.beadBoxBtn3 {
		top: clamp(160px, 20vw, 240px);
		right: 0;
	}

	.beadBoxBtn4 {
		top: clamp(170px, 21vw, 250px);
		left: 0;
	}

	.dynamicCenter {
		flex-direction: column;
		padding-top: clamp(100px, 15vw, 224px) !important;
		padding-bottom: clamp(60px, 8vw, 155px) !important;
	}

	.announcementBox {
		flex: 1;
		width: 100%;
	}

	.dynamicBox_list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.topModule .topImg {
		display: none;
	}

	.topLogo {
		display: none;
	}

	.topModule .topImgM {
		display: block;
		height: auto;
	}

	.topModule .topCenter {
		height: auto;
		min-height: 100vh;
		/* display: flex;
		align-items: center;
		justify-content: center; */
		/*padding: clamp(60px, 10vw, 80px) 0;*/
	}

	.topModule .topCenter .topCenter_left {
		padding: 0 clamp(1rem, 5vw, 1.5rem);
		padding-top: 19vh;
	}

	.topModule .topCenter .topCenter_left .topCenter_left_top {
		font-size: clamp(1.5rem, 5vw + 0.2rem, 2rem);
	}

	.propertyList {
		position: relative;
		height: auto;
		padding: clamp(15px, 3vw, 20px) clamp(15px, 4vw, 20px);
	}

	.propertyList .property {
		flex: 1 1 100%;
		border-right: none;
		border-bottom: 1.5px solid rgba(25, 28, 33, 0.1);
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.propertyList .property:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.centerBox {
		padding-top: clamp(60px, 10vw, 100px) !important;
	}

	.centerBox_title_text {
		font-size: clamp(1.75rem, 8vw, 2.5rem);
		margin-bottom: clamp(15px, 3vw, 20px);
	}

	.centerBox_items {
		flex-direction: column;
		padding: clamp(20px, 4vw, 30px) clamp(15px, 4vw, 20px);
	}

	.centerBox_item {
		flex: 1 1 100%;
		width: 100%;
		padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
	}

	.beadBox {
		display: none;
	}

	.dynamicCenter {
		padding-top: clamp(60px, 10vw, 100px) !important;
		padding-bottom: clamp(40px, 6vw, 80px) !important;
	}


	.dynamicBox_list {
		grid-template-columns: 1fr;
		gap: clamp(1rem, 3vw, 1.5rem);
	}

	.announcementBox_item {
		border-radius: 8px;
	}
}

@media (max-width: 480px) {
	.topLogo {
		width: clamp(120px, 35vw, 200px);
		height: clamp(135px, 39vw, 225px);
		right: clamp(5px, 2vw, 15px);
		top: clamp(5%, 8vh, 12%);
	}

	.topModule .topCenter .topCenter_left .topCenter_left_top {
		font-size: clamp(2rem, 6vw + 0.1rem, 2rem);
	}

	.topModule .topCenter .topCenter_left .topCenter_left_bottom {
		flex-direction: column;
		width: 100%;
	}

	.topModule .topCenter .topCenter_left .topCenter_left_bottom > div {
		width: 100%;
		justify-content: center;
	}

	.propertyCenter {
		padding: 15px 20px;
		gap: 10px;
	}

	.propertyCenter_title {
		font-size: 14px;
		line-height: 20px;
	}

	.propertyCenter_title span {
		font-size: 18px;
	}

	.centerBox_item {
		padding: 20px 15px;
		gap: 10px;
	}

	.centerBox_item_icon {
		width: 60px;
		height: 80px;
	}

	.centerBox_item_title {
		font-size: clamp(1rem, 5vw, 1.5rem);
	}

	.dynamicBox_title_text,
	.announcementBox_title_text {
		font-size: clamp(1.25rem, 6vw, 1.75rem);
	}

	.dynamicBox_item_title,
	.announcementBox_item_title {
		font-size: clamp(0.875rem, 4vw, 1rem);
	}

	.announcementBox_item a {
		padding: clamp(0.75rem, 3vw, 1rem);
	}
}
