@charset "UTF-8";
/*--------------------------------------------*/

body {
	font-family: "Meiryo";
	color: #383e45;
}

.wrapper {
	max-width: 960px;
	margin: 0 auto 100px auto;
	padding: 0 4%;
	text-align: center;
}

img {
	max-width: 100%;
}

/*--------------------------------------------*/

.site-title {
	width: 120px;
}

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
}	

#header ul {
	font-size: 0.9rem;
	display: flex;
}

#header li {
	margin-left: 30px;
	list-style: none;
}

/*--------------------------------------------*/

#mainvisual {
	margin-bottom: 90px;
}

#mainvisual img {
	width: 100%;
	max-width: 1920px;
	height: 600px;
	object-fit: cover;
}

/*--------------------------------------------*/

#about h2 {
	display: inline-block;
	font-size: 2rem;
	margin-bottom: 60px;
	border-bottom: 1px solid;
	font-weight: bold;
}

/*--------------------------------------------*/

#profile {
	display: flex;
	justify-content: center;
	align-items: center;
}

#profile img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-right: 30px;
}

#profile .text {
	flex-direction: column;
}

#profile .text .content-title {
	text-align: left;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: bold;
}

#profile .text p {
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.3rem;
}

/*--------------------------------------------*/

#bicycle h2 {
	display: inline-block;
	font-size: 2rem;
	margin-bottom: 60px;
	border-bottom: 1px solid;
	font-weight: bold;
}

/*--------------------------------------------*/

#bicycle ul {
	display: flex;
	column-gap: 15px;
}

#bicycle ul li .content-title {
	margin-top: 15px;
	margin-bottom: 15px;
	font-weight: bold;
}

#bicycle ul li p {
	font-size: 0.9rem;
}

/*--------------------------------------------*/

#footer p {
	text-align: center;
	font-size: 0.5rem;
}

/*--------------------------------------------*/

@media screen and (max-width: 600px){
	#mainvisual img{
		height: calc(100vh - 60px);
	}
	
	#profile {
		flex-direction: column;
	}

	#profile img{
		margin: auto;
	}

	#bicycle ul{
		flex-direction: column;
		row-gap: 30px;
	}
}