:root {
  --color-text-default: #4E4C4C;
  --color-text-subtle : #919191;
  --color-text-white  : #fff;
  --color-text-error  : #EA4D26;

    /* Header Height */
    --header-height: 60px;
    --min-width: auto;

    /* Font */
    --font-weight-base: 500;
    --font-weight-bold: 600;
  }

@media screen and (min-width: 769px) {
  :root {
    --header-height: 80px;
    --min-width: 1200px;
  }
}

/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none; /* リストスタイルの削除 */
}
/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}