@charset "UTF-8";

body {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-color: #000;
}

/* コンテナを縦方向に並べる */
.container {
	display: flex;
	flex-direction: column;
	/* 縦並び */
	align-items: center;
	/* 中央揃え */
	gap: 20px;
	/* 各要素間の余白 */
	text-align: center;
}

h1 {
	font-size: 25px;
	color: antiquewhite;
}
/* 上部のメッセージ */
.message {
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

/* スライドショーのコンテナ */
.slideshow-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 3px solid #fff;
	border-radius: 10px;
	background-color: #000;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100vh;
	opacity: 0;
	z-index: 0;
	transition: opacity 0.5s ease-in-out;
}

.slide img {
	display: block;
	max-width: 100%;
	max-height: 100vh;
	object-fit: contain;
}

.slide.active {
	opacity: 1;
	z-index: 1;
}

/* 下部のリンク */
.gallery-link {
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	margin: 0;
}
