@charset "UTF-8";
/*----------------------------------------
reset
----------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
  padding: 0;
}

* {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: transparent;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video, button, input, textarea, select {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font: inherit;
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
}

body {
  color: #333;
  background-color: #fff;
}

/* すべてのボーダー、背景、装飾をリセット */
a, button, input, textarea, select {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: inherit;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
}

/* リストを完全リセット */
ul, ol, li {
  list-style: none;
  list-style-type: none;
}

/* 画像を完全レスポンシブ化 */
img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
  display: block;
}

/* テーブルリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

/* フォーカス状態もリセット */
*:focus {
  outline: none;
}

/* その他の装飾要素をリセット */
hr {
  border: none;
  background: none;
}

address {
  font-style: normal;
}

q::before, q::after,
blockquote::before, blockquote::after {
  content: none;
}

/* ブラウザデフォルトの余白を完全除去 */
blockquote, figure {
  margin: 0;
  padding: 0;
}

/* iOSのリンクを完全リセット */
a[x-apple-data-detectors="true"] {
    text-decoration: none !important;
    color: inherit !important;
}