/* 検証環境の色を変えるためのcss */
/* .envのAPP_ENVを「test」にすることで読み込まれる */
#temp_header .top {
    background: #B3153E;
}
#temp_footer {
    background: #B3153E;
}
#temp_logo{
    position: relative;
}
#temp_logo::after {
    content: '検証環境';
    position: absolute;
    color: #7fb7da;
    font-size: 129%;
    top: 5px;
    right: -100px;
}
@media screen and (max-width: 900px) {
    #temp_logo::after {
        font-size: 100%;
        top: 15px;
        right: -50px;
    }
}