* {
    font-family: "メイリオ";
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

.root-input-row {
    text-align: center;
    padding-bottom: 20px;
}

.root-input-row-input {
    border-radius: 30px;
    padding-left: 10px;
    border: black 1px solid;
}

#root-input-row:not(:first-child) {
    padding-top: 20px;
}

#root-total-spans {
    text-align: center;
}

#root-total-spans-string {
    padding-bottom: 20px;
}

#root-total-spans-alcohol {
    font-size: 32px;
    font-weight: bold;
    color: tomato;
}

#root-total-spans-record {
    border: tomato 1px solid;
    color: tomato;
    border-radius: 30px;
    width: 100px;
    margin: auto;
    cursor: pointer;
}

#root-date {
    text-align: center;
}

#root-calendar {
    display: table;
    margin: auto;
}

.root-calendar-arrow {
    display: table-cell;
    vertical-align: middle;
    font-size: 60px;
    cursor: pointer;
    border: black 1px dotted;
}

#root-calendar-calender {
    display: table-cell;
}

#root-calendar-table {
    margin: auto;
    border-collapse: collapse;
    width: 480px;
    table-layout: fixed;
}

.root-calendar-table-div {
    text-align: end;
}

.root-calendar-table-day {
    display: block;
    font-size: 14px;
    text-align: start;
}

.root-calendar-table-alcohol {
    padding-left: 10px;
    font-size: 16px;
}

.root-calendar-table-sun {
    background-color: tomato;
}

.root-calendar-table-sat {
    background-color: aqua;
}

#root-comment-string {
    text-align: center;
}

#root-list-ps {
    text-align: center;
}

@media screen and (max-width: 800px) {
    .root-input-row {
        display: flex;
        flex-direction: column;
    }

    .root-input-row-input {
        width: 200px;
        margin: auto;
    }

    .root-calendar-arrow {
        font-size: 30px;
    }

    #root-calendar-table {
        width: 350px;
    }

    .root-calendar-table-day {
        font-size: 12px;
    }

    .root-calendar-table-alcohol {
        font-size: 14px;
        padding-left: 1px;
    }
}