﻿/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/*　■■■■■■■■■ 共通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:#000;
}
.red {
	color:#F00;
}
.white {
	color: #FFF;
}
.blue {
	color: #00F;
}
.navy {
	color:#006;
}
.gray {
	color:#CCC;
}
.green {
	color:#090;
}
.orange {
	color: #F60;
}
.pink {
	color:#F69;
}
/* 背景 */
.back_gray {
	background-color:#CCC;
}
.back_white {
	background-color:#FFF;
}
/*　■■■■■■■■■ フォント ■■■■■■■■■　*/
/* サイズ */
.s400 {
	font-size:400%;
}
.s200 {
	font-size:200%;
}
.s160 {
	font-size:160%;
}
.s140 {
	font-size:140%;
}
.s120 {
	font-size:120%;
}
.s110 {
	font-size:110%;
}
.s95 {
	font-size:95%;
}
.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;
}
/*　■■■■■■■■■ 文字配置 ■■■■■■■■■　*/
/* 行の高さ */
.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;
}
/* マージン・パディング */
/* 上 */
.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;
}
.ml20 {
	margin-left:2em;
}
.ml30 {
	margin-left:3em;
}
.ml40 {
	margin-left:4em;
}
/*　■■■■■■■■■ テーブル ■■■■■■■■■　*/
table {
	font-size:90%;
}
table.kihon td{
	border:solid #999 1px;
	padding:7px;
}
table.kihon th{
	border:solid #999 1px;
	padding:7px;
}
table.kihon2 td{
	border:solid #999 1px;
	padding:14px;
}
table.kihon2 th{
	border:solid #999 1px;
	padding:14px;
}
table.wakunashi tr td{
	border:none;
	padding:7px;
}
/*　■■■■■■■■■ リスト ■■■■■■■■■　*/
/* 算用数字 */
.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;
}
/* dlを使ったシンプルなリスト その１ */
dl.list01 dt {
	margin:15px 0 5px;
	font-size:105%;
	font-weight:bold;
}
dl.list01 dt span {
	margin:0 0 0 5px;
	font-size:85%;
	font-weight:normal;
}
dl.list01 dd {
	margin:0 0 0 1em;
}
/*　■■■■■■■■■ その他 ■■■■■■■■■　*/
/* 画像の枠線など */
.img_border {
	padding:1px;
	border:solid 1px #666;
	background-color: #FFF;
}
/* ページトップへ */
.toTop {
	clear:both;
	text-align:right;
	margin:15px 3em 54px 0;
	font-size:85%;
}
.page-top {
	position: fixed;
	bottom: 60px;
	right: 40px;
	padding: 18px 0 0 8px;
	width:50px;
	height:40px;
	background: #333333;
	background: #000;
	-webkit-border-radius: 30px;
	-moz-border-radius: 20px;
	border-radius: 30px;
	font-size: 12px;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
	text-decoration:none;
}
.page-top:link, .page-top:visited {
	color:#FFFFFF;
}
.page-top:hover {
	background:#999999;
	color:#FF0000;
	opacity: 1.0;
}
/* 準備中 */
.const {
	margin:100px 0 0 100px;
	font-size:300%;
	color:#999;
	line-height:240%;
}
.const span {
	margin-left:40px;
	font-size:240%;
}
/* ボタン */
ul.btn01 {
}
ul.btn01 li {
	margin:0 20px 5px 0;
	padding:5px;
	width:240px;
	height:40px;
	border:solid 1px #333;
	border-radius:3px;
	background:#fc6;
	float:left;
}
ul.btn01 a:link li, ul.btn01 a:visited li {
	color:#000;
}
ul.btn01 a:hover li {
	opacity:0.7;
	color:#F00;
}
/* 住所 */
dl.address {
	margin:7px 0 0;
}
dl.address dt {
	margin:10px 0 5px;
	margin-top: 1em;
	line-height:120%;
	font-weight:bold;
}
dl.address dt.s {
	margin:0 0 7px;
	line-height:120%;
	font-weight:bold;
	font-size:80%;
}
dl.address dd {
	line-height:120%;
}
dl.address a:visited {
	color:#000;
}
dl.address a:link {
	color:#000;
}
dl.address a:hover {
	color:#F00;
}
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/*　■■■■■■■■■ ページの構造 ■■■■■■■■■　*/
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/* ------------ ボディ -----------*/
body {
	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height:165%;
	background: #FFFFFF;
}
/*　■■■■■■■■■ ヘッダ ■■■■■■■■■　*/
header {
	position:fixed;
	z-index:1;
	top:0px;
	left:0px;
	width:100%;
	height:100px;
	background: #147;
	min-width:1000px;
	border-top: solid 10px #000033;
	box-sizing: border-box;
}
/* ------------ タイトル -----------*/
header .title {
	margin: 11px auto 0;
	width:1000px;
}
header h1 {
	color: #FFF;
	font-size: 29px;
	font-weight: bold;
	line-height: 1.2;
	margin: 0 10px;
	text-align: left;
}
header h1 .kai {
	font-size:85%;
	margin-right: 0.1em;
}
/*　■■■■■■■■■ コンテンツ ■■■■■■■■■　*/
#sec_con {
	display: flex;
	flex-flow: row, wrap;
	margin:0 auto;
	padding:100px 0 50px;
	box-sizing: border-box;
	width:1000px;
	background:#FFFFFF;
}
/*#sec_con:after {
	content: "";
	clear: both;
	display: block;
}*/
#sec_con .cl {
	order: 1;
	margin-left: 10px;
	width:750px;
}
#sec_con .cr {
	order: 2;
	margin: 0 10px;
	width:220px;
	min-height:1000px;
}
/* ------------ index.htmlの開催概要 -----------*/
#sec_con .main {
	height:654px;
	background: url("img/image.jpg") 0% 0% no-repeat;
	overflow: hidden;
	position: relative;
	line-height: 1.5;
}
/* ------------ サイド -----------*/
.atcl_side {
	margin: 0 5px;
}
img#img_jimukyoku {
	display: block;
}
div.sanka_entry {
	background: #fff;
	border: solid 3px #f00;
	/*padding: 1.5em;*/
	/*text-align: center;*/
	position: absolute;
	left: 20px;
	/*top: 20px;*/
	bottom: 10px;
	/*width: 300px;*/
	height: 200px;
	width: 330px;
	padding: 1.5em 0.7em;
}
div.sanka_entry p.small{
	font-size: 70%;
}
div.sanka_entry .btn{
	background: #3366cc;
	border-radius: 5px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1.3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 110%;
	font-weight: bold;
	min-height: 3.5em;
	min-width: 100%;
	padding: 0.5em 1.2em;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
div.sanka_entry a.btn:hover {
	opacity: 0.8;
}
div.sanka_entry_mobile {
	display: none;
}
div.sanka_entry_mobile .btn{
	background: #3366cc;
	border-radius: 5px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1.3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 110%;
	font-weight: bold;
	min-height: 3.5em;
	min-width: 100%;
	padding: 0.5em 1.2em;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
div.web_entry {
	background: #fff;
	border: solid 3px #f00;
	padding: 1.5em ;
	text-align: center;
	position: absolute;
	right: 20px;
	/*top: 20px;*/
	bottom: 10px;
	width: 300px;
	height: 200px;
}
div.web_entry .btn{
	background: #3366cc;
	border-radius: 5px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1.3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 110%;
	font-weight: bold;
	min-height: 3.5em;
	min-width: 100%;
	padding: 0.5em 1.2em;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
div.web_entry a.btn:hover {
	opacity: 0.8;
}
div.web_entry_mobile  {
	display: none;
}
div.web_entry_mobile .btn{
	background: #3366cc;
	border-radius: 5px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1.3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 110%;
	font-weight: bold;
	min-height: 3.5em;
	min-width: 100%;
	padding: 0.5em 1.2em;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
#entry_info .item {
	background: #fff;
	border: solid 3px #f00;
	box-sizing: border-box;
	flex: 0 0 350px;
	padding: 1.5em;
	text-align: center;
}
#entry_info .btn {
	background: #3366cc;
	border-radius: 5px;
	box-sizing: border-box;
	color: #FFF;
	line-height: 1.3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 110%;
	font-weight: bold;
	min-height: 3.5em;
	min-width: 100%;
	padding: 0.5em 1.2em;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
#entry_info a.btn:hover {
	opacity: 0.8;
}
div.side_ad {
	margin: 30px 0 0;
	/*display: flex;
	justify-content: center;
	flex-direction: column;*/
}
div.side_ad figure{
	margin: 0 0 0 10px;
}
div.side_ad  img{
	width: 200px;
	margin: 0 auto;
}
/* ------------ ナビ -----------*/
nav {
	margin:5px 0 0 0;
}
nav li:nth-of-type(n+2) {
	margin-top: 5px;
}
nav li a {
	display:block;
	padding:10px 15px;
	font-size: 15px;
	font-weight:bold;
	border: 1px solid #999;
	border-radius:5px;
}
nav li a:before {
	content: "\00258e";
	color:#333333;
}
nav li a:link, nav li a:visited {
	color: #333;
}
nav li a:hover {
	background: #CCC;
	color: #F00;
}
nav li.back > a {
	background: #e2f2ff;
}
nav li.back > a:hover {
	background: #CCC;
}
nav li.gaibu a:after {
	content:"";
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url(../img/gaibu.png);
	background-size: contain;
	vertical-align: -3px;
	margin-left: 5px;
}
/* ------------ バー -----------*/
.bar {
	margin: 20px 0 15px 0px;
	padding:7px 0 7px 2em;
	font-size:120%;
	font-weight:bold;
	background: #147;
	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 {
	margin-top: 20px;
	margin-bottom: 15px;
	padding:5px 0 5px 1em;
	font-size:115%;
	font-weight:bold;
	background: #147;
	box-shadow:1px 1px 1px #000;
	color:#FFFFFF;
}
/* 更新情報 */
.news {
	margin:0 0 0 20px;
	width:95%;
	height:400px;
	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;
}

#sec_con article.atcl00 {
	margin: 50px auto 150px;
	width: 90%;
}
/*#sec_con article.atcl00 > :first-child {
	margin-top: 0;
}*/
#oshirase {
	border: solid 1px #000;
	margin: 20px 15px;
	padding: 20px 25px;
	font-size: 100%;
}
#oshirase div.bun p {
	text-indent: 1em;
	margin: 10px 0 0 0;
}
/*　■■■■■■■■■ フッタ ■■■■■■■■■　*/
footer .copy {
	display:block;
	margin:0 auto;
	padding-top: 10px;
	width:1000px;
	text-align:right;
	font-size:80%;
	color:#333333;
	line-height: 150%;
}
footer .copy a {
	font-size:90%;
	color:#333333;
}

/* 印刷用 */
@media print {
	header {
		position:static;
	}
	#sec_con {
		padding-top:0;
	}
}
/*　■■■■■■■■■ 挨拶 ■■■■■■■■■　*/
#aisatsu {
	margin: 40px 0 150px 3em;
	width:90%;
}
#aisatsu h3 {
	margin:0 0 20px 0;
	font-size:140%;
	text-align: center;
}
/* #aisatsu .kaicho {
	float: right;
	text-align: center;
	margin: 0 0 20px 30px;
	max-width: 185px;
} */
 #aisatsu .kaicho {
	display: flex;
	gap: 1em 2em;
	align-items: center;
}
#aisatsu .bun {
	font-size:105%;
	line-height: 1.8;
}
#aisatsu .bun p {
	margin:0 0 15px;
	text-indent:1em;
}
/*　■■■■■■■■■ 開催概要 ■■■■■■■■■　*/
#gaiyo {
	margin: 50px 0 150px 3em;
	width:90%;
}
#gaiyo h4 {
	margin:10px 0 0;
	font-size:105%;
	font-weight:bold;
}
#gaiyo dt {
	padding:5px 0;
	width: 8em;
	text-align:center;
	background: #4683b2;
	border:solid 1px #CCCCCC;
	border-radius:5px;
	font-weight:bold;
	line-height:110%;
	float:left;
	color:#fff;
}
#gaiyo dt .nimoji {
	letter-spacing:1em;
}
#gaiyo dd {
	margin:0 0 20px 10em;
	padding:3px 0 0 ;
}
/*　■■■■■■■■■ プログラム ■■■■■■■■■　*/
/*#pro {
	margin:30px 0 150px 3em;
	width:90%;
}
#pro h3 {
	margin:50px 0 3px;
	padding:0 0 3px 5px;
	border-bottom: solid 1px #000;
	font-weight:bold;
	font-size:110%;
	clear:both;
}
#pro h3 span {
	float:right;
	margin-right:10px;
	font-weight:normal;
	font-size:90%;
}
#pro figure.img1 img {
	max-width: 600px;
	height: auto;
}
#pro figure.img2 img {
	margin-left: -70px;
	max-width: 800px;
	height: auto;
}*/
#pro {
	margin:50px 0 150px 3em;
	width:90%;
}
#pro h3 {
	margin:50px 0 3px;
	padding:0 0 3px;
	border-bottom: solid 1px #000;
	font-weight:bold;
	font-size:110%;
}
#pro .pdf {
	margin: 1em 0;
	padding: 10px 0 10px 50px;
	position: relative;
}
#pro .pdf: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 a {
	display: inline-block;
}*/
/*#pro figure img {
	display: block;
}*/
/* #pro figure img {
	border: solid 1px #666;
	display: block;
} */
#pro figure img {
	border: solid 1px #999;
	vertical-align: bottom;
}
#pro figure img + img {
	margin-top: 10px;
}
/*■PDFダウンロード*/
#pro ul.pdf_dl {
	margin:10px 0 0 0;
}
#pro ul.pdf_dl:after {
	content: "";
	clear: both;
	display: block;
}
#pro ul.pdf_dl 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_dl li:hover {
	opacity:0.8;
}
#pro ul.pdf_dl li a {
	display:block;
	padding:10px 0;
	color:#FFFFFF;
	font-weight:bold;
	font-size:110%;
}
/*　■■■ 演題募集 ■■■　*/
#endai {
	margin: 50px 0 150px 3em;
	width:90%;
}
#endai h2 {
	margin:50px 0 15px -20px;
	font-size:120%;
	font-weight:bold;
}
#endai h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#endai h4 {
	margin:20px 0 5px;
	font-size:105%;
	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 11em;*/
	margin:0 0 0 11.3em;
	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 dl.moji dt {
	margin:20px 0 5px;
	font-size:105%;
	font-weight:bold;
}
#endai dl.moji dd {
	margin:0 0 0 10px;
	width:90%;
}
#endai .waku {
	width:90%;
	padding:10px;
	border: solid 1px #3cf;
	letter-spacing:2px;
}
#endai table.kazari {
	width:90%;
}
#endai table.kazari td {
	border: solid 1px #3cf;
}
.box_rinri {
	margin:20px 0 0 10px;
	padding:10px;
	width:80%;
	border:solid 1px #FF0000;
}
/*あああああああああああああああああああ*/
/*　■■■ 調整 ■■■　*/
#cs_ken, #riha_cs, #onaji {
	margin-top: -50px;
	padding-top: 50px;
}
/*.idx_gakkai {
	margin: 0;
}*/
.idx_gakkai li {
/*	margin: 0 0 10px;*/
/*	padding: 10px 20px;*/
/*	font-size: 110%;*/
/*	font-weight: bold;*/
	margin: 1em 0;
}
/*.idx_gakkai li:nth-of-type(1) {
	background: #003333;
	border: solid 1px #999999;
}*/
.idx_gakkai li:nth-of-type(1) a {
	background: #003333;
	border: solid 1px #999999;
}
/*.idx_gakkai li:nth-of-type(2) {
	background: #000033;
	border: solid 1px #999999;
}*/
.idx_gakkai li:nth-of-type(2) a {
	background: #000033;
	border: solid 1px #999999;
}
.idx_gakkai li a {
	color: #FFFFFF;

	font-size: 110%;
	font-weight: bold;
	display: block;
	padding: 10px 20px;
}
.idx_gakkai2 {
	margin: 10px 0 0 10px;
}
.idx_gakkai2 li {
	float: left;
	margin-right: 20px;
	font-size: 80%;
}
.idx_gakkai2 li a {
	text-decoration: underline;
}
.idx_gakkai2:after {
	content: "";
	clear: both;
	display: block;
}
#endai .gakkai {
	color: #333;
	background: #fddf9c;
	border: solid 1px #fbca5a;
	font-size: 120%;
	font-weight: bold;
	margin-top: 75px;
	padding: 0.5em 0;
	text-align: center;
	width: 100%;
}
#endai .gakkai_cs_ken {
	background: #003333;
	border: solid 1px #999999;
	color: #FFFFFF;
	font-size: 120%;
	font-weight: bold;
	margin-top: 75px;
	padding: 0.5em 0;
	text-align: center;
	width: 100%;
}
#endai .gakkai_riha_cs {
	background: #000033;
	border: solid 1px #999999;
	color: #FFFFFF;
	font-size: 120%;
	font-weight: bold;
	margin-top: 75px;
	padding: 0.5em 0;
	text-align: center;
	width: 100%;
}
.cs_ken {
	background: #EEEEEE;
	margin: 3px 0 0;
	padding: 10px 30px;
	border: solid 1px #999999;
}
.riha_cs {
	background: #EEEEEE;
	margin: 3px 0 0;
	padding: 10px 30px;
	border: solid 1px #999999;
}
/*■ダウンロード*/
#endai ul.dl {
	margin:10px 0 0 0;
}
#endai ul.dl:after {
	content: "";
	clear: both;
	display: block;
}
#endai ul.dl li {
	margin: 0 0 20px 5px;
	padding:0px auto;
	width:300px;
	border:solid 1px #333333;
	border-radius:5px;
	float:left;
	text-align:center;
}
#endai ul.dl li.pdf {
	background:#990000;
}
#endai ul.dl li.word {
	background:#35a;
}
#endai ul.dl li:hover {
	opacity:0.8;
}
#endai ul.dl li a {
	display:block;
	padding:10px 0;
	color:#FFFFFF;
	font-weight:bold;
	font-size:110%;
}
/*　■■■■■■■■■ 参加登録 ■■■■■■■■■　*/
#sanka {
	margin:50px 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;
}
#sanka .web_kikan {
	border: solid 1px #03a9f4;
	padding: 1em;
}
#sanka table.sankahi {
	font-size: 95%;
	table-layout: fixed;
	width: 100%;
}
#sanka table.sankahi th,
#sanka table.sankahi td {
	border:solid #999 1px;
	padding: 0.75em;
	text-align: center;
	vertical-align: middle;
}
#sanka table.sankahi th {
	font-weight: normal;
	text-align: left;
	width: 35em;
}
#sanka .attention > * {
	display: flex;
}
#sanka .attention > * > *:nth-child(1) {
	white-space: nowrap;
	padding-right: 0.75em;
}
#sanka .credit_card {
	border: solid 1px #999;
	padding: 1em;
}
#sanka .credit_card img {
	vertical-align: bottom;
}
#sanka .btn_list {
	display: flex;
	
}
#sanka .btn_list > * + * {
	margin-left: 1em;
}
#sanka .btn_list .setsumei{
	margin: 15px 0 0 0;
}
#sanka .btn {
	background: #ccc;
	border: solid 1px #ccc;
	box-sizing: border-box;
	color: #333;
	line-height: 1.65;
	display: inline-block;
	font-weight: bold;
	max-width: 100%;
	min-width: 10em;
	overflow: hidden;
	padding: 1em;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
#sanka a.btn:hover {
	color: #f00;
	text-decoration: underline;
}
#sanka .btn_yes {
	background: #DEEBF7;
	border: solid 2px #0070C0;
}
#sanka .btn_no {
	background: #FFE699;
	border: solid 2px #F4B183;
}
/*　■■■■■■■■■ 単位取得について ■■■■■■■■■　*/
#credit h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#credit h4 {
	margin:20px 0 5px;
	font-size:105%;
	font-weight:bold;
}
#credit table.t3 {
	line-height: 1.65;
	width: 100%;
	
}
#credit table.t3 th,
#credit table.t3 td {
	border:solid #999 1px;
	padding: 1em;
	text-align: left;
	vertical-align: middle;
}
#credit table.t3 th {
	color: #333;
	background: #eee;
	font-weight: bold;
	text-align: center;
}
#credit .field {
	border: solid 1px #999;
	padding: 1em;
}
/*　■■■■■■■■■ 演者の皆様へ ■■■■■■■■■　*/
#enja {
	margin: 50px 0 150px 3em;
	width:90%;
}
#enja h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666666;
	font-size:110%;
	font-weight:bold;
	color:#333333;
}
#enja dl.online dt {
	margin:20px 0 10px;
	font-size:105%;
	font-weight:bold;
	color:#333333;
}
#enja dl.online dd {
	margin:0 0 0 20px;
}
#enja dl.online dd.kikan {
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#enja dl.online dd.kikan span {
	font-size:150%;
}
#enja dl.online dd.kikan_encho {
	margin:20px 0 0 20px;
	font-size:150%;
	font-weight:bold;
	color:#003300;
}
#enja dl.online dd.kikan_encho span {
	font-size:150%;
}
#enja dl.online dd.kikan_encho p.encho {
	margin:0 0 0 3.5em;
	color:#FF0000;
}
#enja dl.online dd.kikan_encho p.text {
	margin:0 0 10px;
	font-size:60%;
	font-weight:normal;
	color:#FF0000;
}
#enja dl.online dd.kikan_encho span.torikeshi {
	font-size:85%;
	text-decoration:line-through;
}
#enja 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;
}
#enja dl.online li.upload {
	background-color:#FF0000;
}
#enja dl.online a:link li.upload, #enja dl.online a:visited li.upload {
	color:#FFFFFF;
}
#enja dl.online a:hover li.upload {
	color:#FFFFCC;
	background-color:#FF6666;
}
#enja dl.online li.owari {
	opacity:0.6;
}
#enja table.presen {
	font-size: 100%;
}
#enja table.presen th {
	text-align: right;
	white-space: nowrap;
}
#enja table.presen th,
#enja table.presen td {
	vertical-align: top;
}
#enja table.presen tr:nth-last-of-type(n+2) th,
#enja table.presen tr:nth-last-of-type(n+2) td {
	padding-bottom: 10px;
}
#enja .v_kikan {
	color:#003300;
	font-size:150%;
	font-weight:bold;
	line-height: 1.65;
	margin: 0 0 0 1em;
}
#enja .v_kikan_encho {
	color:#F00;
	font-size:150%;
	font-weight:bold;
	line-height: 1.65;
	margin: 0 0 0 1em;
}
#enja .btn_list {
	display: flex;
	flex-direction: column;
}
#enja .btn_list > * + * {
	/*margin-left: 3em;*/
	margin-top: 20px;
}
#enja .btn {
	background: #ccc;
	border: solid 1px #ccc;
	border-radius: 10px;
	box-sizing: border-box;
	color: #333;
	font-size: 110%;
	line-height: 1;
	display: inline-block;
	max-width: 100%;
	min-width: 14em;
	overflow: hidden;
	padding: 1em;
	text-align: center;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
#enja a.btn:hover {
	opacity: 0.8;
}
#enja .btn_1 {
	background: #DEEBF7;
	border: solid 2px #0070C0;
	font-weight: bold;
}
#enja .btn_2 {
	background: #E2F0D9;
	border: solid 2px #00B050;
}
#enja .btn_3 {
	background: #FFF2CC;
	border: solid 2px #F4B183;
}
#enja .btn.end {
	background: #ccc;
	border: solid 2px #999;
}
#enja a.hover:hover {
	opacity: 0.5;
}
.btn_mega {
	margin: 0;
}
.btn_mega a {
	display: block;
	padding: 10px;
	width: 250px;
	border: solid 1px #666666;
	border-radius: 5px;
	background: #CC0000;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 110%;
	text-align: center;
}
.btn_mega a:hover {
	opacity: 0.7;
}
/*　■■■■■■■■■ 参加の皆様へ ■■■■■■■■■　*/
#annai {
	margin:50px 0 150px 3em;
	width:90%;
}
#annai h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
/* #annai ul > li {
	margin-top: 1em;
	margin-bottom: 1em;
} */
/* #annai ul.disc > li {
	margin-top: 0.3em;
	margin-bottom: 0.3em;
} */
#annai ul.kakkoN > li {
	text-indent: -2em;
	margin-left: 2em;
}
#annai ul.sage > li {
	display: flex;
}
#annai ul.sage > li > *:nth-child(1) {
	white-space: nowrap;
}
#annai ul.sage > li > *:nth-child(2) {
	min-width: 0;
}
#annai ul > li .kome {
	font-size: 80%;
	vertical-align: top;
}
#annai ul > li .annotation {
	font-size: 90%;
	line-height: 1.5;
	margin-top: 0.4em;
	margin-left: 1em;
	text-indent: -1em;
}
#annai ul.li_row > li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
}
/* #annai table {
	margin: 10px 0 0 0;
}
#annai table th {
	border: solid 1px #000;
	padding: 10px 5px;
	text-align: center;
	vertical-align: middle;
	background-color: #E2EFFC;
}
#annai table td {
	border: solid 1px #000;
	padding: 10px 5px;
	text-align: center;
	vertical-align: middle;
}
#annai table tr td:nth-child(4) {
	text-align: left;
}
#annai table tr th, #annai table tr td:nth-child(1), #annai table tr td:nth-child(3)  {
	white-space: nowrap;
} */
#annai table.credit {
	font-size: 12px;
	line-height: 1.65;
	word-break: keep-all;
	overflow-wrap: break-word;
	table-layout: fixed;
}
#annai table.credit th,
#annai table.credit td {
	border:solid #999 1px;
	padding: 0.75em;
	text-align: center;
	vertical-align: middle;
}
#annai table.credit th {
	background: #eee;
}
#annai table.credit tr:nth-child(1) > *:nth-child(2),
#annai table.credit tr:nth-child(n+3) > *:nth-child(2) {
	width: 5em;
}
#annai table.credit tr > td:nth-child(2) {
	text-align: left;
}
#annai table.credit tr > td:nth-child(4) {
	text-align: left;
}
#annai .btn {
	margin: 20px 0 0 ;
	background: #ccc;
	border: solid 1px #ccc;
	box-sizing: border-box;
	color: #333;
	line-height: 1.65;
	display: inline-block;
	font-weight: bold;
	max-width: 100%;
	min-width: 10em;
	overflow: hidden;
	padding: 1em;
	text-overflow: ellipsis;
	vertical-align: bottom;
	white-space: nowrap;
}
#annai a.btn:hover {
	color: #f00;
	text-decoration: underline;
}
#annai .btn_yes {
	background: #DEEBF7;
	border: solid 2px #0070C0;
}
#annai .btn_no {
	background: #FFE699;
	border: solid 2px #F4B183;
}
#annai ul.li_m > li {
	margin: 10px 0;
}
#annai dl.dl_list dt {
	font-weight: bold;
}
#annai dl.dl_list * + dt {
	margin-top: 20px;
}
#annai dl.dl_list dd {
	margin-left: 1em;
}
/*　■■■■■■■■■ 参加者へのお知らせ ■■■■■■■■■　*/
#annai2 {
	margin:50px 0 150px 3em;
	width:90%;
}
#annai2 h3 {
	margin:35px 0 15px;
	margin-top: 50px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
#annai2 h4 {
	margin:20px 0 5px;
	font-size:105%;
	font-weight:bold;
}
#annai2 ul.li_row > li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
}
#annai2 ul.li_m > li {
	margin: 10px 0;
}
#annai2 img {
	vertical-align: bottom;
}
#annai2 .video iframe {
	display: block;
}
/*　■■■■■■■■■ お弁当の注文 ■■■■■■■■■　*/
#bento {
	margin:50px 0 150px 3em;
	width:90%;
}
#bento h3 {
	margin:35px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
#bento dl {
	margin: 0 0 20px;
}
#bento dl dt {
	float: left;
	font-weight: bold;
}
#bento dl dd {
	margin: 0 0 20px 10em;
}
/*　■■■■■■■■■ 託児の申込み ■■■■■■■■■　*/
#takuji {
	margin:50px 0 150px 3em;
	width:90%;
}
#takuji h3 {
	margin:35px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
#takuji h4 {
	margin:35px 0 15px;
	padding-left: 10px;
	font-size:110%;
	font-weight:bold;
	color:#333;
	border-left: solid 5px #999999;
}
#takuji dl.fm_takuji {
	margin: 0 0 20px 20px;
}
#takuji dl.fm_takuji dt {
	float: left;
	font-weight: bold;
}
#takuji dl.fm_takuji dd {
	margin: 0 0 20px 15em;
}
/*　■■■■■■■■■ 企業展示 ■■■■■■■■■　*/
#tenji h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
#tenji ul {
	margin:10px 0 0 30px;
	list-style:square;
}
#tenji li {
	margin:0 0 10px;
	margin-bottom: 1.5em;
	font-size:105%;
}
#tenji li a {
	font-size:85%;
	text-decoration:underline;
}
/*　■■■■■■■■■ 関連学会ポスター掲示 ■■■■■■■■■　*/
#poster .poster_wrap {
	overflow: hidden;
}
#poster ul.poster_list {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -40px;
}
#poster ul.poster_list > li {
	flex: 0 1 240px;
	margin: 20px 70px;
}
#poster ul.poster_list .image img {
	border: solid 1px #666;
	vertical-align: bottom;
}
/*#poster ul.poster_list .name {
	display: flex;
	margin-top: 1em;
}
#poster ul.poster_list .name > *:nth-child(1) {
	flex: 0 0 auto;
}*/
#poster ul.poster_list .name {
	margin-top: 1em;
}
/*　■■■■■■■■■ アクセス ■■■■■■■■■　*/
#access {
	margin:50px 0 150px 3em;
	width:90%;
}
#access h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
#access div.map > iframe {
	display: block;
}
#access figure a {
	display: inline-block;
}
#access figure img {
	display: block;
}
/*　■■■■■■■■■ 汎用 ■■■■■■■■■　*/
#etc h3 {
	margin:50px 0 15px;
	padding:0 0 3px;
	border-bottom:dotted 1px #666;
	font-size:110%;
	font-weight:bold;
	color:#333;
}
/*　■■■■■■■■■ 託児 ■■■■■■■■■　*/
dl.lst_takuji {
	margin: 0;
}
dl.lst_takuji dt {
	margin: 0;
	font-weight: bold;
	float: left;
}
dl.lst_takuji dd {
	margin: 0 0 10px 10em;;
}