@charset "UTF-8";
/* CSS Document */

.fzL {
    font-size: 115%;
}

.txtColor01 {
    color: #DF0003;
}

.emphasisTxt01 {
    border-bottom: 3px double #DF0003;
    color: #DF0003;
    font-weight: bold;
}

.emphasis01 {
    border: 3px double #DF0003;
    padding: 10px 15px;
    text-align: center;
}
.emphasis01 h2 {
    font-size: 120%;
}

.emphasis02 {
    border: 3px double #999999;
    padding: 10px 15px;
    text-align: left;
}

.tit_basic01 {
    color: #333;
    background: #E7EFF6;
    padding: 5px 10px;
    border-left: 5px solid #1260AB;
    margin-bottom: 15px;
    font-size: 110%;
}

.tit_basic02 {
    color: #333;
    font-size: 105%;
    margin-bottom: 5px;
}

.tit_basic02::before {
    content: "●";
    color: #1260AB;
}

table.table_basic01 th {
    background: #FFE3E3!important;
    color: #C80003!important;
    font-weight: bold!important;
    text-align: left!important;
}

/* ボタン共通 */
.topicList {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
}

.topicList li {
    list-style: none!important;
    margin: 0 10px 10px 0!important;
    padding: 0!important;
    width: 245px;
}

.topicList a {
	display: block;
	position: relative;
	z-index: 100;
    padding: 8px 15px 8px 25px;
	text-align:center;
	background: #D10000;
	color: #fff;
	font-size: 14px;
	text-decoration:none;
    border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */  
}
.topicList a:hover {
	opacity: 0.75;
}

.topicList a:before {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	left: 10px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #fff;
}
.topicList a:after {
	display: block;
	content: "";
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #D10000;
}

