<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/***** mv *****/
.p-top-mv {
	background: url("../images/img_visual01.png") no-repeat top left / 56%;
	padding: 2rem 3rem 0 0;
}

.p-top-mv__memorial {
	text-align: right;
}

.p-top-mv__memorial img {
	width: 25%;
}

.p-top-mv__theme {
	margin: 0 auto 3rem;
	width: 80%;
}

.p-top-mv__theme img:nth-child(2) {
	max-width: clamp(30px,8vw,75px);
}

.p-top-mv__outline {
	background: url("../images/img_visual02.png") no-repeat center left / 40%;
	min-height: 600px;
}

.p-top-mv__outline-wrap {
	width: 52%;
	margin-left: auto;
	padding-top: 4rem;
}

.p-top-mv__outline-wrap img {
	margin-bottom: 2rem;
}

.p-top-mv__chair {
	margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
	.p-top-mv {
		padding: 1rem 1.5rem;
		background-size: 45%;
	}
	
	.p-top-mv__memorial img {
		width: 20%;
	}
	
	.p-top-mv__outline {
		background-size: 30%;
		min-height: auto;
	}
	
	.p-top-mv__outline-wrap {
		width: 65%;
		padding: 0;
	}
	
	.p-top-mv__outline-wrap img {
		margin-bottom: 1rem;
	}
	
	.p-top-mv__chair {
		margin-bottom: 1rem;
	}
}

/***** ボタンリスト *****/
.p-top-btn {
	width: 65%;
	margin: 3rem auto;
	display: flex;
	justify-content: space-around;
	gap: 2rem;
}

.p-top-btn__video {
	background-color: var(--base-color);
	border-radius: 10px;
	padding: 1rem;
}

.p-top-btn__video::before {
	content: "";
	width: 230px;
	height: 104px;
	background: url("../images/img_movie.jpg") no-repeat center/ 100%;
	display: block;
}

.p-top-btn__video a {
	width: 100%;
	font-size: 1.4rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	text-align: left;
	color: #fff;
	background-color: var(--base-color);
	border: 2px solid #fff;
	margin: 1rem 0 0;
	padding: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	transition: 0.3s;
}

.p-top-btn__video a::before {
	content: "";
	width: 40px;
	height: 40px;
	background: url("../images/icon_movie.svg") no-repeat center/ contain;
	display: block;
}

.p-top-btn__video a:hover {
	background-color: #3eaee9;
	border: 2px solid #fff;
	color: #fff;
	display: flex;
}

.p-top-btn__list {
	width: 100%;
}

.p-top-btn__list ul {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
	height: 100%;
}

.btn .p-top-btn__list a {
	margin: 0;
	padding: 25px 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
}

.p-top-btn__list ul li:last-child a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.p-top-btn__list ul li:last-child a::before {
	content: "";
	width: 35px;
	height: 35px;
	background: url("../images/icon_wine.svg") no-repeat center/ contain;
	display: inline-block;
}

.p-top-btn__list ul li:last-child a:hover::before {
	background: url("../images/icon_wine_b.svg") no-repeat center/ contain;
}

@media screen and (max-width: 768px) {
	.p-top-btn {
		width: 250px;
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.btn .p-top-btn__list a {
		padding: 10px 0;
		font-size: 1.6rem;
	}
	
	.p-top-btn__list ul li:last-child a::before {
		width: 30px;
		height: 30px;
	}
}

/***** news *****/
.p-top-news {
	margin: 4rem 3rem 3rem;
}

.p-top-news__ttl {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	padding: 1rem 0;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 3rem;
	color: var(--sub-color);
	border-bottom: 1px solid #333;
	position: relative;
}

.p-top-news__ttl::before {
	content: "";
	position: absolute;
	border-bottom: 1px solid #333;
	bottom: -5px;
	left: 0;
	right: 20px;
}

.p-top-news__ttl::after {
	content: "";
	position: absolute;
	border-bottom: 1px solid #333;
	bottom: -9px;
	left: 0;
	right: 40px;
}

.p-top-news__box {
	height: 200px;
	overflow-y: scroll;
}

.p-top-news__item {
	display: flex;
	border-bottom: 1px solid #ccc;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
}

.p-top-news__item dt {
	margin-right: 3rem;
}

@media screen and (max-width: 768px) {
	.p-top-news {
		margin: 3rem 1.5rem;
	}
	
	.p-top-news__ttl {
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}
	
	.p-top-news__item {
		display: block;
		margin-bottom: 1rem;
		padding-bottom: 1rem;
	}
	
	.p-top-news__item dt {
		margin: 0;
	}
}</pre></body></html>