:root {
    --yellow: #fac000;
}

.countDown {
    background-color: var(--yellow);
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Helvetica','Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px;
}

.countDown__title {
    margin: 0 0 10px;
}

i.fa-stopwatch {
    font-size: 1.5em;
    margin-right: 0.2em;
}

.countDown__time {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 0.8em;
    background-color: #444;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}
.countDown__time span {
    line-height: 0.8em;
}
.countDown__time .ico_timer {
    width: 1.5em;
    margin-right: 5px;
}

#timer {
    display: flex;
    align-items: flex-end;
}
#timer > * {
    display: flex;
    align-items: flex-end;
}
#timer::before {
    content: 'あと';
    display: inline-block;
    line-height: 1;
    margin-right: 5px;
}
#timer .value{
    color: var(--yellow);
    font-size: 1.8em;
    margin: 0 5px;
}
