@charset "utf-8";
/* ==========================================================================
   SAMPLE FASTLINE Inc. — reset.css
   最小限のリセット。装飾は common.css / pages.css で行う。
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 巨大文字を画面外へ出すため横方向のみクリップ（sticky を壊さない） */
  overflow-x: clip;
  scroll-behavior: auto;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, dt, ul, ol, li, fieldset, legend {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img { border-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

button { cursor: pointer; }

textarea {
  resize: vertical;
  overflow: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address { font-style: normal; }

strong, b { font-weight: 700; }

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:focus:not(:focus-visible) { outline: none; }

/* スクリーンリーダー専用 */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
