﻿/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/*　■■■■■■■■■ 共通CSS  ■■■■■■■■■■■　*/
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/

/*　■■■■■■■■■ リセット補足 ■■■■■■■■■　*/
a {
	text-decoration:none;
}
a:link, a:visited {
	color:#000;
}
a:hover {
	color:#F00;
}
figure {
	margin:0;
}
ul {
	list-style: none;
}
.clear {
	clear:both;
}
/*　■■■■■■■■■ 文字色・背景 ■■■■■■■■■　*/
/* カラー */
.black {
	color:#000000;
}
.red {
	color:#FF0000;
}
.white {
	color: #FFFFFF;
}
.blue {
	color: #0000FF;
}
.navy {
	color:#000066;
}
.gray {
	color:#CCCCCC;
}
.green {
	color:#009900;
}
.orange {
	color: #FF6600;
}
.pink {
	color:#FF6699;
}
/*　■■■■■■■■■ フォント ■■■■■■■■■　*/
/* サイズ */
.s400 {
	font-size:400%;
}
.s200 {
	font-size:200%;
}
.s160 {
	font-size:160%;
}
.s140 {
	font-size:140%;
}
.s120 {
	font-size:120%;
}
.s110 {
	font-size:110%;
}
.s90 {
	font-size:90%;
}
.s85 {
	font-size:85%;
}
.s80 {
	font-size:80%;
}
.s70 {
	font-size:70%;
}
.s60 {
	font-size:60%;
}
.s50 {
	font-size:50%;
}
/* フォントの太さ */
.bold {
	font-weight: bold;
}
.normal {
	font-weight:normal;
}
.material-icons.link_icon {
	font-size: 130%;
	margin-left: 0.5em;
}
.material-icons.link_icon2 {
	font-size: 105%;
	margin-left: 0.5em;
}
/*　■■■■■■■■■ 文字配置 ■■■■■■■■■　*/
/* 行の高さ */
.lh110 {
	line-height:110%;
}
.lh130 {
	line-height:130%;
}
.lh150 {
	line-height:150%;
}
/* 行揃えの位置 */
.tright {
	text-align:right;
}
.tleft {
	text-align:left;
}
.tcenter {
	text-align:center;
}
.fleft {
	float:left;
}
.fright {
	float:right;
}
/* テキストの下線・打ち消し線 */
.under {
	text-decoration: underline;
}
.torikeshi {
	text-decoration:line-through;
}
/* 字下げ */
.sage1 {
	text-indent: 1em;
}
.sage10 {
	margin:0 0 7px 1em;
	text-indent: -1em;
}
.sage13 {
	margin:0 0 7px 1.3em;
	text-indent: -1.3em;
}
.sage16 {
	margin:5px 0 0px 1.6em;
	text-indent: -1.6em;
}
/* マージン・パディング */
/* 上 */
.mt5 {
	margin-top:5px;
}
.mt10 {
	margin-top:10px;
}
.mt20 {
	margin-top:20px;
}
.mt30 {
	margin-top:30px;
}
/* 右 */
.mr10 {
	margin-right:10px;
}
.mr20 {
	margin-right:20px;
}
.mr30 {
	margin-right:30px;
}
/* 下 */
.mb5 {
	margin-bottom:5px;
}
.mb10 {
	margin-bottom:10px;
}
.mb15 {
	margin-bottom:15px;
}
.mb20 {
	margin-bottom:20px;
}
.mb30 {
	margin-bottom:30px;
}
/* 左 */
.ml03 {
	margin-left:0.3em;
}
.ml04 {
	margin-left:0.4em;
}
.ml05 {
	margin-left:0.5em;
}
.ml06 {
	margin-left:0.6em;
}
.ml08 {
	margin-left:0.8em;
}
.ml10 {
	margin-left:1em;
}
.ml13 {
	margin-left:1.3em;
}
.ml16 {
	margin-left:1.6em;
}
.ml20 {
	margin-left:2em;
}
.ml30 {
	margin-left:3em;
}
.ml40 {
	margin-left:4em;
}
/*　■■■■■■■■■ リスト ■■■■■■■■■　*/
/* 算用数字 */
.deci {
	margin:0 0 0 20px;
	list-style-type:decimal;
}
/* 先頭に0をつけた算用数字 */
.deci2 {
	margin:0 0 0 20px;
	list-style-type:decimal-leading-zero;
}
/* 黒四角 */
.square {
	margin:0 0 0 20px;
	list-style-type:square;
}
/* 黒丸 */
.disc {
	margin:0 0 0 20px;
	list-style-type:disc;
}
/* 白丸 */
.circle {
	margin:0 0 0 20px;
	list-style-type:circle;
}
/* 大文字のローマ数字 */
.uproman {
	margin:0 0 0 20px;
	list-style-type:upper-roman;
}
/* 小文字のアルファベット */
.lowlatin {
	margin:0 0 0 20px;
	list-style-type:lower-latin;
}
/* 大文字のアルファベット */
.uplatin {
	margin:0 0 0 20px;
	list-style-type:upper-latin;
}
/*　■■■■■■■■■ その他 ■■■■■■■■■　*/
/* 画像の枠線など */
.img_border {
	padding:1px;
	border:solid 1px #666;
	background-color: #FFF;
}
/* ページトップへ */
.page-top {
	position: fixed;
	bottom: 60px;
	right: 40px;
	width:60px;
	height:60px;
	background: #DDDDDD;
	border-radius: 30px;
	text-decoration:none;
}
.page-top i {
	margin: 5px 0 0 15px;
}
.page-top p {
	margin: -9px 0 0 7px;
	font-size: 85%;
}
/* 準備中 */
.const {
	margin:50px 0 50px 50px;
	font-size:200%;
	color:#999;
	line-height:240%;
}
.const span {
	margin-left:40px;
	font-size:200%;
}
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/*　■■■■■■■■■ ページの構造 ■■■■■■■■■　*/
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/* ------------ ボディ -----------*/
body {
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height:165%;
}
/*　■■■■■■■■■ ヘッダ ■■■■■■■■■　*/
header {
	position:fixed;
	z-index:1;
	top:0px;
	left:0px;
	width:100%;
	height:100px;
	background: #003670;
	box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	border-top: solid 10px #333;
	box-sizing: border-box;
}
/* ------------ タイトル -----------*/
#title {
	font-size: 14px;
	line-height: 1;
	margin: 0 auto;
	width: 1000px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#title .enttl {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 110%;
	margin-bottom: 0.5em;
	text-align: center;
}
#title .enttl span {
	font-size: 80%;
	vertical-align: 5px;
}
#title h1 {
	font-weight: bold;
	font-size: 260%;
	line-height: 1;
	color: #fff;
	text-align: center;
}
#title h1 span {
	font-size: 80%;
	margin-right: 0.1em;
}
#title h1 span.kai {
	font-size: 80%;
	letter-spacing: -0.05em;
	margin-right: 0.2em;
}
/*　■■■■■■■■■ コンテンツ ■■■■■■■■■　*/
#sec_con {
	display: flex;
	flex-flow: row, wrap;
	margin:0 auto;
	/*padding:100px 0 50px;*/
	padding:0px 0 50px;
	width:1000px;
}
#sec_con .cl {
	order: 1;
	width:200px;
	min-height: 1200px;
}
#sec_con .cr {
	order: 2;
	width:800px;
}
#web_info {
	position: absolute;
	bottom: 20px;
	right: 20px;
	border: solid 2px #4149C8;
	border-radius: 10px;
	background-color: #FFFFFF;
	padding: 25px 20px 20px;
	width: 330px;
}
#web_info a.web_enter {
	border-radius: 10px;
	font-size: 110%;
	font-weight: bold;
	color: #FFF;
	background-color: #0837A6;
	padding: 10px 20px;
	margin: 0px 0 0px 0;
}
#web_info a.web_enter:hover{
	opacity: 0.5;
}
div#top_oshirase {
	width: 90%;
	margin: 10px auto;
	border: solid 1px #000000;
	background-color: #FFFFFF;
	padding: 20px 30px 20px 30px;
}
#program_teisei {
	/*position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;*/
	width: 90%;
	margin: 10px auto;
	border: solid 4px #FF0000;
	background-color: #FFFFFF;
	padding: 20px 20px 20px 20px;
}
#program_teisei .midashi{
	color: #f00;
	font-size: 120%;
	text-align: center;
	font-weight: bold;
}
#program_teisei .bun{
	font-size: 100%;
	margin-top: 10px;
}
/* ------------ index.htmlの開催概要 -----------*/
#sec_con .main {
	height: 900px;
	/*width: 800px;*/
	background: url(img/image.jpg) 50% 0% no-repeat;
	position: relative;
}
/* dl#tokitokoro {
	font-size: 17px;
	line-height: 1.0;
	position: absolute;
	bottom: 80px;
	left: 30px;
	display: grid;
	grid-template-columns: max-content auto;
	grid-gap: 1.0em 0.8em;
} */
dl#tokitokoro {
	font-size: 17px;
	line-height: 1.0;
	position: absolute;
	top: 595px;
	left: 30px;
	display: grid;
	grid-template-columns: max-content auto;
	grid-gap: 1.0em 0.8em;
}
dl#tokitokoro > dt {
	/*width: 3.5em;
	height: 3.5em;
	border-radius: 50%;*/
	width: 7em;
	height: 2.5em;
	border-radius: 15px;
	background: #1B7A17;
	color: #FFF;
	font-weight:bold;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
}
dl#tokitokoro > dt {
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
dl#tokitokoro > dt.six_moji {
	letter-spacing: 0.01em;
	text-indent: 0.25em;
	/*text-shadow:2px 2px 0 #003670, -2px -2px 0 #003670,
              -2px 2px 0 #003670, 2px -2px 0 #003670,
              0px 2px 0 #003670,  0-2px 0 #003670,
              -2px 0 0 #003670, 2px 0 0 #003670;*/
}
dl#tokitokoro > dd {
	color: #FFF;
	/*text-shadow: 3px 3px 5px #000;*/
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-shadow    : 
       3px  3px 3px #116611,
      -3px  3px 3px #116611,
       3px -3px 3px #116611,
      -3px -3px 3px #116611,
       3px  0px 3px #116611,
       0px  3px 3px #116611,
      -3px  0px 3px #116611,
       0px -3px 3px #116611;
	
	/*text-shadow    : 
       3px  3px 3px #aa0066,
      -3px  3px 3px #aa0066,
       3px -3px 3px #aa0066,
      -3px -3px 3px #aa0066,
       3px  0px 3px #aa0066,
       0px  3px 3px #aa0066,
      -3px  0px 3px #aa0066,
       0px -3px 3px #aa0066;*/
	
	/*text-shadow    : 
       3px  3px 4px #003366,
      -3px  3px 4px #003366,
       3px -3px 4px #003366,
      -3px -3px 4px #003366,
       3px  0px 4px #003366,
       0px  3px 4px #003366,
      -3px  0px 4px #003366,
       0px -3px 4px #003366; */ 
}
dl#tokitokoro > dd > p:nth-of-type(1) {
	font-size: 150%;
	font-weight: bold;
}
dl#tokitokoro > dd > p:nth-of-type(2) {
	margin-top: 0.25em;
}
dl#tokitokoro > dd:nth-of-type(1) > p:nth-of-type(1) {
	font-size: 130%;
	font-weight: bold;
}
dl#tokitokoro > dd:nth-of-type(1) > p:nth-of-type(1) span {
	font-size: 160%;
}
dl#tokitokoro > dd:nth-of-type(3) > div:nth-of-type(n+2) {
	margin-top: 0.25em;
}
dl#tokitokoro > dd:nth-of-type(3) > div > p:nth-of-type(1) {
	font-size: 150%;
	font-weight: bold;
}
dl#tokitokoro > dd:nth-of-type(3) > div > p:nth-of-type(2) {
	margin-top: 0.25em;
}
@media all and (-ms-high-contrast: none) {
	dl#tokitokoro:after {
		content: "";
		clear: both;
		display: block;
	}
	dl#tokitokoro > dt {
		float: left;
	}
	dl#tokitokoro > dd {
		display: table-cell;
		min-height: 3.5em;
		padding-left: 0.5em;
		vertical-align: middle;
	}
	dl#tokitokoro > dd:nth-last-of-type(n+2) {
		padding-bottom: 0.5em;
	}
}
#title_img {
	
}
#title_img figure {
	/*margin-top: 30px;*/
	padding-top: 40px;
}
#gakkai_title {
	position: absolute;
	top: 60px;
	left: 60px;
}
#gakkai_title p {
	/*font-weight: bold;*/
	/*font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;*/
	font-family:  "HGPｺﾞｼｯｸE", "A-OTF リュウミン Pr5 B-KL","ＭＳ Ｐゴシック","A-OTF 新ゴ Pr5 B", "A-OTF UD新ゴNT Pro B",  "ＭＳ ゴシック",  "メイリオ", "HGｺﾞｼｯｸM";
  display        : inline-block;
	line-height: 70px;
  color          : #BE0368;           /* 文字の色 */
  font-size      : 40pt;               /* 文字のサイズ */
  letter-spacing : 6px;                /* 文字間 */
  text-shadow    : 
       3px  3px 3px #FFF,
      -3px  3px 3px #FFF,
       3px -3px 3px #FFF,
      -3px -3px 3px #FFF,
       3px  0px 3px #FFF,
       0px  3px 3px #FFF,
      -3px  0px 3px #FFF,
       0px -3px 3px #FFF;        /* 文字の影 */
}
#theme {
	position: absolute;
	top: 200px;
	left: 70px;
	/*right: 50px;*/
	/*margin:  auto;*/
	/*text-align: center;*/
}

#theme img {
	display: block;
}
dl#endai_kikan {
	background: #f00;
	border: 1px solid #f00;
	border-radius: 7px;
	display: flex;
	font-size: 15px;
	line-height: 1.5;
	overflow: hidden;
	position: absolute;
	bottom: 30px;
	left: 30px;
}
dl#endai_kikan dt {
	color: #fff;
	font-weight: bold;
	padding: 0.1em 0.5em;
	display: flex;
	align-items: center;
}
dl#endai_kikan dt span {
	font-size: 110%;
}
dl#endai_kikan dd {
	background: #fff;
	color: #333;
	padding: 0.1em 0.5em;
}
dl#endai_kikan .kikan {
	font-weight: bold;
}
dl#endai_kikan .kikan > span {
	font-size: 150%;
}
/* ------------ サイド -----------*/
.atcl_side {
	width: 95%;
	margin: 0 10px 24px 5px;
}
.atcl_side dl {
	line-height: 130%;
}
.atcl_side dt {
	margin: 20px 0 5px;
	font-weight: bold;
}
.atcl_side dd {
	font-size: 90%;
}
/* ------------ ナビ -----------*/
nav {
	margin:5px 0 0 0;
}
nav li {
	margin:0 0 4px;
	width:190px;
	font-size: 15px;
	line-height: 1.2;
	box-sizing: border-box;
}
nav li a {
	display:block;
	padding: 10px;
	border:solid 1px #999999;
	background: #FFF;
}
nav li a:link, nav li a:visited {
	color: #333;
}
nav li a:hover {
	background: #DDD;
	color: #F00;
}
/* ------------ バー -----------*/
.bar {
	width:95%;
	margin: 20px 0 15px 0px;
	padding:7px 0 7px 2em;
	font-size:120%;
	font-weight:bold;
	background:#ff9900;
	box-shadow:1px 1px 1px #000;
	color:#FFFFFF;
}
.br_temp {
	margin: 5px 0 15px 0px;
}
.bar span.renew {
	margin:0 1em 0 0;
	float:right;
	font-size:70%;
}
.bar span.renew a:link, .bar span.renew a:visited {
	color:#FFFFFF;
}
.bar span.renew a:hover {
	color:#F00;
}
.minibar {
	width:88%;
	margin: 20px 0 15px 0px;
	padding:5px 0 5px 1em;
	font-size:120%;
	font-weight:bold;
	background:#ff9900;
	box-shadow:1px 1px 1px #000;
	color:#FFFFFF;
}
/* 更新情報 */
.news {
	margin:0 0 0 20px;
	width:95%;
	height:300px;
	overflow:auto;
	background:#FFF;
}
.news dl {
	padding:10px 5px;
	border-bottom:dotted 1px #666;
}
.news dt {
	float:left;
}
.news dt span {
	margin:0 5px 0 0;
	color:#f00;
	font-size:110%;
}
.news dd {
	margin:0 0 0 9em;
}
/*　■■■■■■■■■ フッタ ■■■■■■■■■　*/
footer {
	position:fixed;
	bottom:0px;
	right:0px;
	width:100%;
	height:auto;
	background:#FFFFFF;
}
footer .copy {
	display:block;
	margin:10px auto 0;
	width:1000px;
	text-align:right;
	font-size:80%;
}
footer .copy a {
	font-size:90%;
}
.copy_m {
	display: none;
}
/* 印刷用 */
@media print {
	header {
		position: static;
	}
	#sec_con {
		padding-top: 0;
	}
	.page-top {
		display: none;
	}
	footer {
		position: static;
	}
}
/*■■■■スマホメニュー（ハンバーガーメニューとナビゲーションドロワー）■■■■*/
#nv_drwr {
    display: none;
}
/*footer .mb_menu {
	display:none;
}*/
/*　■■■■■■■■■ 挨拶 ■■■■■■■■■　*/
#aisatsu {
	margin: 50px 0 0 3em;
	width:90%;
}
#aisatsu h3 {
	margin:20px 0;
	font-size:120%;
	font-weight:bold;
}
#aisatsu .kaicho {
	display: flex;
	align-items: center;
}
#aisatsu .kaicho  img{
	width: 150px;
}
#aisatsu .kaicho  p{
	margin: 0 0 0 20px;
	font-size: 140%;
}
/*#aisatsu figure {
	display: flex;
	flex-flow: row, wrap;
	width: 100%;
	margin: 0 0 10px;
	padding: 10px;
	border-bottom: solid 1px #999999;
}
#aisatsu figure img {
	order: 1;
	width: 150px;
	height: 215px;
}
#aisatsu figure p {
	order: 2;
	margin: 160px 0 0 30px;
	line-height: 180%;
}
#aisatsu figure p span {
	margin-left: 10px;
	font-size: 120%;
}
#aisatsu .kaicho {
	float: right;
	font-size: 95%;
	line-height: 1.5;
	margin: 0 0 2em 2em;
	text-align: center;
}
#aisatsu .kaicho img {
	vertical-align: bottom;
}*/
#aisatsu .bun {
	font-size:105%;
	line-height:180%;
	margin-top: 40px;
}
#aisatsu .bun p {
	text-indent:1em;
	margin: 0.5em 0;
}
#aisatsu_copy .kaicho {
	float: left;
	font-size: 95%;
	line-height: 1.5;
	/*margin: 0 0 2em 2em;*/
	margin: 0 2em 2em 0;
	text-align: center;
}
#aisatsu_copy .kaicho img {
	vertical-align: bottom;
}
#aisatsu_copy .bun {
	font-size:105%;
	line-height:180%;
}
#aisatsu_copy .bun p {
	text-indent:1em;
	/*margin: 1em 0;*/
	margin: 1em 0 1em 16em;
}
#aisatsu_copy .aisatsuhr {
	position: relative;
	align: center;
	size: 5;
	width: 80%;
}
#aisatsu_copy2 .kaicho {
	float: left;
	font-size: 95%;
	line-height: 1.5;
	/*margin: 0 0 2em 2em;*/
	/*margin: 0 2em 2em 0;*/
	margin: 0 2em 2em 2em;
	text-align: center;
}
#aisatsu_copy2 .katagaki {
/*	padding 0 0 0px 50px;*/
	margin: 0 0 30px 50px;
}
#aisatsu_copy2 dl {
	margin-left: 40px;
}
#aisatsu_copy2 dt {
	float: left;
	font-size: 95%;
	line-height: 1.5;
	/*margin: 0 0 2em 2em;*/
	margin: 0 2em 2em 0;
	text-align: center;
}
#aisatsu_copy2 dd {
	margin:0 0 30px 9em;
	padding: 180px 0 0 ;
}
#aisatsu_copy2 .pkatagaki {
	font-size: 130%;
	line-height: 1.5;
}
#aisatsu_copy2 .syozoku {
	font-size: 80%;
	
}
#aisatsu_copy2 .bun {
	font-size:105%;
	line-height:180%;
	margin-left: 40px;
}
#aisatsu_copy2 .bun p {
	text-indent:1em;
	margin: 1em 0;
	/*margin: 1em 0 1em 16em;*/
}
/*　■■■■■■■■■ 開催概要 ■■■■■■■■■　*/
#gaiyo {
	margin:0 0 0 3em;
	width:90%;
}
#gaiyo dl {
	margin: 50px 0 0;
}
#gaiyo dt {
	padding:5px 0;
	width:100px;
	text-align:center;
	background: #578fca;
	border:solid 1px #CCCCCC;
	border-radius:5px;
	font-weight:bold;
	line-height:110%;
	float:left;
	color: #FFFFFF;
}
#gaiyo dt .nimoji {
	letter-spacing:1em;
}
#gaiyo dd {
	margin:0 0 30px 9em;
	padding:3px 0 0 ;
}
/*　■■■ 演題募集 ■■■　*/
#endai {
	margin:0 0 150px 3em;
	width:90%;
}
#endai h3 {
	margin: 50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
	clear:both;
}
#endai h4 {
	margin:25px 0 5px;
	font-size:105%;
	font-weight:bold;
	color:#000;
	clear:both;
}
#endai div.kaiin_only {
	border: solid 2px #f00;
	margin: 25px auto 40px auto;
	padding: 15px 20px;
	width: 90%;
}
#endai p.head_no {
	text-indent: -1.6em;
	margin: 10px 0 0 1.6em;
}
#endai p.head_no span {
	font-weight: bold;
}
#endai dl.online dt {
	margin:20px 0 10px;
	font-size:105%;
	font-weight:bold;
	color:#333333;
}
#endai dl.online dd {
	margin:0 0 0 20px;
}
#endai dl.online dd.kikan {
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#endai dl.online dd.kikan span {
	font-size:150%;
}
#endai dl.online dd.kikan_encho {
	margin:10px 0 0 20px;
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#endai dl.online dd.kikan_encho span {
	font-size:150%;
}
#endai dl.online dd.kikan_encho p.encho {
	margin:0 0 0 12em;
	color:#FF0000;
}
#endai dl.online dd.kikan_encho p.text {
	margin:0 0 10px;
	font-size:60%;
	font-weight:normal;
	color:#FF0000;
}
#endai dl.online dd.kikan_encho span.torikeshi {
	font-size:85%;
	text-decoration:line-through;
}
#endai dl.online li {
	margin:0 10px 10px 0;
	padding: 0.51em 0;
	min-width: 180px;
	text-align: center;
	border-radius:10px;
	border:solid 1px #999999;
	font-size:120%;
	float:left;
	color:#FFFFFF;
}
#endai dl.online li.shinki {
	background-color:#FF0000;
}
#endai dl.online a:link li.shinki, #endai dl.online1 a:visited li.shinki {
	color:#FFFFFF;
}
#endai dl.online a:hover li.shinki {
	color:#FFFFCC;
	background-color:#FF6666;
}
#endai dl.online li.syusei {
	background-color:#003399;
}
#endai dl.online a:link li.syusei, #endai dl.online a:visited li.syusei {
	color:#FFFFFF;
}
#endai dl.online a:hover li.syusei {
	color:#FFFFCC;
	background-color:#0066CC;
}
#endai dl.online li.owari {
	opacity:0.6;
}
#endai ul.mt20 {
	margin-top: 20px;
}
#endai .jimukyoku {
	border: solid 2px #ccc;
	padding: 1em;
}
#endai ul.category {
	column-count: 2;
	margin-left: 25px;
	width: 600px;
}
#endai ul.list01 {
	margin:24px 0 0 2em;
	list-style-type:disc;
	line-height:140%;
}
#endai ul.list01 li {
	margin:0 0 14px;
}
#endai table.table_live {
	margin: 20px 0 20px 30px;
}
#endai table.table_live td{
	border:solid #999 1px;
	padding:10px;
	text-align: center;
	vertical-align: middle;
}
#endai table.table_live td.header{
	border:solid #999 1px;
	background: #DFF3FF;
}
#endai table.table_category {
	margin: 20px 0 20px 30px;
}
#endai table.table_category td{
	border:solid #999 1px;
	padding:10px;
	text-align: center;
	vertical-align: middle;
}
#endai table.table_category td.header{
	border:solid #999 1px;
	background: #DFF3FF;
}
#endai table.table_shouroku {
	margin: 20px 0 20px 30px;
	width: 75%;
}
#endai table.table_shouroku td{
	border:solid #999 1px;
	padding:10px;	
	vertical-align: middle;
}
#endai table.table_shouroku td.header{
	border:solid #999 1px;
	background: #DFF3FF;
	text-align: center;
}
#endai table.table_shouroku td:nth-child(1){
	width: 20%;
}
#endai table.table_enja {
	margin: 20px 0 20px 30px;
	width: 60%;
}
#endai table.table_enja td{
	border:solid #999 1px;
	padding:10px;	
	vertical-align: middle;
	text-align: center;
}
#endai table.table_enja td.header{
	border:solid #999 1px;
	background: #DFF3FF;
	text-align: center;
}
#endai table.table_enja td:nth-child(1){
	white-space: nowrap;
}
#endai table.table_pass {
	margin: 20px 0 20px 30px;
	width: 75%;
}
#endai table.table_pass td{
	border:solid #999 1px;
	padding:10px;	
	vertical-align: middle;
}
#endai table.table_pass td.header{
	border:solid #999 1px;
	background: #DFF3FF;
	text-align: center;
}
#endai table.table_pass td:nth-child(1){
	white-space: nowrap;
}
/*#endai table.cate td{
	border:solid #999 1px;
	padding:10px;
}
#endai table.cate th{
	border:solid #999 1px;
	padding:10px;
	text-align: left;
	background: #CCFFFF;
}
#endai div.box01 {
	padding:4px;
	width:70%;
}
#endai .waku {
	width:90%;
	padding:10px 20px;
	border: solid 1px #3cf;
	letter-spacing:2px;
}
#endai table.kazari {
	width:90%;
}
#endai table.kazari td {
	border: solid 1px #3cf;
}
#endai table.kazari sup {
	vertical-align: super;
}
#endai table.kazari sub {
	vertical-align: sub;
}*/
/* ---ボタン--- */
#endai .btn_pdf li {
	margin:5px;
	width:200px;
	border:solid 1px #999;
	border-radius:5px;
	background:#900;
	float:left;
}
#endai .btn_pdf li a {
	padding:10px 0;
	display:block;
	text-align:center;
	font-size:110%;
	font-weight:bold;
	color:#fff;
}
#endai .btn_pdf li:hover {
	opacity:0.7;
}
#endai li.ppt_iro {
	background:#f60;
}
/*参加登録*/
#endai table.tbl_sanka{
	margin: 20px  0;
	width: 88%;
}
#endai table.tbl_sanka td{
	border:solid #999 1px;
	padding:10px;
}
#endai table.tbl_sanka th{
	border:solid #999 1px;
	padding:10px;
	text-align: center;
	background: #CCFFFF;
}
#endai table.tbl_sanka td:nth-of-type(1) {
	width: 35%;
}
#endai table.tbl_sanka td:nth-of-type(2) {
	width: 40%;
	text-align: right;
	font-size: 110%;
	font-weight: bold;
}
#endai table.tbl_sanka td:nth-of-type(3) {
	text-align: right;
	font-size: 110%;
	font-weight: bold;
}
#endai table.tbl_consin{
	width: 70%;
}
/*参加登録フォーム*/
#endai dl.frm_sanka {
	margin: 0 0 20px;
}
#endai dl.frm_sanka dt {
	float: left;
	font-weight: bold;
}
#endai dl.frm_sanka dd {
	margin: 0 0 20px 14em;
}
#endai div.poster{
	display: flex;
}
#endai div.poster ul.disc li{
	margin: 10px 0 0 0;
}
#endai div.poster img{
	margin: 10px 0 0 20px;
	width: 150px;
}
/*　■■■ クリティカルパス展示募集 ■■■　*/
#path {
	margin:0 0 150px 3em;
	width:90%;
}
#path h3 {
	margin: 50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
	clear:both;
}
#path h4 {
	margin:25px 0 5px;
	font-size:105%;
	font-weight:bold;
	color:#000;
	clear:both;
}
#path div.kaiin_only {
	border: solid 2px #f00;
	margin: 25px auto 40px auto;
	padding: 15px 20px;
	width: 90%;
}
#path p.head_no {
	text-indent: -1.6em;
	margin: 20px 0 0 1.6em;
}
#path p.head_no span {
	font-weight: bold;
}
#path dl.online dt {
	margin:20px 0 10px;
	font-size:105%;
	font-weight:bold;
	color:#333333;
}
#path dl.online dd {
	margin:0 0 0 20px;
}
#path dl.online dd.kikan {
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#path dl.online dd.kikan span {
	font-size:150%;
}
#path dl.online dd.kikan_encho {
	margin:10px 0 0 20px;
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#path dl.online dd.kikan_encho span {
	font-size:150%;
}
#path dl.online dd.kikan_encho p.encho {
	margin:0 0 0 12em;
	color:#FF0000;
}
#path dl.online dd.kikan_encho p.text {
	margin:0 0 10px;
	font-size:60%;
	font-weight:normal;
	color:#FF0000;
}
#path dl.online dd.kikan_encho span.torikeshi {
	font-size:85%;
	text-decoration:line-through;
}
#path dl.online li {
	margin:0 10px 10px 0;
	padding: 0.51em 0;
	min-width: 180px;
	text-align: center;
	border-radius:10px;
	border:solid 1px #999999;
	font-size:120%;
	float:left;
	color:#FFFFFF;
}
#path dl.online li.shinki {
	background-color:#FF0000;
}
#path dl.online a:link li.shinki, #path dl.online1 a:visited li.shinki {
	color:#FFFFFF;
}
#path dl.online a:hover li.shinki {
	color:#FFFFCC;
	background-color:#FF6666;
}
#path dl.online li.syusei {
	background-color:#003399;
}
#path dl.online a:link li.syusei, #path dl.online a:visited li.syusei {
	color:#FFFFFF;
}
#path dl.online a:hover li.syusei {
	color:#FFFFCC;
	background-color:#0066CC;
}
#path dl.online li.owari {
	opacity:0.6;
}
#path ul.mt20 {
	margin-top: 20px;
}
#path .jimukyoku {
	border: solid 2px #ccc;
	padding: 1em;
}
#path ul.category {
	column-count: 2;
	margin-left: 25px;
	width: 600px;
}
#path ul.list01 {
	margin:24px 0 0 2em;
	list-style-type:disc;
	line-height:140%;
}
#path ul.list01 li {
	margin:0 0 14px;
}
#path table.bosyu {
	margin: 10px 0 0 0;
}
#path table.bosyu th {
	border: solid 1px #000;
	padding: 10px 20px;
	text-align: center;
	vertical-align: middle;
	background-color: #D9EAF3;
	font-weight: normal;
}
#path table.bosyu td {
	border: solid 1px #000;
	padding: 10px 20px;
	text-align: center;
	vertical-align: middle;
}
#path div.poster{
	display: flex;
}
#path div.poster ul.disc li{
	margin: 10px 0 0 0;
}
#path div.poster img{
	margin: 10px 0 0 20px;
	width: 150px;
}
#path div.redback{
	border-bottom: 2px solid #F00;
	border-top: 2px solid #F00;
	margin: 30px 0 0 0;
	padding: 10px 20px;
	background-color: #FFE6E6;
}
/*　■■■ 指定演題登録 ■■■　*/
#endai2 {
	margin:0 0 150px 3em;
	width:90%;
}
#endai2 h3 {
	margin: 50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
	clear:both;
}
#endai2 h4 {
	margin:25px 0 5px;
	font-size:105%;
	font-weight:bold;
	color:#000;
	clear:both;
}
#endai2 dl.online dt {
	margin:20px 0 10px;
	font-size:105%;
	font-weight:bold;
	color:#333333;
}
#endai2 dl.online dd {
	margin:0 0 0 20px;
}
#endai2 dl.online dd.kikan {
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#endai2 dl.online dd.kikan span {
	font-size:150%;
}
#endai2 dl.online dd.kikan_encho {
	margin:10px 0 0 20px;
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#endai2 dl.online dd.kikan_encho span {
	font-size:150%;
}
#endai2 dl.online dd.kikan_encho p.encho {
	margin:0 0 0 11em;
	color:#FF0000;
}
#endai2 dl.online dd.kikan_encho p.text {
	margin:0 0 10px;
	font-size:60%;
	font-weight:normal;
	color:#FF0000;
}
#endai2 dl.online dd.kikan_encho span.torikeshi {
	font-size:85%;
	text-decoration:line-through;
}
#endai2 dl.online li {
	margin:0 10px 10px 0;
	padding: 0.51em 0;
	min-width: 180px;
	text-align: center;
	border-radius:10px;
	border:solid 1px #999999;
	font-size:120%;
	float:left;
	color:#FFFFFF;
}
#endai2 dl.online li.shinki {
	background-color:#FF0000;
}
#endai2 dl.online a:link li.shinki, #endai2 dl.online1 a:visited li.shinki {
	color:#FFFFFF;
}
#endai2 dl.online a:hover li.shinki {
	color:#FFFFCC;
	background-color:#FF6666;
}
#endai2 dl.online li.syusei {
	background-color:#003399;
}
#endai2 dl.online a:link li.syusei, #endai2 dl.online a:visited li.syusei {
	color:#FFFFFF;
}
#endai2 dl.online a:hover li.syusei {
	color:#FFFFCC;
	background-color:#0066CC;
}
#endai2 dl.online li.owari {
	opacity:0.6;
}
#endai2 ul.mt20 {
	margin-top: 20px;
}
#endai2 .jimukyoku {
	border: solid 2px #ccc;
	padding: 1em;
}
#endai2 ul.category {
	column-count: 2;
	margin-left: 25px;
	width: 600px;
}
/*　■■■■■■■■■ 採択演題 ■■■■■■■■■　*/
#saitaku {
	margin: 50px 0 150px 3em;
	width:90%;
}
#saitaku .saitaku_btn {
	background: #990000;
	border: solid 1px #999999;
	border-radius: 5px;
	box-sizing: border-box;
	color: #FFF;
	font-size: 110%;
	font-weight: bold;
	line-height: 1;
	display: inline-block;
	min-width: 180px;
	padding: 0.8em 1.2em;
	text-align: center;
	vertical-align: bottom;
	white-space: nowrap;
}
#saitaku .saitaku_btn:hover {
	opacity: 0.8;
}
#saitaku h3 {
	margin: 50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
}
#saitaku table {
	font-size: 95%;
	table-layout: fixed;
	width: 100%;
}
#saitaku table th,
#saitaku table td {
	border:solid #999 1px;
	padding: 0.75em;
	text-align: center;
	vertical-align: middle;
}
#saitaku table th {
	color: #333;
	background: #DDEBF7;
	font-weight: bold;
}
#saitaku table tr > *:nth-child(1) {
	width: 3em;
}
#saitaku table tr > *:nth-child(2) {
	width: 4em;
}
#saitaku table tr > td:nth-child(3) {
	text-align: left;
}
/*　■■■■■■■■■ プログラム ■■■■■■■■■　*/
#pro {
	display: none;
	margin:0 0 150px 3em;
	width:90%;
}
#pro h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:solid 1px #666666;
	font-size:110%;
	font-weight:bold;
}
#pro h3  span.time{
	float: right;
	font-weight: normal;
	font-size: 90%;
}

#pro .session {
	margin: 50px 0;
	line-height: 1.65;
}
#pro .heading {
	margin: 0 0 15px;
	padding:0 0 3px;
	border-bottom:solid 1px #666666;
	display: flex;
	align-items: baseline;
	gap: 0 1em;
}
#pro .heading .name {
	font-size:110%;
	font-weight:bold;
}
#pro .heading .time {
	font-size: 90%;
}
#pro .heading .venue {
	font-size: 90%;
	margin-left: auto;
	padding-left: 1em;
}
#pro .zacho {
	margin: 10px 0;
	display: flex;
	justify-content: flex-end;
}
#pro .zacho > *:nth-child(1) {
	flex: none;
}
#pro .theme {
	font-size:110%;
	font-weight:bold;
	margin: 20px 0;
}
#pro .endai {
	margin: 20px 0 20px 2em;
	display: flex;
	gap: 1em;
}
#pro .num {
	font-size: 110%;
	font-weight: bold;
	color: #666666;
}
#pro .title {
	font-size: 105%;
	font-weight: bold;
	margin-bottom: 5px;
}
#pro .enja {
	display: flex;
	align-items: baseline;
	gap: 0 1em;
	margin-left: 3em;
}
#pro .enja2 {
	display: flex;
	flex-direction: column;
	margin-left: 1em;
}
#pro .zoku {
	font-size: 85%;
}

/*■PDFダウンロード*/
#pro ul.pdf {
	margin:10px 0 0 0;
}
#pro ul.pdf:after {
	content: "";
	clear: both;
	display: block;
}
#pro ul.pdf li {
	margin: 0 0 20px 10px;
	padding:0px auto;
	width:200px;
	border:solid 1px #333333;
	border-radius:5px;
	background:#990000;
	float:left;
	text-align:center;
}
#pro ul.pdf li:hover {
	opacity:0.8;
}
#pro ul.pdf li a {
	display:block;
	padding:10px 0;
	color:#FFFFFF;
	font-weight:bold;
	font-size:110%;
}
#pro table {
	margin: 20px auto 0 auto;
	font-size:90%;
	width: 95%;
	
}
#pro table td{
	border:solid #999 1px;
	padding:7px;
	vertical-align: middle;
}
#pro table th{
	border:solid #999 1px;
	padding:7px;
	background: #E4F2FF;
	text-align: center;
	vertical-align: center;
}
#pro table td:nth-of-type(1) {
	width: 14%;
	text-align: center;
	white-space: nowrap;
	
}
#pro table td:nth-of-type(2) {
	width: 10%;
	text-align: center;
}
#pro table td:nth-of-type(3) {
	width: 10%;
	text-align: center;
}
#pro table td:nth-of-type(4) {
	text-align: center;
}
#pro table td:nth-of-type(5) {
	text-align: center;
}
/*　■■■■■■■■■ プログラム ■■■■■■■■■　*/
#pro2 {
	margin:0 0 150px 3em;
	width:90%;
}
#pro2 h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:solid 1px #666666;
	font-size:110%;
	font-weight:bold;
}
#pro2 h3  span.time{
	float: right;
	font-weight: normal;
	font-size: 90%;
}
/*■PDFダウンロード*/
#pro2 ul.pdf {
	margin:10px 0 0 0;
}
#pro2 ul.pdf:after {
	content: "";
	clear: both;
	display: block;
}
#pro2 ul.pdf li {
	margin: 0 0 20px 10px;
	padding:0px auto;
	width:200px;
	border:solid 1px #333333;
	border-radius:5px;
	background:#990000;
	float:left;
	text-align:center;
}
#pro2 ul.pdf li:hover {
	opacity:0.8;
}
#pro2 ul.pdf li a {
	display:block;
	padding:10px 0;
	color:#FFFFFF;
	font-weight:bold;
	font-size:110%;
}
#pro2 div.div_seminar{
	display: flex;
}
#pro2 figure.program  img{
	border: solid 1.2px #595959;
	width: 730px;
}
#pro2 figure.seminar  img{
	border: solid 1.2px #595959;
	width: 200px;
	margin:  0 20px 0 0;
}
#pro2 .pdf_pro {
	margin: 1em 0;
	padding: 10px 0 10px 50px;
	position: relative;
}
#pro2 .pdf_pro:before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(img/pdf.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
/*#pro figure.seminar:after{
	content: "" ;
	display: inline-block;
	background-image: url(img/pdf.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
}*/
#pro2 figure.abstract  img{
	border: solid 1.2px #595959;
	/* width: 600px;
	height: 847px;*/
	/*width: 730px;*/
	width: 150px;
}
#pro2 figure.abstract:after{
	content: "" ;
	display: inline-block;
	background-image: url(img/pdf.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
}
/*　■■■■■■■■■ 参加登録 ■■■■■■■■■　*/
#sanka {
	margin:0 0 150px 3em;
	width:90%;
}
#sanka h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
/*　■■■■■■■■■ 発表データ事前登録 ■■■■■■■■■　*/
#jizen {
	margin:0 0 150px 3em;
	width:90%;
}
#jizen h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:solid 1px #666666;
	font-size:110%;
	font-weight:bold;
	color: #242424;
}
#jizen p.midashi {
	margin:10px 0 15px;
	padding:0 0 3px;
	font-size:100%;
	font-weight:bold;
}
#jizen a.pdf_button  {
	margin: 20px 0 0 0;
	border-radius: 5px;
	background-color: #F22C2F;
	padding: 10px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 110%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#jizen a.pdf_button2  {
	margin: 20px 0 0 0;
	border-radius: 5px;
	background-color: #2D84FF;
	padding: 10px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 110%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#jizen a.pdf_button:hover{
	opacity: 0.5;
}
#jizen table {
	margin: 0px 0px 0 auto;
	font-size:95%;
	width: 98%;
	
}
#jizen table td{
	border:solid #999 1px;
	padding:7px;
	vertical-align: middle;
}
#jizen table th{
	border:solid #999 1px;
	padding:7px;
	background: #E4F2FF;
	text-align: center;
	vertical-align: center;
}
#jizen table td:nth-of-type(1) {
	width: 25%;
	text-align: center;
	white-space: nowrap;
	
}
#jizen table td:nth-of-type(2) {
	width: 20%;
	text-align: center;
	white-space: nowrap;
}
#jizen table td:nth-of-type(3) {
	/*width: 10%;
	text-align: center;*/
}

/*　■■■■■■■■■ 参加者 ■■■■■■■■■　*/
#annai {
	margin: 50px 0 150px 3em;
	width:90%;
}
#annai h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#annai h4 {
	margin:35px 0 5px;
	font-size:105%;
	font-weight:bold;
	color:#315B7B;
}
#annai .ml_a {
	margin-left: 1.9em;
}
#annai dl.annai_ol dt {
	font-weight: bold;
}
#annai dl.annai_ol dd {
	margin: 5px 0 10px 1.65em;
}
#annai table.sankahi th,
#annai table.sankahi td{
	border:solid #999 1px;
	padding:10px;
	text-align: center;
	vertical-align: middle;
}
#annai table.sankahi th {
	font-weight: normal;
	background: #DFF3FF;
	border:solid #999 1px;
}
#annai .onde_kikan {
	border: solid 2px red;
	margin: 10px 0 0 0;
	padding: 25px 10px 20px;
	width: 500px;
	text-align: center;
}
#annai .kikan {
	color: #f00;
	font-size: 150%;
	font-weight: bold;
}
#annai .kikan span {
	font-size: 150%;
}
#annai .encho {
	color: #f00;
	font-size: 150%;
	font-weight: bold;
	text-align: right;
	margin: 0 60px 10px 0;
}
#annai .encho span {
	font-size: 150%;
}
#annai  div.kikan_encho {
	margin:10px 0 0 0px;
	font-size:150%;
	font-weight:bold;
	/*color:#003300;*/
	color: #F00;
}
#annai  div.kikan_encho span {
	font-size:150%;
}
#annai  div.kikan_encho p.encho {
	margin:0 0 0 12em;
	color:#FF0000;
}
#annai  div.kikan_encho p.text {
	margin:0 0 10px;
	font-size:60%;
	font-weight:normal;
	color:#FF0000;
}
#annai  div.kikan_encho span.torikeshi {
	font-size:85%;
	text-decoration:line-through;
}
#annai .btn_pdf li {
	margin:5px;
	width:200px;
	border:solid 1px #999;
	border-radius:5px;
	background:#900;
	float:left;
}
#annai .btn_pdf li a {
	padding:10px 5px;
	display:block;
	text-align:center;
	font-size:110%;
	font-weight:bold;
	color:#fff;
}
#annai .btn_pdf li:hover {
	opacity:0.7;
}
#annai  .corona{
	margin:60px  auto 30px;
	text-align: center;
	background-color: #B9B9B9;
	width: 60%;
	font-size: 120%;
	font-weight: bold;
	padding: 10px 20px;
	border-radius: 20px;
	
}
#annai a span.blue:hover {
	color: #FF0004;
}
#annai table.tbl1 th {
	background: #DFF3FF;
	font-weight: normal;
}
#annai table.tbl1 th,
#annai table.tbl1 td {
	border: solid #999 1px;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
}
/*　■■■■■■■■■ 座長・演者の皆様へ ■■■■■■■■■　*/
#annai2 {
	margin:0 0 200px 3em;
	width:90%;
}
#annai2 h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
}
#annai2 h4 {
	margin:35px 0 5px;
	font-size:105%;
	font-weight:bold;
}
#annai2 ul {
	margin: 0 0 0 2em;
}
#annai2 ul li {
	margin: 0 0 0 2em;
	text-indent: -2em;
}
#annai2 .poster {
	float: right;
	margin: 20px 0 90px 20px;
}
/*#annai2 table {
	margin: 20px 0 0 50px;
	width: 70%;
	
}
#annai2 table.jikan th{
	border:solid #999 1px;
	padding:10px;
	background: #CCFFFF;
}
#annai2 table.jikan td{
	border:solid #333 1px;
	padding:10px;
	text-align: center;
}
#annai2 table.jikan td:nth-of-type(1){
	width: 30%;
}
#annai2 table.jikan td:nth-of-type(2){
	width: 30%;
}
#annai2 table.jikan td:nth-of-type(3){
	width: 30%;
}
#annai2 ul.deci li{
	margin-top: 5px;
}*/
/*　■■■■■■■■■ 研修単位について ■■■■■■■■■　*/
#seminar {
	margin:0 0 200px 3em;
	width:90%;
}
#seminar h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#seminar table.table_fri {
	width: 100%;
}

#seminar table.table_fri td{
	border:solid #000 1px;
	padding:7px;
	vertical-align: middle;
	text-align: center;
	font-size: 80%;
}
#seminar table.table_fri td.small{
	padding:2px;
	font-size: 50%;
}
#seminar table.table_fri tr.top_row td{
	background-color: #E4F5FF;
}
#seminar table.table_fri tr.data td:nth-child(1){
	width: 10%;
}
#seminar table.table_fri tr.data td:nth-child(2){
	width: 8%;
}
#seminar table.table_fri tr.data td:nth-child(3){
	width: 8%;
}
#seminar table.table_fri tr.data td:nth-child(4){
	width: 11%;
}
#seminar table.table_fri tr.data td:nth-child(5){
	/*width: 30%;*/
}
#seminar table.table_fri tr.data td:nth-child(6){
	width: 7%;
}
#seminar table.table_fri tr.data td:nth-child(7){
	width: 7%;
}
#seminar table.table_fri tr.data td:nth-child(8){
	width: 7%;
}
#seminar table.table_fri tr.data td:nth-child(9){
	width: 6%;
}
#seminar table.table_fri tr.data td:nth-child(10){
	width: 8.5%;
}

#seminar table.table_sat {
	width: 100%;
}
#seminar table.table_sat td{
	border:solid #000 1px;
	padding:7px;
	vertical-align: middle;
	text-align: center;
	font-size: 80%;
}
#seminar table.table_sat td.small{
	padding:2px;
	font-size: 50%;
}
#seminar table.table_sat tr.top_row td{
	background-color: #E4F5FF;
}
#seminar table.table_sat tr.data td:nth-child(1){
	width: 10%;
}
#seminar table.table_sat tr.data td:nth-child(2){
	width: 8%;
}
#seminar table.table_sat tr.data td:nth-child(3){
	width: 8%;
}
#seminar table.table_sat tr.data td:nth-child(4){
	width: 11%;
}
#seminar table.table_sat tr.data td:nth-child(5){
	/*width: 30%;*/
}
#seminar table.table_sat tr.data td:nth-child(6){
	width: 7%;
}
#seminar table.table_sat tr.data td:nth-child(7){
	width: 7%;
}
#seminar table.table_sat tr.data td:nth-child(8){
	width: 7%;
}
#seminar table.table_sat tr.data td:nth-child(9){
	width: 6%;
}
#seminar table.table_sat tr.data td:nth-child(10){
	width: 8.5%;
}
#seminar table td.left{
	text-align: left;
}
/*　■■■■■■■■■ 宿泊案内 ■■■■■■■■■　*/
#accommodation {
	margin: 50px 0 150px 3em;
	width:90%;
}
#accommodation h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#accommodation .caution {
	font-size:130%;
	line-height: 160%;
	
}
/*　■■■■■■■■■ アクセス ■■■■■■■■■　*/
#access {
	margin: 50px 0 0 3em;
	width:90%;
}
#access h3 {
	margin:35px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
/*　■■■■■■■■■ リンク ■■■■■■■■■　*/
#link {
	margin:50px 0 0 3em;
	width:90%;
}
#link ul {
	margin:10px 0 0 30px;
	list-style:square;
}
#link li {
	margin-bottom: 1.5em;
	font-size:105%;
}
#link li a {
	margin-left: 0em;
	font-size:85%;
	text-decoration:underline;
}
/*　■■■■■■■■■ 演題に関する質問受付 ■■■■■■■■■　*/
#question {
	margin: 50px 0 150px 3em;
	width:90%;
}
#question h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#question table.input_form {
	width: 80%;
}
#question table.input_form td {
	border: solid 1.5px #2262C6;
	padding: 10px 10px;
}
#question table.input_form td:nth-child(1) {
	background-color: #EBF7FF;
	color: red;
	vertical-align: middle;
	width: 30%;
}
/*　■■■■■■■■■ 汎用 ■■■■■■■■■　*/
#etc {
	margin:30px 0 0 3em;
	width:90%;
}

