@charset "UTF-8";
/* =========================================================
   reset.css
   参考LP（levela.co.jp/snsclub）のリセットを踏襲した軽量リセット
   ※画像コーディングLP向けに整理（テキスト選択は許可）
   ========================================================= */

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #000;
  background: #fff;
}

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

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(button, [role="button"]) {
  cursor: pointer;
}

:where(input, button, textarea, select) {
  color: inherit;
  font: inherit;
}

:where(:focus-visible) {
  outline: 2px solid #ed1c24;
  outline-offset: 2px;
}
