@charset "utf-8";
/* ===========================================================

	Title: about.css
	Created: 2019-3-29

=========================================================== */
/*

	message
	structure


=========================================================== */
/* ===========================================================

	message

=========================================================== */
.message {
	display: flex;
	justify-content: space-between;
}
.message__text {
	width: 580px;
	margin: 0 0 3em;
	line-height: 2;
}
.message__signature {
	width: 300px;
	margin: 0 0 3em;
	text-align: center;
}
.message__signature img {
	margin-bottom: 10px;
}
.message__signature figcaption {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}
.message__signature figcaption em {
	color: #111;
	font-size: 2.2rem;
	font-weight: normal;
	font-family: "游明朝", "YuMincho", serif;
}
.is-en .message__signature figcaption em {
	display: block;
}
@media screen and (max-width: 1024px) {
	.message {
		display: block;
	}
	.message__text {
		width: 100%;
		float: none;
	}
	.message__signature {
		width: 250px;
		margin: auto;
		float: none;
	}
}

/* ===========================================================

	structure

=========================================================== */
.structure-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 20px 0 0;
}
.structure-list li {
	white-space: nowrap;
	margin: 0 30px 10px 0;
}
.structure-list li em {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	line-height: 18px;
	display: inline-block;
	text-align: center;
	color: #fff;
	margin: 0 5px 0 0;
	font-size: 1.1rem;
	background-color: #1095b1;
	font-weight: bold;
}
@media screen and (max-width: 1024px) {
	.structure-list {
		display: block;
	}
	.structure-list li {
		position: relative;
		white-space: normal;
		margin: 0 0 10px 0;
		padding: 0 0 0 25px;
	}
	.structure-list li em {
		position: absolute;
		top: 2px;
		left: 0;
	}
}
