/**
 * ベースとなるリセット。LP用スタイルより先に読み込むこと。
 *
 * Shopify テーマでは例:
 *   {{ 'reset.css' | asset_url | stylesheet_tag }}
 *   {{ 'landing-page.css' | asset_url | stylesheet_tag }}
 */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}
