.main-message-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.5rem;
}
.main-message-one-h1-pc {
    color: aliceblue;
    margin-left: 1rem;
    font-size: 1.5rem;
}
.main-message-one-h1-m {
    display: none;
    color: aliceblue;
    margin: -0.7rem 0 0 1rem;
    padding: 0;
    font-size: 1.5rem;
}
.main-message-one-time{
    color: #00BFFF;
    margin: 0 1rem;
}
@media (max-width: 48rem) {
    * {
        font-size: 95%;
    }
    .main-message-one {
        display: grid;
    }
    .main-message-one-time{
        margin-right: 0;
        margin-left: 1rem;
    }
    .main-message-one-h1-pc {
        display: none;
    }
    .main-message-one-h1-m {
        display: block;
    }
}