@charset "UTF-8";
/*
 * HISS (IEEE Hiroshima Section Student Symposium) Main Stylesheet
 */

/* --- Basic Styles --- */
body {
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Ｐゴシック", "MS P Gothic", sans-serif;
	background-color: #DDD;
	background-image: url(../images/common/bg_outer.png);
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
	color: #000;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}

ul, ol, dl {
	padding: 0;
	margin: 0;
}

/* --- Layout --- */
.container {
	width: 1000px;
	max-width: 1280px;
	min-width: 900px;
	min-height: 850px;
	background-color: #FFF;
	margin: 0 auto 30px auto;
	border: 2px solid #AAA;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.header {
	width: 1000px;
	margin: 20px auto 10px auto;
	background-color: #A5A5A5;
	background-image: url(../images/common/header.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	border: 2px solid #A5A5A5;
	position: relative;
}

.sidebar {
	float: left;
	width: 27%;
	min-height: 1000px;
	background-color: #F2F4FF;
	padding-top: 10px;
	/* Faux Columns Technique */
	padding-bottom: 10000px;
	margin-bottom: -10000px;
	position: relative;
	overflow: auto;
}

.content {
	float: right;
	width: 73%;
	min-height: 800px; /* min-heightを適切な値に修正 */
	padding-top: 30px;
	padding-bottom: 20px;
	position: relative;
}

.footer {
	height: 30px;
	margin-bottom: 40px;
	text-align: center;
	text-shadow: 0 1px #FFF, 0 -1px #A5A5A5;
	position: relative;
}

.clr {
	clear: both;
}

/* --- Content Sections --- */
.sectionTitle {
	padding: 25px 0 5px 70px;
	margin: 0 10px 10px 10px;
	background-image: url(../images/common/bg_sectionTitle.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.subsectionTitle {
	background-image: url(../images/common/system_arrow_right.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 5px 0 5px 35px;
	margin-bottom: 5px;
}

.section {
	margin: 0 20px;
	padding: 10px;
}

/* --- Elements --- */
a {
	color: #414958;
	text-decoration: underline;
}

a:visited {
	color: #4E5869;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #f00909;
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

a img {
	border: none;
}

.jpText {
	text-indent: 1em;
}

p.photo img {
	width: 170px;
}

/* スタイルをHTMLから移動 */
.text-emphasis {
	color: #F00;
}

.text-large {
	font-size: 1.2em;
	font-weight: bold;
}

.center {
	text-align: center;
}

.center table,
.center div,
.center p {
	margin-right: auto;
	margin-left: auto;
}


/* --- Buttons --- */
input[type="image"] {
	outline: 0;
}

input[type="image"]::-moz-focus-inner {
	border: 0;
}

.imageButton {
	display: block;
	margin: 20px auto;
	border-radius: 10px;
	border: 2px solid #666;
	background-color: #FFF;
}
.imageButton:hover {
	border: 2px solid #09F;
	background-color: #F7FEFF;
}
.imageButtonDisabled {
	display: block;
	margin: 20px auto;
	border-radius: 10px;
	border: 2px solid #666;
	background-color: #FFF;
	opacity: 0.3;
}

.imageButtonRed {
	display: block;
	margin: 20px auto;
	border-radius: 10px;
	border: 2px solid #666;
	background-color: #FFF;
}
.imageButtonRed:hover {
	border: 2px solid #F00;
	background-color: #FFF7F7;
}

.btnBackToTop {
	border: 2px solid #666;
	border-radius: 25px;
	position: fixed;
	top: -170px; /* JSで制御 */
	left: 20px;
}
.btnBackToTop:hover {
	border: 2px solid #09F;
}

/* --- Tables --- */
table {
	height: 50px;
	width: 600px;
	overflow: scroll;
	border: 0;
}

tbody {
	overflow-x: hidden;
	overflow-y: scroll;
}

td.date,
td.name,
td.affiliation,
td.lab {
	color: #FFF;
	text-align: center;
	background-color: #5898D8;
	border: 0;
}

td.date {
	width: 30%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

td.detail,
td.detailMid,
td.title {
	text-align: left;
	background-color: #F2F4FF;
	border: 0;
}

td.detail {
	width: 70%;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

td.detailMid {
	width: 25%;
}

td.name {
	width: 30%;
	border-top-left-radius: 10px;
}

td.affiliation {
	width: 70%;
	border-top-right-radius: 10px;
}

td.lab {
	border-radius: 10px;
}

td.title {
	padding: 5px 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

/* --- Navigation --- */
ul.nav {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	list-style: none;
}

ul.nav a,
ul.nav a:visited {
	display: block;
	height: 30px;
	padding: 13px 0 0 60px;
	margin-bottom: 10px;
	margin-left: 20px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	border: 2px solid #92BEFC;
	border-right: 0;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	background-color: #E5ECFF;
	background-repeat: no-repeat;
}

ul.nav a:hover,
ul.nav a:active,
ul.nav a:focus {
	margin-left: 15px;
	background-color: #F7FEFF;
	border-color: #B2DEFF;
	color: #00F;
}

ul.nav ul {
	position: relative;
}

ul.navVisited>a { /* 直下のaタグのみに適用 */
	background-color: #FFF;
}

ul.navVisited>a:hover,
ul.navVisited>a:focus,
ul.navVisited>a:active {
	margin-left: 20px; /* ホバー時の動きを無効化 */
	background-color: #FFF;
	border-color: #92BEFC;
	color: #000;
}

ul.navVisited ol a {
	margin-left: 40px;
	margin-top: -7px;
	height: 15px;
	padding: 5px 0 10px 35px;
	font-weight: normal;
	background-image: url(../images/common/system_arrow_right.png);
	background-size: contain;
	background-color: #E5ECFF;
	background-position: 5px;
}

ul.navVisited ol a:hover,
ul.navVisited ol a:active,
ul.navVisited ol a:focus {
	margin-left: 35px;
	background-color: #F7FEFF;
	border-color: #B2DEFF;
	color: #00F;
	cursor: pointer;
}

/* --- Utility / Animation --- */
.updated,
.mainUpdated {
	position: absolute;
	background-color: #F66;
	border: 2px solid #FFF;
	animation: blink 0.5s ease-in-out infinite alternate;
}

.mainUpdated {
	left: 10px;
	top: 0;
	padding: 0 5px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	user-select: none;
}

.updated {
	right: 10px;
	top: 50%;
	margin-top: -9px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
}

@keyframes blink {
	0% { opacity: 0; }
	100% { opacity: 1; }
}