body{
    background-color: black;
}
.row{
    margin-top:50px ;
}
.row > a > div{
    height: 100px;
    border-top: solid white;
    color: white;
}
.lastContent{
    border-bottom: solid white;
}
.row > a > div:hover{
    cursor: pointer;
    transition: 0.5s;
    background-color: white;
    color:black;
    
}
.row > a{
    text-decoration: none;
}
.row > a > div >  h1{
    font-family: 'Open Sans', sans-serif !important;
    line-height: 90px;
    font-size: 5em;

}

/* 各ページメニューのnewアイコン */
.newly-post > img {
    height: 100%;
    vertical-align: middle;
    display: inline-block;
    animation: blink 1s infinite;
}

.newly-post > h1 {
    display: inline-block;
    vertical-align: middle;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@media screen and (max-width: 480px){
    .row > a > div{
        height: 60px;
    }
    .row > a > div >  h1{
        line-height: 50px;
        font-size: 1.5em;
    }
}