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


#outline {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#outline dt,
#outline dd {
	box-sizing: border-box;
	padding: 0.5em;
	background: #f6f6f6;
	margin-bottom: 0.2em;
}

#outline dt {
	width: 10em;
	text-align: right;
}

#outline dd {
	width: calc(100% - 14rem - 2px);
	margin-left: 0;
	position: relative;
}

#outline dt:nth-of-type(2n-1),
#outline dd:nth-of-type(2n-1) {
	background: #eaeaea;
}

#outline dd::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: -2px;
	background: #d9d9d9;
}

#outline dd:nth-of-type(2n-1)::before {
	background: #cdcdcd;
}

#outline + section {
	margin-top: 6rem;
}

h2 {
	margin: 1em 0;
	font-size: 2.5rem;
	font-weight: 200;
}

.ceoPic {
	float: left;
	margin: 0 1.5em 0.5em 0;
	width: 14em;
	max-width: 50%;
}

.signature strong {
	display: inline-block;
	padding-left: 1em;
	border-left: solid 1px #c2c2c2;
	font-weight: inherit;
}


@media screen and (min-width: 1000px) {

	#outline dt {
		width: 20%;
	}

	#outline dd {
		width: calc(80% - 2px);
	}
}


@media screen and (max-width: 500px) {

	#outline dt {
		width: 5.7em;
	}

	#outline dd {
		width: calc(100% - 5.7em - 2px);
	}
}