/* カスタム CSS をここに入力してください */
#h-top {
    min-height: 50px;
}
#body {
    margin-top: -0px;
}
div#main{
    padding-top:0;
}
.single-post #breadcrumb {
	display:none;
}
/*引用マーク

===================================*/

blockquote::before {

    display: block;

    top: 0;

    font-size: 300%;

    color:#F08080;

}

blockquote:after {

    display: block;

    bottom: 0;

    font-size: 300%;

    color:#F08080;

}

blockquote{

    border: solid 1px #ddd;

}

/*ビヨンビヨン

===================================*/
.expand  {
    animation-name: expand;
    animation-duration: 0.6s;
    animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
}
 
@keyframes expand {
    from { transform: scale(1.03, 1.03); }
    to   { transform: scale(0.95, 0.95); }
}

/*点滅

===================================*/

.flash{
  animation: Flash 1s infinite;
}

@keyframes Flash{
  50%{opacity: 0; }
}