* {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, 
                Arial, sans-serif, Apple Color Emoji, NotoSansJP-Black, Frijole-Regular, Anton-Regular;
}

@font-face {
	font-family: 'NotoSansJP-Black';
	src: url(../fonts/NotoSansJP-Black.otf);
}

@font-face {
	font-family: 'Frijole-Regular';
	src: url(../fonts/Frijole-Regular.ttf);
}

@font-face {
	font-family: 'Anton-Regular';
	src: url(../fonts/Anton-Regular.ttf);
}



.fa-plus-circle:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    margin-right:3px;

    width: 1.28571429em;
    text-align: center;
}

.hover-red:hover {
    border-bottom: 1px solid red;
    color: white;
    background: #F0FFFF;

	/* Picture Hover*/
	/* background-image: url("../../images/Default/But-01x.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60px 40px; */
	/* background-size: cover; */
	


}

.zHeader {
    height: 80px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 20px;
    text-decoration: none;
}

/*--------------float success--------*/

.label-container-float-success{
	position:fixed;
	bottom:48px;
	right:105px;
	display:table;
	visibility: hidden;
}

.label-text-float-success{
	color:#FFF;
	background:rgba(51,51,51,0.5);
	display:table-cell;
	vertical-align:middle;
	padding:10px;
	border-radius:3px;
}

.label-arrow-float-success{
	display:table-cell;
	vertical-align:middle;
	color:#333;
	opacity:0.5;
}

.float-success{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#00a65a;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 1px 1px 2px #999;
}

.my-float-success{
	font-size:24px;
	margin-top:18px;
}

a.float-success + div.label-container-float-success {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease;
}

a.float-success:hover + div.label-container-float-success{
  visibility: visible;
  opacity: 1;
}