@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sunflower:wght@300&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ol, li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #000;
}

html, body {
	width: 100%;
	min-height: 100vh;
}

#wrap {
	width: 100%;
	min-height: 100vh;
	padding: 20px;
}

header {
	width: 100%;
	margin-bottom: 30px;
}

#title {
	font-family: Sacramento;
	width: 100px;
	height: 100px;
	line-height: 100px;
	font-weight: normal;
	font-size: 28px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.3);
	text-align: center;
	border: solid 1.3px blue;
	margin: 0 auto;
}

#title > a {
	color: #fff;
	display: block;
}

#title:hover a {
	color: blue;
}

#title:hover {
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid #000;
}

.content {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

h2 {
	font-family: Raleway;
	font-size: 20px;
	margin-bottom: 15px;
}

.animation, .film {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 20px;
	border-radius: 10px;
}

.animation img, .film img {
	width: 100%;
	max-width: 450px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.animation p, .film p {
	text-align: center;
	padding: 10px 0;
	font-family: Raleway;
	line-height: 1.6;
}

.film p:nth-of-type(1),
.animation p:nth-of-type(1) {
	font-weight: bold;
	font-size: 18px;
	margin-top: 10px;
}

.animation .detail, .film p:nth-of-type(2) {
	font-size: 14px;
	color: #666;
}

div span {
	font-family: Sunflower;
	padding-left: 10px;
}

@media screen and (min-width: 768px) {
	#wrap {
		padding: 40px;
	}

	header {
		position: relative;
		margin-bottom: 80px;
	}

	#title {
		width: 120px;
		height: 120px;
		line-height: 120px;
		font-size: 32px;
		position: absolute;
		top: 0;
		left: 0;
	}

	.content {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
		margin-top: 180px;
	}

	.animation, .film {
		width: calc(50% - 10px);
		min-height: 400px;
	}

	h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.film p:nth-of-type(1),
	.animation p:nth-of-type(1) {
		font-size: 20px;
	}
}

@media screen and (min-width: 1024px) {
	#title {
		width: 145px;
		height: 145px;
		line-height: 145px;
		font-size: 39px;
		left: 100px;
		top: 30px;
	}

	.content {
		margin-top: 220px;
		gap: 30px;
	}

	.animation, .film {
		width: 450px;
	}

	.animation {
		margin-left: 0;
	}

	.film {
		margin-right: 0;
	}
}

@media screen and (max-width: 767px) {
	.animation a, .film a {
		display: block;
		padding: 10px;
	}

	.animation img, .film img {
		margin-bottom: 15px;
	}
}