@charset "UTF-8";

.floor_map {
	margin-top: 40px;
}

.news_area {
	margin-top: 80px;
	
	h2 {
		text-align: center;
		font-size: 36px;
	}
	
	.link {
		margin-top: 5px;
		text-align: center;
		
		a {
			color: #000;
			text-decoration: none;
			
			&:hover {
				text-decoration: underline;
			}
		}
	}
	
	.news_entry {
		width: 100%;
		max-width: 1064px;
		padding: 0 20px;
		margin: 40px auto 0;
		
		.entry {
			display: flex;
			gap: 20px 0;
			
			.date {
				width: 140px;
			}
			
			.tx {
				width: calc(100% - 140px);
				
				a {
					color: #000;
					text-decoration: none;
				
					&:hover {
						text-decoration: underline;
					}
				}
			}
			
			& + .entry {
				margin-top: 15px;
			}
		}
	}
}

@media screen and (max-width: 736px) {
	.news_area {
		margin-top: 40px;
		
		h2 {
			font-size: 24px;
		}
		
		.news_entry {
			.entry {
				flex-direction: column;
				gap: 5px 0;
				
				.date {
					width: auto;
				}
				
				.tx {
					width: auto;
				}
			}
		}
	}
}

.policy_section {
	
	h2.news_heading {
		font-size: 24px;
	}
	
	.news_date {
		margin-top: 20px;
		padding-bottom: 30px;
		padding-left: 0;
	}
}

@media screen and (max-width: 736px) {
	.policy_section {
		
		h2.news_heading {
			font-size: 18px;
		}
	}
}

.floor_brands_section .name a {
	color: #333;
	text-decoration: none;
	
	&:hover {
		opacity: 0.8;
	}
}

