@charset "UTF-8";

body {
    opacity: 0;
    animation: bodyAppear .3s .3s forwards;
}

@keyframes bodyAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*============================
	blog-detail
============================*/
.blog-detail__page main{
    margin-top: 80px;
}
.blog-detail .inner{
    max-width: 916px;
}
.b-detai__ttl{
    padding-bottom: 1em;
   border-bottom: solid 1px #E86263;
   line-height: 1.3;
}
.blog-detail__page .blog__date{
    margin-bottom: 20px;
}
@media screen and (max-width:1024px) {
    .blog-detail__page main{
        margin-top: 58px;
    }

}

@media screen and (max-width:767px) {


}

