body {
    background: #000845;
    color: #ffffff;
    text-align: center;
    font-family: 'Roboto', Roboto Slab;
    font-weight: 700;
}

.title-img {
    width: 300px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

hr {
    border: none;
    border-top: 1px solid #ffffff;
    margin: 18px 0;
}

.mine-text {
    color: #ffffff;
    font-size: 50px;
}

.date {
    font-size: 20px;
    margin-top: 30px;
}

.time {
    font-size: 70px;
}

.to-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.to-text {
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;

    background-color: rgba(255, 255, 255, 0.3); /* 非アクティブ */
    
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    transition: background-color 0.2s;
    cursor: pointer;
}

/* 今表示してるページ */
.to-text.active {
    background-color: rgba(255, 255, 255, 0.6);
}

/* hoverは「非アクティブだけ」 */
.to-text:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.45);
}

/* activeはhoverしても変えない */
.to-text.active:hover {
    background-color: rgba(255, 255, 255, 0.6);
}


.bottom-box {
    position: absolute;                  /* スクロールと一緒に動く */
    top: 339px;                           /* 上から300px */
    left: 0;
    width: 100%;                          /* 横幅いっぱい */
    /* height: 100%;   */
    padding-bottom: 100px;
    background-color: rgba(255, 255, 255, 0.6); /* 半透明 */
    z-index: 0;                           /* 他要素より下に表示 */
    /* pointer-events: none; */
}



.next-text {
    font-size: 20px;
    text-align: center;
    margin-top: 60px;
}

.bus-time {
    font-size: 70px;
}

.bus-num {
    font-size: 40px;
    position: relative;
    top: 145px;
    left: 45px;
    color: #333333;
}

.bus-num-a {
    font-size: 40px;
    position: relative;
    top: 145px;
    left: 45px;
    color: #333333;

}

.bus-img {
    width: 450px;
}

.nn-text {
    font-size: 20px;
    margin-top: 20px;
}

.nn-time {
    font-size: 70px;
}

.daia {
    font-size: 10px;
    position: relative;
    top: 20px;
}

.mdlogo-img {
    width: 200px;
    margin-top: 50px;
}