@charset "utf-8";
/* Reset CSS */
body.admin-bar .header {
  top: 32px !important; /* もしくはposition:fixed;top:32px指定 */
}
/*
  1. より直感的なボックスサイズのモデルを使用
*/
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
/*
  3. 高さは%ベースを使用
*/
html{
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;       
  -webkit-font-smoothing: antialiased;    /* 滑らか文字（Mac/iOSのみ） */
  -moz-osx-font-smoothing: grayscale;  
}
body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
a {
  display: block;
  text-decoration: none;
}
/*
  6. メディア要素のデフォルトを改善
*/
img, picture, video, canvas, svg {
  display: block;
  width: 100%;
  height: auto;
}
/*
  7. フォームのfontに関するデフォルトを削除
*/
button, input, select, textarea {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
/*
  8. テキストのオーバーフローを回避
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  margin: 0;    
  padding: 0;
}
ol, ul {
  list-style: none;
}
/* 9. ルートのスタックコンテキストを作成 */
#root, #__next {
  isolation: isolate;
}
summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display:none;
}