@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}



/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:14px;
	color:#333;
	font-family: 'Noto Sans JP', sans-serif;
	line-height:1.6;
	background-image: url("../images/back.jpg");
    background-position: top center;
	background-size: cover;
	background-attachment: fixed;
}
.contents {
	position:relative;
	overflow:hidden;
	width:1000px;
	margin:0 auto;
}
#main {
	box-sizing: border-box;
	float:right;
	width:77%;
	min-height: 700px;
	padding:30px;
	margin: 20px 0;
	background: rgba(255,255,255,.95);
}
.index{
	background: none !important;
	padding: 0 !important;
}
#sub {
	box-sizing: border-box;
	float:left;
	width:20%;
	margin: 20px 0;
}

/* リンク */
a {
	color:#d34941;
}
a:hover {
	text-decoration: none;
}

/* タイトルタグ */
h1, h2, h3, h4, h5{
	margin: 0;
	padding: 0;
	font-weight: normal;
}
h4, h5{
	font-size: 100%;
}
h1 {
	color:#fbfbfb;
	font-size:28px;
	line-height:1.2;
}
h2 {
	margin-bottom:0.5em;
	color:#333;
	border-bottom:3px solid #375eb9;
}
h3 {
	margin:0.5em 0;
	padding:2px 5px;
	border-left:5px solid #375eb9;
	background:#eee;
	font-weight: bold;
}
h4 {
	margin:0.5em 0;
	color:#42b4a3;
	font-weight:bold;
}
h5{
	margin:0.5em 0;
	font-weight:bold;
}

/* リスト */
ul,ol,dl {
	margin:0 0 1em 0;
}
ul li {
	list-style:disc;
}
ol li {
	list-style:decimal;
}
li {
	margin-left:2em;
}
dt {
	margin-bottom:0.5em;
	border-bottom:1px dotted #ddd;
}
dt:before {
	content:"\0025a0";
}
dd {
	margin-bottom:1em;
}

/* テーブル */
table {
	width:100%;
	margin-bottom:1em;
	border-collapse:collapse;
	border:1px solid #ddd;
	background:#fff;
}
th {
	padding:10px;
	text-align:left;
	vertical-align:middle;
	border:1px solid #ddd;
	background:#eee;
	font-weight: bold;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #ddd;
	vertical-align:middle;
}

/* その他 */
p {
	margin:0 0 1em 0;
}
img {
	vertical-align:bottom;
	max-width: 100%;
}
em {
	font-weight:bold;
}
strong {
	font-weight:bold;
}
pre {
	margin:1em 0;
	padding:1em;
}
blockquote {
	margin-bottom:1em;
	padding:1em;
	border:1px dotted #ddd;
	border-left:5px solid #ddd;
}
.red{
	color:#d45451;
}
.jump{
	margin:20px 0;
	padding:10px;
	/*border:1px solid #42b4a3;*/
}
.btn-radius {
  	color:#42b4a3;
}

/* 20220307 Append */
.strikethrough {
	text-decoration:line-through;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position:relative;
}
#fontSizeBox{
	width:105px;
	position: absolute;
	top:0;
	right:5px;
	z-index: 10;
	background:#333;
	border-radius: 0 0 7px 7px;
	padding:3px 7px 5px 7px;
	color:#fff;
}
#fontSizeBox p, #fontSize, .changeBtn{
	margin: 0;
}
#fontSizeBox p{
	text-align: center;
}
#fontSize{
	display: flex;
	justify-content: space-between;
	padding: 0;
}
.changeBtn{
	list-style-type: none;
	background: #fff;
	color:#333;
	border-radius: 5px;
	padding: 0 5px;
	cursor: pointer;
}
.changeBtn:hover, .changeBtn.active{
	background: #f6d04d;
}



/*================================================
 *  グローバルナビゲーション
 ================================================*/
nav {
	overflow:hidden;
	position:relative;
}
nav h3 {
	display:none;
}
nav ul {
	margin:0;
	padding:0;
}
nav li {
	list-style:none;
	margin:0;
	padding:0;
}
.liTitle{
    margin-top: 10px;
    padding:10px 20px;
    background: #20366b;
    color:#fff;
    font-weight: bold;
}
nav li a {
	display:block;
	padding:10px 20px;
	color:#fbfbfb;
	text-decoration:none;
	background:#375eb9;
}
nav li a:hover, nav li a.active {
	color:#fbfbfb;
	border-left: 8px solid #7A57D1;
    background: #a696c8;
	transition:all 0.2s ease 0s;

}



/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	box-sizing: border-box;
	width:100%;
	margin:0 auto;
	background:#2c4a92;
}
.footmenu {
	padding:20px 0;
	overflow:hidden;
	justify-content: space-between;
}
@media screen and (min-width:768px) {
	.footmenu {
		display: flex;
	}
}
.footer-box{
	padding:0 20px;
}
.footer-box p{
	color:#fff;
}
.footer-img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright {
	clear:both;
	padding:5px;
	font-size:11px;
	text-align:center;
	color:#fff;
	background:#0c152a;
}



/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#375eb9;
}
.totop img:hover {
	background:#88d4c9;
}



/*================================================
 *  クラス
 ================================================*/
.textL {
	text-align:left !important;
}
.textR {
	text-align:right !important;
}
.textC{
	text-align:center !important;
}
.f-20{
	font-size: 20px;
}
.mb-50{
	margin-bottom:50px;
}
.ml-20{
	margin-left: 20px;
}
.list {
	padding:0 0 0 0.5em;
}
.list li {
	margin:0;
	padding:0 0 0 15px;
	list-style:none;
	background:url(../images/check.png) 0 5px no-repeat;
}

.list_1 {
	padding:0 0 0 2em;
}
.list_1 li {
	margin:0;
	/*padding:0 0 0 15px;*/
	list-style:circle;
}

.list_2 {
	/*padding:0 0 0 2em;*/
}
.list_2 li {
	list-style-type: none;
	content: none;
}

.list_2 li:before {
	content: '\0025C7';
	display: inline-block;
	margin:0;
	margin-left: -1em;
	/*padding:0 0 0 15px;*/
}

.table_center {
	text-align:center;
}

.table_center_c {
	text-align:center;
	background:#eee;
}


.info dt {
	border-bottom:none;
}
.info dd {
	padding-bottom:1em;
	border-bottom:1px solid #ddd;
}
#info_qr{
	width: 70%;
}
#info_qr th{
	text-align: center;
}
#info_qr td{
	text-align: center;
}
/*================================================
 *  コンテンツ
 ================================================*/
.soon{
	width:95%;
	height:200px;
	border:double 7px #375eb9;
	text-align:center;
	margin:0 auto;
}
.soon p{
	line-height: 200px;
	font-size: 30px;
}
/* index */
.mainv-box{
	margin-bottom: 50px;
}
.index-box{
	box-sizing: border-box;
	background: rgba(255,255,255,.95);
	padding: 30px;
}
.index-box a{
	width: 30%;
}
.news{
	padding:30px;
	background: rgba(255,255,255,.95);
}

/* program */
.scroll-info-none{
	display:none;
}
.scrollDown{
	color:#333;
}
.scrollDown::before{
	content: '';/*何も入れない*/
  	display: inline-block;/*忘れずに！*/
  	width:16px;/*画像の幅*/
  	height:16px;/*画像の高さ*/
  	background-image: url(https://unicons.iconscout.com/release/v0.0.4/svg/arrow-circle-down.svg);
  	background-size: contain;
  	vertical-align: middle;
}
h4 .scrollDown{
	color:#42b4a3;
}
table.tentative {
	width:97%;
	margin:0 0 3% 3%;
	border-collapse:collapse;
	border:none;
	background:none;
}
.tentative td, .plenary td {
	padding:2px;
	text-align:left;
	border:none;
	vertical-align:top;
}
table.plenary{
	border-collapse:collapse;
	border:none;
	background:none;
}
.tts td, .pc_scroll td{
	text-align: center;
}
.pc_scroll{
    width:100%;
    border: none;
    display: block;
    overflow-x:auto;
    white-space: nowrap;
}
.whiteNum{
	background: #42b4a3;
	color: #fff;
	padding: 0 .5em;
}
.yellow{
	background: #fef4a9;
}
.pink{
	background: #f7b7b0;
}
.green{
	background: #b9e972;
}
.sky{
	background: #95dedb;
}
.purple{
	background: #b2b2e7;
}
.blue{
	background: #59c8df;
}

.pink_abst{
	background: #f7b7b0;
	border-bottom: solid 4px #c98277;
}
.pink_abst:hover{
	background: #f7d5c9;
	border-bottom: solid 4px #c98277;
}
.green_abst{
	background: #b9e972;
	border-bottom: solid 4px #20800d;
}
.green_abst:hover{
	background: #cbf791;
	border-bottom: solid 4px #20800d;
}


/* sponsors */
.sponsor{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
}

.exhibition_c{
	width: 50%;
}


/* accommodation */
.accommodation{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom:25px;
}

/* travel */
.deadline{
	font-weight: bold;
	font-size: 20px;
}

/* registration */
.registration{
	color:#d45451;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	border:5px double #d45451;
	padding: 10px;
}
.registrationBox{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 20px;
}
.registrationBox a, .join_{
	display: inline-block;
  	padding: 0.5em 1em;
	margin: 0 10px;
  	text-decoration: none;
	text-align: center;
	background: #d6564f;
	color:#fff;
	border-bottom: solid 4px #a92e27;
  	border-radius: 3px;
	transition: 0.5s;
}

.registrationBox a:hover, .join_:hover{
	background: #e9a5a2;
}
.registrationBox a:active, .join_:active{
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.registrationBox a, .join{
	/*display: inline-block;*/
  	padding: 0.5em 1em;
	margin: 0 10px;
  	text-decoration: none;
	text-align: center;
	background: #d6564f;
	color:#fff;
	border-bottom: solid 4px #a92e27;
  	border-radius: 3px;
	transition: 0.5s;
	width:30%;
	min-height:110px;
	align-items: center;
	display: flex;
}

.registrationBox a:hover, .join:hover{
	background: #e9a5a2;
}
.registrationBox a:active, .join:active{
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}


/*abstractページ用*/
.registrationBox_abs{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	margin-bottom: 20px;
}
.registrationBox_abs a:hover, .join:hover{
}
.registrationBox_abs a:active, .join:active{
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

.registrationBox_abs a, .join{
	/*display: inline-block;*/
  	padding: 0.5em 1em;
	margin: 0 10px;
  	text-decoration: none;
	text-align: center;
	color:#000;
  	border-radius: 3px;
	transition: 0.5s;
	width:30%;
	min-height:110px;
	/*min-height:152px;*/
	align-items: center;
	display: flex;
}

/*abstractページ用ここまで*/


.form{
	width:80%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
}
input{
	padding:1% 1.5%;
	border: 1px solid #ccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	margin:0 0 20px 0;
}
input{
	width:97%;
    height: 2em;
}
.pay, .cancel, .change{
	height: auto;
	padding: 9px 15px;
	margin: 0;
    vertical-align: middle;
    line-height: 1;
    border-radius: 3px;
    -webkit-appearance: none;
	cursor: pointer;
	color: #fff;
	-webkit-transition: 0.5s;
  	-moz-transition: 0.5s;
  	-o-transition: 0.5s;
  	transition: 0.5s;
}
.pay{
	width: 200px;
	background: #5cb85c;
	border: 1px solid #4cae4c;
}
.pay:hover{
	background: #8bcd8b;
}
.cancel, .change{
	width: 260px;
}
.cancel{
	background: #D74B4B;
	border: 1px solid #b62828;
}
.cancel:hover{
	background: #e07575;
}
.change{
	background: #3366CC;
	border:1px solid #254b96;
}
.change:hover{
	background: #5c85d6;
}

/* abstract */
.abst span{
	border:1px solid #333;
	padding: 0 3px;
}

/* worldcafe */
.cafe{
	display: flex;
}

/* covid */
.covid-list li{
	list-style-type:none;
	position: relative;
  	padding-left:20px;
	  margin-left: 0;
}
.covid-list li:before{
	content: "✓";
	position: absolute;
	top:0px;
	left:0px;
  }
  .covid-19{
	  box-sizing: border-box;
	  display: block;
	  width: 100% !important;
	  background-color: #f07810;
	  border: 1px solid #b1580b;
	  color: #fff;
	  text-align: center;
	  padding: 10px;
	  margin-bottom: 20px;
	  font-size: 18px;
	  text-decoration: none;
  }



/*================================================
 *  タブレット向けデザイン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:979px) {
	.contents {
		box-sizing: border-box;
		width:100%;
	}
}



/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:767px) {
	body{
		font-size: 16px;
	}
	a{
		word-break: break-all;
	}
	.SMhide{
		display: none;
	}
	.footer-img{
		margin: 20px 0;
	}
	#main {
		float:none;
		width:90%;
		min-height: 200px;
		margin: 20px auto;
		padding:5%;
	}
	.index{
		width: 100% !important;
	}
	#sub {
		float:none;
		width:100%;
		margin: 0;
		z-index: 10;
	}
	nav {
		display:block;
		position:relative;
		width:100%;
	}
	nav h3 {
		display:block;
		cursor:pointer;
		margin-bottom:0;
		padding:10px;
		color:#fff;
		background:#20366b;
		border:none;
		margin: 0;
		font-size: 20px;
	}
	nav li{
		margin: 0;
	}
    .liTitle{
        margin-top: 0;
    }
	nav li a {
		padding:10px 30px;
	}
	nav li a:hover, nav li a.active {
		background:#375eb9;
		border-left: none;
	}

	#navBtn {
		display:inline-block;
		position:absolute;
		top:8px;
		right:10px;
		width:35px;
		height:35px;
		border-radius:5%;
		background:#2b766b;
	}
	#navBtnIcon {
		display:block;
		position:absolute;
		top:50%;
		left:50%;
		width:14px;
		height:2px;
		margin:-1px 0 0 -7px;
		background:#fff;
		transition:.2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display:block;
		content:'';
		position:absolute;
		top:50%;
		left:0;
		width:14px;
		height:2px;
		background:#fff;
		transition:0.3s;
	}
	#navBtnIcon:before {
		margin-top:-6px;
	}
	#navBtnIcon:after {
		margin-top:4px;
	}
	#navBtn .close {
		background:transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top:0;
	}
	#navBtn .close:before {
		transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
	}
	#navBtn .close:after {
		transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
	}
	.news{
		width: 80%;
		margin: 0 auto;
		padding: 5%;
	}
	th, td {
    	display: block;
		width: 95%;
		padding: 2.5%;
		word-break: break-all;
  	}
	.scroll {
    	overflow-x: auto;
  	}
    .scroll-info-none{
		display: inherit;
	}
  	.tts, .tentative{
    	min-width:640px;
  	}
  	.tts td{
    	border-top: solid 1px #ccc;
    	border-bottom: solid 1px #ccc;
		text-align: center;
  	}
	.tts th, .tts td{
		display:table-cell;
		width:auto;
		padding:1.5%;
        white-space: inherit;
	}
    .pc_scroll{
        min-width: 800px;
        max-width: 100%;
        border: none;
        display:inherit;
        overflow-x:hidden;
        white-space: inherit;
    }
	.tentative td{
		display:table-cell;
		width:auto;
		padding: 1%;
	}
	.tentative, .plenary{
		border:1px solid #ccc !important;
	}
	.plenary td{
		padding:1% 3%;
	}
	.soon{
		width:90%;
	}
	.access{
		display: block;
	}
	.index-box{
		width: 90%;
		margin: 20px auto;
		display: block;
	}
	.index-box img{
		width: 100%;
	}
	.registrationBox{
		display: block;
	}
	.registrationBox a{
		display:block;
		margin: 10px 0;
	}
	
	.registrationBox_abs{
		display: block;
	}
	.registrationBox_abs a{
		display:block;
		margin: 10px 0;
	}

	.pay, .cancel, .change{
		width: 100%;
	}
	
	/*ボタン*/
	.registrationBox a, .join{
		display: block;
		margin: 10px 0;
		width: auto;
		min-height: auto;
	}
	.registrationBox_abs a, .join{
		display: block;
		margin: 10px 0;
		width: auto;
		min-height: auto;
	}
	
	/* accommodation */
	.accommodation{
		margin-bottom: 0px;
	}
	
	/* sponsors */
	.exhibition_c{
		width: 100%;
	}

	/* worldcafe */
	.cafe{
		display: block;
	}
}
