@charset "UTF-8";
/*--------------------------------------------------------------- 
			各ページ固有の指定
--------------------------------------------------------------- */

/*--------------------------------------------------------------- 
			form
--------------------------------------------------------------- */
input, button, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
 * {
  box-sizing: border-box;
}
.column {
	margin-top: 60px;
	margin-left: 35%;
  margin-bottom: 20px;
}

.select-item {
	display: inline-block;
}
.select-item select {
  padding: 3px 5px;
  border: 1px solid lightgrey;
  border-radius: 2px;
  font-size: 16px;
  transition: border-color ease .2s;
}

/*text*/
input[type="text"] {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fff;
  outline: 0;
}

.input-text {
	display: inline-block;
  width: 200px;
	margin-right: 1em;
}

.input-text input[type="text"] {
  width: 100%;
  padding: 3px 5px;
  border: 1px solid lightgrey;
  border-radius: 2px;
  font-size: 16px;
  transition: border-color ease .2s;
}

.input-text input[type="text"]:focus {
  border-color: #5f98e1;
}

/* input type="submit" のみ */
input[type="submit"] {
  property: value;
  padding: 3px 10px;
  border: 1px solid lightgrey;
  border-radius: 2px;
  font-size: 14px;
  transition: border-color ease .2s;
}
input[type="submit"]:hover {
  border-color: #5f98e1;
}


/* 検索結果
--------------------------------------------------------------- */
.searchResults {
	margin: 6em 3em 3em;
}
.tblSearchResults {
	width: 100%;
	border-spacing:0;
	empty-cells:show;
	border-bottom: #9D96A0 solid 1px;
}
.tblSearchResults th,
.tblSearchResults td {
	padding: 1.1em 1.5em;
	border-top: #9D96A0 solid 1px;
}
.tblSearchResults th {
	width: 5%;
	white-space: nowrap;
	font-size: 115%;
	font-weight: bold;
}
.tblSearchResults td .title {
	font-size: 115%;
	font-weight: bold;
}


/* 日程表
--------------------------------------------------------------- */
#page-nittei .areaBtn-rc a {
	width: 150px;
}


/* 主要講演
--------------------------------------------------------------- */
#page-koen {
	width: 900px;
}
#page-koen h6 {
	margin-top: 0;
}
#page-koen dl {
	margin-top: 0;
	margin-right: 0;
}
/* dl左右2段 */
#page-koen dl {
	overflow: hidden; /* 回り込み(float)の解除 + 内部要素の高さを自動補正 */
	zoom: 1; /* for IE6 */
}
#page-koen dl dt,
#page-koen dl dd {
	display: block;
	margin: 0;
	padding: 0;
}
#page-koen dl dt {
	clear: left; /* 環境別での表示崩れを防ぐ */
	float: left;
}
#page-koen dl dd {
	float: left;
	text-indent: -1.5em;
	padding-left: 1.5em;
}
#page-koen dl dd::before {
	content: " ： ";
}

/*----------*/
#page-koen dl.dl3 dt {
	width: 3em;
}
/*----------*/
#page-koen dl.dl6 dt {
	width: 6em;
}
/*----------*/
#page-koen dl.dl8 dt {
	width: 8em;
}
#page-koen dl.dl8 dd {
	width: 79%;
}


/* トップページ
--------------------------------------------------------------- */
#page-index .title {
font-weight: bold;
	font-size: 240%;
	text-align: center;
	margin: 50px auto 20px;
}
#page-index .section {
	border-bottom: #8A8A8A dotted 1px;
	padding: 3em 0 3em 100px;
	margin: 0 160px;
}
#page-index .section dl,
#page-index .section ul {
	margin: 0;
}
