/* ==========================
   Safe Reset CSS (slick friendly)
   ========================== */


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

/* margin & padding */
html,
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol, li,
dl, dt, dd,
figure,
blockquote,
pre {
  margin: 0;
  padding: 0;
}

/* body */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* list */
ul,
ol {
  list-style: none;
}

/* links */
a {
  text-decoration: none;
  color: inherit;
}

/* images & media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* form elements */
/* ⚠️ color / all / ::before は触らない */
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
}

/* button */
button {
  cursor: pointer;
}

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

/* address */
address {
  font-style: normal;
}
