/*
  スコープ付きリセット（.kkm-lp 配下のみ）
  WPテーマ FKK_2020 は Bootstrap 3 + テーマCSSを全ページ読み込みするため、
  組み込み先のグローバルスタイルをここで打ち消し、LP内を自己完結させる。
  :where() で詳細度を (0,1,0) に抑え、style.css が常に勝てるようにしている。
*/
.kkm-lp,
.kkm-lp *,
.kkm-lp *::before,
.kkm-lp *::after {
  box-sizing: border-box;
}

.kkm-lp
  :where(h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd) {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.kkm-lp :where(ul, ol) {
  list-style: none;
}

.kkm-lp :where(a) {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

.kkm-lp :where(img, svg, video) {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

.kkm-lp :where(button) {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
}

.kkm-lp :where(small) {
  font-size: inherit;
}
