/* 簡易reset.css */
div,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
video,
iframe,
img {
	margin: 0;
	padding: 0;
}
img {
	display: block;
	width: 100%;
}
a {
	color: black;
	text-decoration: none;
	display: block;
}
ul {
	list-style: none;
}
a:hover {
	opacity: 0.6;
}
/* コンポーネント */
.box {
	margin: 1.5rem;
}
/* Top */
.top_hero {
	margin: 1.5rem 1.5rem 0 0;
}
/* Profile */
.box.prof {
	margin-top: 3rem;
}
.prof_sns_boxes,
.prof_sns_text_boxes {
	align-items: center;
	display: flex;
	justify-content: center;
	gap: 2rem;
}
.prof_sns_box {
	width: 20%;
}
.prof_sns_box.x_icon {
	width: 28%;
}
/* about */
/* footer */
.box.footer {
	margin: 2.5rem;
}
@media (min-width: 992px) {
	body {
		width: 40%;
		margin: auto;
	}
}
