@charset "UTF-8";

h1 {
	padding-top: 40px;
	margin-bottom: 40px;
	font-size: 1.7em;
	text-align: center;
	position: relative;
}
h1:after {
	content: "";
	display: block;
	border-bottom: solid 5px #FFC229;
	border-radius: 5px;
	bottom: -3px;
	position: absolute;
	width: 70px;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
}
h1 > img {
	max-width: 300px;
	width: 55%;
}
h1 .decoration1 > span {
	display: block;
}
h1 .profile-photo {
  text-align: center;
  margin: 2rem 0;
}
h1 .profile-photo img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}
h2 {
	font-size: 1.5rem;
	color: #2c3e50;
	border-left: 5px solid #e67e22;
	padding-left: 15px;
	margin-bottom: 20px;
	margin-top: 0;
}
h3 {
	font-size: 1.1rem;
	color: #555555;
	margin-top: 25px;
	margin-bottom: 15px;
	text-decoration: underline;
}
main section {
	background-color: #FFFBEF;
	padding-bottom: 30px;
}
main section p {
	line-height: 1.8;
}
section > section {
	margin: 20px 10px;
	padding: 20px;
	max-width: 800px;
    background-color: #ffffff;
	border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.info_career p {
	margin-bottom: 20px;
}
.info_roles ul {
	padding-left: 20px;
}
.info_roles ul li {
	list-style-type: "・";
	margin-bottom: 10px;
}
.info_skills dl {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	background: #f0f4f8;
	padding: 20px;
	border-radius: 5px;
	margin-top: 0;
}
.info_skills dl dt {
    font-weight: bold;
    color: #2c3e50;
}
.info_message blockquote {
	font-size: 1.4rem;
	font-weight: bold;
	color: #e67e22;
	text-align: center;
	margin: 30px 0;
	padding: 20px;
	border-top: 1px dashed #cccccc;
	border-bottom: 1px dashed #cccccc;
}

@media screen and (min-width:768px) {
	h1 > img {
		display: none;
	}
	section > section {
		max-width: 800px;
		margin: 40px auto;
		padding: 40px 20px;
	}
	.info_skills dl {
		grid-template-columns: 140px 1fr;
	}
}