@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;
}

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: 1024px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.photo {
	width: 80%;
	max-width: 192px;
}

.photo img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.text {
	width: 100%;
	padding: 0 20px;
	font-family: Raleway;
}

.text h2 {
	margin-bottom: 30px;
	font-family: Raleway;
	font-weight: normal;
	font-size: 24px;
}

.text span, .text a {
	font-family: Sunflower;
	margin-left: 5px;
}

.text p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.company {
	margin-top: 20px;
}

.film {
	margin-top: 7px;
}

.school {
	margin-top: 18px;
}

.contact {
	margin-top: 30px;
	padding: 20px 0;
	border-top: 1px solid #ddd;
}

.contact img {
	width: 33px;
	height: 33px;
	vertical-align: middle;
}

@media screen and (min-width: 768px) {
	#wrap {
		padding: 40px;
	}

	header {
		position: relative;
		margin-bottom: 50px;
	}

	#title {
		width: 120px;
		height: 120px;
		line-height: 120px;
		font-size: 32px;
		position: absolute;
		top: 0;
		left: 0;
	}

	.content {
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		gap: 40px;
		margin-top: 180px;
	}

	.photo {
		width: 224px;
		max-width: none;
	}

	.text {
		width: 500px;
		padding: 0;
	}

	.text h2 {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.text p {
		font-size: 15px;
	}
}

@media screen and (min-width: 1024px) {
	#title {
		width: 145px;
		height: 145px;
		line-height: 145px;
		font-size: 39px;
		left: 100px;
		top: 30px;
	}

	.content {
		gap: 50px;
		margin-top: 220px;
	}

	.photo {
		width: 256px;
	}

	.text {
		width: 600px;
	}

	.text h2 {
		font-size: 32px;
		margin-bottom: 50px;
	}

	.contact {
		margin-top: 40px;
	}
}

@media screen and (max-width: 767px) {
	.text span {
		display: block;
		margin-left: 0;
		margin-top: 5px;
	}

	.text .me2 {
		margin-left: 0;
	}
}