/* Josh Comeau Reset + Production tweaks */

/* 1. Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 4. Media elements */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 5. Form elements inherit font */
input, button, textarea, select {
  font: inherit;
}

/* 6. Avoid text overflow */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 7. List reset (for layout) */
ul, ol {
  list-style: none;
  padding: 0;
}
/* WordPress標準の記事内リストなら */
.kiji ul, .kiji ol {
	list-style: revert;
	padding: revert;
}

/* 8. Anchor reset */
a {
  text-decoration: none;
  color: inherit;
}

/* 9. Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 10. Responsive iframe */
iframe {
  max-width: 100%;
}