@charset "UTF-8";

/* General */

html {
	font-family: sans-serif;
	background: #AABBCC;
	color: #000066;
}

body {
	margin: 0 3em;
	padding: 1em;
	background: #FFFFFF;
}

hr {
	display: block;
	margin: 1.5em 2rem;
	border: none;
	border-bottom: 1px solid #527ECC;
	border-left: 3px solid #527ECC;
	height: 1.5em;
}

/* Page header */

.page-title {
	margin: 0.5em 2rem;
	font-size: 150%;
	line-height: 1.5;
}

.page-title span {
	display: block;
}

.event-information {
	margin: 0.5em 2rem;
}

.event-information dl {
	margin-left: 1em;
}

.event-information dt {
	display: inline;
	margin: 0;
}

.event-information dd {
	display: inline;
	margin: 0 1em 0 0;
}

.event-information dt:after {
	content: ":";
	margin: 0 0.5em;
}

section {
	margin: 2em 2rem;
}

/* Section header title */

section .header-title {
	display: flex;
	
	justify-content: space-between;
	
	font-size: 1rem;
	font-weight: normal;
	margin: 2em 0 1em 0;
}


section .header-title span[lang="ja"]:after {
	content: " - ";
}

section .header-title > *:first-child:before {
	content: "【";
}

section .header-title > *:first-child:after {
	content: "】";
}

section .header-title > *:nth-child(2) {
	padding: 0 0.5em;
	text-align: right;
}

/* Section time table */

section.time-table table tr {
	counter-increment: num;
	line-height: 2em;
}

section.time-table table tr td {
	padding: 0 0.5em;
	vertical-align: top;
}

section.time-table table tr td:nth-child(1) {
	width: 3ex;
	min-width: 3ex;
	text-align: right;
}

section.time-table table tr td:nth-child(1):before {
	display: inline-block;
	content: counter(num) ".";
}

section.time-table table tr td:nth-child(2) {
	width: 100%;
}

section.time-table table tr td:nth-child(3),
span.name {
	width: 6em;
	min-width: 6em;
	text-align-last: justify;
	text-justify: inter-ideograph; 
}

span.speaker {
	max-width: 40%;
}

span.affiliation, 
span.position, 
span.name {
	margin-left: 1em;
	display: inline-block;
}

/* Section content */

section.content p {
	display: flex;
}
