@charset "UTF-8";
/* CSS Document */
/*トップページCSS*/
/*ピンク　rgba(255,92,206,1.00)	*/
/*カラー1 エンジ　#C6008B*/
/*カラー2 濃いブルー　#003485*/

/*-----------------------------------
期限ブロック
-----------------------------------*/
.limit_block {
	display: inline-block;
	border: 3px solid #BF0080;
	margin: 10px;
	padding: 10px 20px;
	background-color: #EFEFEF;
}
@media screen and (max-width: 600px){
	.limit_block {
		font-size: 0.95em;
	}
}

/*-----------------------------------
入会問い合わせブロック
-----------------------------------*/
.inquiry_block {
	display:inline-block;
	padding: 10px 10px;
	background-color: #EFEFEF;
	border: 1px solid #CBCBCB; 
}
/*タイトル*/
.inquiry_title {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 18px;
	color: #BF0080;
}
.inquiry_title::after {
	border-top: 1px solid;
	content: "";
	width: calc(100% - 11em); /* 線の長さ */
	margin-left: 1em; /* 文字の左隣 */
}
.inner_title {
	font-weight: 600;
	line-height: 1.5em;
	margin-bottom: 10px;
}
@media screen and (max-width: 600px){
	.inner_title {
		font-size: 0.92em;
	}
}
/*アドレス*/
.address {
	border-left: 5px solid #808080;
	padding-left: 15px;
	line-height: 1.5em;
}

/*-----------------------------------
セッション表示ブロック
-----------------------------------*/

.table.table-type3 {
	width: 100%;
	/*border-collapse: collapse;*/
	line-height: 1.4em;
	border-top: #888888 solid 1px;
	border-right: #888888 solid 1px;
	margin-top: 15px;
	margin-bottom: 40px;
}
table.table-type3 th, table.table-type3 td {
	padding-top: 7px;
	padding-bottom: 6px;
	font-weight: normal;
}
table.table-type3 th {
	text-align: center;
	vertical-align: middle;
	background-color: #8F0064;
	color: #fff;
	font-weight: 500;
	white-space: nowrap;
	/*width: 50%;*/
}
table.table-type3 td {
	text-align: left;
	padding: 0 10px;
}
table.table-type3 .inner_items {
	background-color: #F0F0F4;
	vertical-align: middle;
}
table.table-type3 .inner_items:nth-child(odd) {
	background-color: #F4F4F8;
}

/*スタイル*/
.session {
	font-weight: 600;
}
.session + div {
	padding: 6px 0;
	line-height: 1.5em;
}
.type1,.type2 {
	border-radius: 6px;
	padding: 4px 10px;
	color: white;
	font-size: 12px;
}
.type1 {
	background-color: red;
}

.type2 {
	background-color: #0009C9;
}

.block_right {
	display: inline;
}
@media screen and (max-width:850px) {
	.block_right {
		display: inline-block;
		width: 100%;
		text-align: right;
	}
}

/*--------------------------------
演題募集アコーディオン
----------------------------------*/
.acd-plus {
	
}
.acd-check{
    display: none;
}
.acd-label{
	position: relative;
    color: #0055b6;
	font-size: 14px;
	padding-left: 30px;
}
.acd-label::after{
    content: '';
	position: absolute;
	left :16px;
	top: 4px;
	width: 0;
	height: 0;
	border-left: 7px solid #0055b6;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-right: 7px solid transparent;
	transform: rotate(0);
	transition: all 0.3s ease;
}
.acd-content{
    display: block;
    height: 0;
	max-height: 0;
    opacity: 0;
	background-color: #EFEDF3;
	border: 1px solid #E1E1E1;
    visibility: hidden;
	transition: opacity 0.8s;
}
.acd-check:checked + .acd-label::after{
	transform: rotate(90deg);
	transform-origin:25%;
}


.acd-check:checked + .acd-label + .acd-content{
	height: auto;
	max-height: 100vh;
    opacity: 1;
	margin: 10px 10px 10px 0;
    padding: 10px;
	font-weight: 500;
	line-height: 1.5em;
	text-align: justify;
    visibility: visible;
}


/*----------------------------------
カテゴリーテーブル
----------------------------------*/
.category_table_block {
	padding: 0 10px;
}
.category_table_title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	padding-left: 26px;
}
.category_table_title::before {
	

	position: absolute;
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 9px;
	background-color: #003485;
	top: 8px;
	left: 0;
}
.category_table_title::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	top: 13px;
	left: 3px;
	border-top: 2px solid white;
	border-right: 2px solid white;
	transform:rotate(45deg);
}
.category_table_flexbox {
	margin: 0 0 40px;
}
.category_table {
	display: flex;
	flex-wrap: wrap;
}
.category_table_item {
	font-size: 15px;
}
.category_table_item th {
	text-align: center;
	background-color: #DFCEDC;
	width: 32px;
}
.category_table_item td {
	padding: 0 4px;
	background-color: #F0F0F4;
	width: 340px;
	height: 64px;
}

/*----------------------------------
SP表示時テーブルのヘッダー削除
----------------------------------*/
@media screen and (max-width: 769px) {
	.sp_del {
		display: none;
	}
	
}

/*----------------------------------
asiaPReventブロック
----------------------------------*/
.asia_block {
	margin-top: 40px;
	border-top: 1px solid #A0A0A0;
}

/*----------------------------------
問い合わせブロック
----------------------------------*/
.abstract_contact {
	
}
.contact_title {
	font-size: 18px;
	font-weight: 600;
	padding-left: 20px;
	border-left: 5px solid rgba(255,92,206,1.00);
}
.contact_name {
	font-size: 18px;
	font-weight: 600;
}
.contact_address {
	line-height: 1.5em;
}

/*------------------
期間のインデント
------------------*/
.abstract_indent1 {
	padding-left: 16em;
}
.abstract_indent2 {
	display: none;
	padding-left: 16em;
}
@media screen and (max-width: 1104px) {
	.abstract_indent2 {
		display: inline;
	}
}
@media screen and (max-width: 768px) {
	.abstract_indent1 {
		padding-left: 1.2em;
	}
	.abstract_indent2 {
		padding-left: 1.2em;
	}
}

.abstract_indent3 {
	padding-left: 24em;
}
.abstract_indent3_none {
	display: none;
}
.abstract_indent4 {
	display: none;
	padding-left: 24em
}
@media screen and (max-width: 1254px) {
	.abstract_indent3_none {
		display: inline;
	}
	.abstract_indent4 {
		display: inline;
	}
}
@media screen and (max-width: 768px) {
	.abstract_indent3 {
		padding-left: 3.3em;
	}
	.abstract_indent4 {
		padding-left: 3.3em;
	}
}

