@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;
	}
}

.video_online {
	margin-top: 100px;
	padding: 0 20px;
	
	> div {
		display: flex;
		gap: 50px;
		margin: 0 auto;
		padding: 50px 30px;
		width: 100%;
		max-width: 1280px;
		background: url(/img/video_online.jpg) no-repeat left center / cover;
		border-radius: 20px;
		color: #fff;
		text-decoration: none;
		
		.left {
			width: calc((100% - 50px) / 2);
			
			.sub {
				font-size: 22px;
				font-weight: bold;
			}
			
			.ttl {
				font-size: 32px;
				font-weight: bold;
			}
			
			.link {
				margin-top: 20px;
				
				a {
					position: relative;
					display: inline-block;
					padding: 10px 20px;
					border: 1px solid #fff;
					font-size: 18px;
					font-weight: bold;
					background-color: rgba( 255, 255, 255, 0.3 );
					width: 300px;
					border-radius: 30px;
					transition: 0.3s;
					color: #fff;
					text-decoration: none;
				
					&::after {
						content: "";
						position: absolute;
						width: 20px;
						height: 18px;
						right: 20px;
						top: 50%;
						transform: translateY(-50%);
						background: url(/img/video_online_arrow.svg) no-repeat center / cover;
					}
					
					&:hover {
						opacity: 0.7;
					}
				}
			}
		}
		
		.right {
			width: calc((100% - 50px) / 2);
			
			p {
				font-size: 18px;
			}
			p.notice {
				margin-top: 30px;
				font-size: 14px;
			}
		}
	}
}

@media screen and (max-width: 736px) {
.video_online {
	margin-top: 40px;
	padding: 0 10px;
	
	> div {
		flex-direction: column;
		gap: 30px;
		padding: 20px 20px;
		
		.left {
			width: 100%;
			
			.sub {
				font-size: 18px;
			}
			
			.ttl {
				font-size: 24px;
			}
			
			.link {
				font-size: 16px;
			}
		}
		
		.right {
			width: 100%;
			
			p {
				font-size: 14px;
			}
			p.notice {
				margin-top: 20px;
				font-size: 12px;
			}
		}
	}
}
}

.floor_map {
	
	img {
		height: auto;
	}
}
