@charset "utf-8";

/* =========================================================
   base.css
   - Reset & global base styles
   - 全ページ共通・触る頻度は最低限
========================================================= */

/* --- Box sizing reset --- */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* --- Body base --- */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
}

/* --- Media --- */
img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- Buttons & form reset --- */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Lists --- */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --- Headings (最低限) --- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
}

/* --- Paragraph --- */
p {
  margin: 0;
}
