@charset "UTF-8";
/* ==========================================================================
   GO POINT - reset.css（リセット）
   ブラウザ既定スタイルの初期化（要素レベル）。基本触らない。
   ※ SCSS廃止・このCSSを直接編集。読み込み順: reset → common → style（→ slick）。
      更新時は inc/head.php の各 ?v= を変更してキャッシュ更新。
   ========================================================================== */

* {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
body {
  font-size: 16px;
  color: #333;
  font-family:
    游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 1.8;
  font-feature-settings: "palt";
  margin: 0 !important;
  background-color: #000;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  counter-reset: number 0;
}
#buysell_assessment_buy {
  position: relative;
}
ul,
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #000;
}
html:focus-within {
  scroll-behavior: smooth;
}
img,
picture {
  max-width: 100%;
  display: block;
  pointer-events: none;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}
input,
button,
textarea,
select {
  font: inherit;
}
input[type="submit"] {
  cursor: pointer;
}
video {
  width: 100%;
}
