<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*----------*----------*----------*----------*----------*/
/* 演題登録ページ */
/*----------*----------*----------*----------*----------*/



/*----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* テーブル */

.abst_tbl{
	border: 1px solid #f1b08d ;
	margin: 10px 0;
}
	.abst_tbl th,.abst_tbl td{
		border-right: 1px solid #f1b08d ;
		border-bottom: 1px solid #f1b08d ;
		padding: 4px 10px ;
		vertical-align: middle ;
	}

	.abst_tbl th{
		background: #fcf3e2 ;
		color: #e7793e ;
        width: 6% ;
	}



.abst_tbl_2{
    border: 1px solid #f1b08d ;
    margin: 10px 0;
}
    .abst_tbl_2 th,.abst_tbl_2 td{
        border-right: 1px solid #f1b08d ;
        border-bottom: 1px solid #f1b08d ;
        padding: 4px 10px ;
        vertical-align: middle ;
    }

    .abst_tbl_2 th{
        background: #fcf3e2 ;
        color: #e7793e ;
        width: 6% ;
    }

    .abst_tbl_2 tr td:nth-of-type(2){ /* 2列目全セルの幅 */
        width: 50% ;
    }
    




/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* テーブル セル個別指定（サンプル） */
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
.tbl_test tr td:nth-of-type(2){ /* 2列目全セルの幅 */
	width: 15% ;
}
.tbl_test tr td:nth-of-type(3){ /* 3列目全セルの幅 */
	width: 15% ;
}
.tbl_test tr:nth-child(1) th { /* 1行目のth スタイル */
	background: #004E8A ;
}
.tbl_test tr:nth-child(2) th { /* 2行目のth スタイル */
	background: #004E8A ;
}


.tbl_test tr:nth-child(1) th:nth-child(4) { /* 1行目で4番目のth スタイル */
	border-bottom: solid 1px #FFF ;
}
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* ----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/






/*----------*----------*----------*----------*----------*----------*----------*----------*----------*----------*/
/* content */
.abst_ctt {
	display: block ;
	margin: 20px 0px 35px 0px ;
}


.abst_ctt_2 {
	display: block ;
	margin: 10px 15px 20px ;
}




.abst_btn{
	border: solid 2px #ed8954 ;
	border-radius: 6px ;
	display: inline-block ;
	margin-top: 5px ;
	padding: 15px 10px ;

	position: relative ;

	color: #ed8954 ;
	font-size: 15px ;
	font-weight: bold ;
	text-align: center ;
	text-decoration: none ;

	transition-property: all ;
	transition-duration: 0.7s ;
	transition-delay: 0s ;
	transition-timing-function: ease ; /* アニメーションがゆっくり開始される */
}
	.abst_btn:hover{
		background: #f8e6d1 ;
		background-image: url(../img/h1.jpg);
		background-repeat: no-repeat;
		background-position: 45% 30%;
		border: solid 2px #ebaf90 ;
		color: #dd6b2e ;
	}
</pre></body></html>