/*  # resset.dev • v5.0.2
    # github.com/filipelinhares/ress
    # normalize.cssライクなcss  */

/*  # =================================================================
    # Global selectors グローバルセレクタ
    # ================================================================= */
html {
  /* ブラウザが改行を挿入するかどうか */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
  /* スクロール制御 */
  overscroll-behavior: none;
  -ms-scroll-chaining: chained;
}
*,
::before,
::after {
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  /* すべての要素および擬似要素に `background-repeat: no-repeat` を設定する。 */
  background-repeat: no-repeat;
  box-sizing: inherit;
  /* paddingとborderを幅と高さに含める */
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
::before,
::after {
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  /* text-decoration と vertical align を ::before と ::after 疑似要素に継承する。 */
  text-decoration: inherit;
  vertical-align: inherit;
}
* {
  /* Reset `padding` and `margin` of all elements */
  /* すべての要素の `padding` と `margin` をリセットする。 */
  padding: 0;
  margin: 0;
}

/*  # =================================================================
    # General elements 一般的な要素
    # ================================================================= */
hr {
  /* Show the overflow in Edge and IE */
  /* EdgeとIEでオーバーフローを表示する  */
  overflow: visible;
  /* Add the correct box sizing in Firefox */
  /* Firefoxで正しいボックスサイズを追加する */
  box-sizing: content-box;
  height: 0;
  /* Correct border color in Firefox. */
  /* Firefoxのボーダーカラーを修正しました。 */
  color: inherit;
}
details,
main {
  /* Render the `main` element consistently in IE. */
  /* IE で `main` 要素を一貫してレンダリングする。 */
  display: block;
}
summary {
  /* Add the correct display in all browsers */
  /* すべてのブラウザーで正しい表示を追加する */
  display: list-item;
}
small {
  /* Set font-size to 80% in `small` elements */
  /* small` 要素で font-size を 80% に設定する。 */
  font-size: 80%;
}
[hidden] {
  /* Add the correct display in IE */
  /* IEで正しく表示されるようにする */
  display: none;
}
abbr[title] {
  /* Remove the bottom border in Chrome 57 */
  /* Chrome 57で下部のボーダーを削除する  */
  border-bottom: none;
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  /* Chrome、Edge、IE、Opera、Safariで、正しい文字装飾を追加する */
  text-decoration: underline;
  text-decoration: underline dotted;
}
a {
  /* Remove the gray background on active links in IE 10 */
  /* IE 10 でアクティブなリンクの灰色の背景を削除する */
  background-color: transparent;
}
a:active,
a:hover {
  /* Remove the outline when hovering in all browsers */
  /* すべてのブラウザーでホバーリング時のアウトラインを削除 */
  outline-width: 0;
}
code,
kbd,
pre,
samp {
  /* Specify the font family of code elements */
  /* コード要素のフォントファミリーを指定する文字サイズの継承と拡大縮小を修正 */
  font-family: monospace, monospace;
}
pre {
  /* Correct the odd `em` font sizing in all browsers */
  /* すべてのブラウザで `em` のフォントサイズが変なのを修正する */
  font-size: 1em;
}
b,
strong {
  /* Add the correct font weight in Chrome, Edge, and Safari */
  /* Chrome、Edge、Safariで、正しいフォントのウェイトを追加する */
  font-weight: bolder;
}
/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  /* Correct border color in all Chrome, Edge, and Safari. */
  /* Chrome、Edge、Safariのすべてで、ボーダーカラーを修正。 */
  border-color: inherit;
  /* Remove text indentation in Chrome, Edge, and Safari */
  /* Chrome、Edge、Safariでテキストのインデントを削除する */
  text-indent: 0;
}
iframe {
  border-style: none;
}

/*  # =================================================================
    # Forms フォーム
    # ================================================================= */

input {
  border-radius: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  /* Correct the cursor style of increment and decrement buttons in Chrome */
  /* Chromeのインクリメントボタンとデクリメントボタンのカーソルスタイルの修正 */
  height: auto;
}
[type='search'] {
  /* Correct the odd appearance in Chrome and Safari */
  /* ChromeとSafariで表示がおかしくなるのを修正する */
  -webkit-appearance: textfield;
  /* Correct the outline style in Safari */
  /* Safariのアウトラインスタイルを修正する */
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  /* Remove the inner padding in Chrome and Safari on macOS */
  /* macOSのChromeとSafariで内側のパディングを削除する */
  -webkit-appearance: none;
}
textarea {
  /* Internet Explorer 11+ */
  /* Internet Explorer 11 以上 */
  overflow: auto;
  /* Specify textarea resizability */
  /* テキストエリアのサイズ変更機能を指定する */
  resize: vertical;
}
button,
input,
optgroup,
select,
textarea {
  /* Specify font inheritance of form elements */
  /* フォーム要素のフォント継承を指定する */
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
}
optgroup {
  /* Restore the font weight unset by the previous rule */
  /* 前のルールで設定されなかったフォントのウェイトを元に戻す */
  font-weight: bold;
}
button
input {
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
  /* IE 8/9/10/11でアドレス `overflow` が `hidden` に設定される。 */
  overflow: visible;
}
button,
select {
  /* Firefox 40+, Internet Explorer 11- */
  /* Firefox 40以上、Internet Explorer 11以上 */
  text-transform: none;
}
/* Apply cursor pointer to button elements */
/* ボタン要素にカーソルポインタを適用する */
button,
[type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
  cursor: pointer;
}
/* Remove inner padding and border in Firefox 4+ */
/* Firefox 4+で内側のパディングとボーダーを削除する */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/* Replace focus style removed in the border reset above */
/* 上記のボーダーリセットで削除されたフォーカススタイルの置き換え */
button:-moz-focusring,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}
button,
/* Prevent a WebKit bug where (2) destroys native `audio` and `video`controls in Android 4 */
/* Android 4 で (2) がネイティブの `audio` と `video` コントロールを破壊する WebKit バグの防止 */
html [type='button'],
[type='reset'],
[type='submit'] {
  /* Correct the inability to style clickable types in iOS */
  /* iOSでクリッカブルタイプのスタイルが設定できない不具合を修正 */
  -webkit-appearance: button;
}
/* Remove the default button styling in all browsers */
/* すべてのブラウザーでデフォルトのボタンスタイルを削除する */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
/* Style select like a standard input */
/* 標準入力のようなスタイルセレクト  */
select,textarea {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}
select::-ms-expand,
template {
  display: none; /* Internet Explorer 11+,10+ */
}
select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}
legend {
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  /* IE 8/9/10/11 で `color` が継承されないのを修正。 */
  border: 0;
  /* Correct the color inheritance from `fieldset` elements in IE */
  /* IE の `fieldset` 要素からの色継承を修正する。 */
  color: inherit;
  /* Correct the text wrapping in Edge and IE */
  /* /EdgeとIEでのテキストの折り返しを修正する */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  /* EdgeとIEでのテキストの折り返しを修正する */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  /* EdgeとIEでのテキストの折り返しを修正する */
  white-space: normal;
  /* Correct the text wrapping in Edge 18- and IE */
  /* Edge 18-とIEのテキストラッピングを修正する */
  max-width: 100%;
}
::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  /* iOSおよびSafariで、クリック可能なタイプにスタイルを設定できない問題の修正 */
  -webkit-appearance: button;
  color: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
  /* ChromeとSafariでフォントのプロパティを「継承」に変更する */
  font: inherit;
}
/* Replace pointer cursor in disabled elements */
/* 無効化された要素のポインターカーソルを置き換える */
[disabled] {
  cursor: default;
}

/*  # =================================================================
    # Specify media element style メディア要素のスタイルを指定する
    # ================================================================= */
/* Remove border when inside `a` element in IE 8/9/10 */
/* IE 8/9/10 で `a` 要素の中にあるボーダーを削除する。 */
img {
  border-style: none;
}
/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
/* Chrome、Firefox、Operaで正しい垂直方向のアライメントを追加する */
progress {
  vertical-align: baseline;
}

/*  # =================================================================
    # Accessibility アクセシビリティ
    # ================================================================= */
/* Specify the progress cursor of updating elements */
/* 要素更新時のプログレスカーソルの指定 */
[aria-busy='true'] {
  cursor: progress;
}
/* Specify the pointer cursor of trigger elements */
/* トリガ要素のポインタカーソルの指定 */
[aria-controls] {
  cursor: pointer;
}
/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
/* 無効、編集不可、その他操作不能な要素の非スタイルカーソルを指定する。 */
[aria-disabled='true'] {
  cursor: default;
}

/*  # =================================================================
    # Addition 追加
    # ================================================================= */
/* アニメーションのモーションを減らす */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
html {
  /* ブラウザーのテキスト自動拡大アルゴリズムを有効化 */
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
ul,ol,li {
  list-style: none;
}
a {
  text-decoration: none;
}
a,aside,body,div,em,figcaption,figure,footer,h1,h2,header,img,li,main,nav,ol,p,section,small,span,ul {
  border:0;
  margin:0;
  padding:0;
  vertical-align:baseline;
}
aside,figcaption,figure,footer,header,main,nav,section {
  display:block;
}
img {
  max-width: 100%;
  height: auto;
  line-height:0;
}
