/*
fixed-button
画面左上に固定表示するボタンのCSS。
*/

.back-button {
  position: fixed;
  top: 10px;           /* 画面上からの距離 */
  left: 10px;          /* 画面左からの距離 */
  display: flex;       /* 中央寄せ用 */
  align-items: center;
  justify-content: center;
  z-index: 1000;       /* 他の要素より前面に */
  padding: 0;          /* Milligram の button は余白があるのでリセット推奨 */
  text-decoration: none;
  border-radius: 20%;
}

.to-menu {
  width: 110px;
  height: 40px;
  font-size: 1.5rem;
}