body {
    font-size: 20px;
    /* font-family: monospace; */
    font-family: Arial;
    /* font-weight: 700; */
    /* background-color: rgb(230, 230, 250); */
    background-color: whitesmoke;
    text-align: Center;
}

.tokei{
    font-weight: 700;
}



.howto {
    text-align: Left;
    font-size: 18px;
}

table {
    font-size: 60px;
    text-align: Right;
}

progress {
    width: 400px;
}

.btn {
    /* ボタン類を両端に配置*/
    display: flex;
    justify-content: space-between;
}

/* カーソルを重ねる要素 */
.tooltip {
    position: relative;
    /* ツールチップの位置の基準に */
    cursor: pointer;
    /* カーソルを当てたときにポインターに */
}

/* ツールチップのテキスト */
.tooltiptext {
    opacity: 0;      /* はじめは隠しておく */
    visibility: hidden;  /* はじめは隠しておく */
    position: absolute;  /* 絶対配置 */
    left: 50%;          /* 親に対して中央配置 */
    transform: translateX(-50%);  /* 親に対して中央配置 */
    bottom: -20px;     /* 親要素下からの位置 */
    display: inline-block;
    padding: 1px;         /* 余白 */
    white-space: nowrap;  /* テキストを折り返さない */
    /* font-size: 0.8rem; */
    /* font-size: 0.9em; */
    font-size: 1.0rem;           /* フォントサイズ */
    line-height: 1.3;       /* 行間 */
    background: #333;         /* 背景色 */
    color: #fff;               /* 文字色 */
    border-radius: 3px;        /* 角丸 */
    transition: 0.3s ease-in;       /* アニメーション */
}

/* ホバー時にツールチップの非表示を解除 */
.tooltip:hover .tooltiptext {
    opacity: 1;
    visibility: visible;
}



input[type="text"] {
    /* textのスタイル */
    font-family: Arial;
    /* font-weight: 400; */
    width: 50px;
    height: 30px;
}

input[type="number"] {
    /* numberのスタイル */
    font-family: Arial;
    width: 40px;
    height: 30px;
    align: right;
}


input[type="time"] {
    font-size: 30px;
}


button {
    font-family: Arial;
    width: 80px;
    height: 50px;
}


.a {
    width: 40px;
    height: 25px;
}


input[type="button"] {
    /* ボタンだけのスタイル */
    font-family: Arial;
    width: 80px;
    height: 50px;
}


/* 設定ボタンのツールチップの */
/* 動作ボタンのツールチップと設定のツールチップは別の設定が使われている．整理が必要． */
.description_right {
    /* ツールチップのスタイル */
    width: 150px;            /* 横幅 */
    position: absolute;
    top: 50%;
    left: 80%;        /* X軸の位置 */
    transform: translateY(-50%);
    padding: 8px;
    border-radius: 10px;      /* 角の丸み */
    background-color: #666;
    font-size: 0.8em;
    color: #fff;
    text-align: center;
    visibility: hidden;         /* ツールチップを非表示に */
    opacity: 0;                    /* 不透明度を0％に */
    z-index: 1;
    transition: 0.5s all;      /* マウスオーバー時のアニメーション速度 */
}

.tooltip:hover .description_right {
    /* マウスオーバー時のスタイル */
    left: 100%;              /* X軸の位置 */
    visibility: visible;        /* ツールチップを表示 */
    opacity: 1;            /* 不透明度を100％に */
}