@charset "UTF-8";

/* -------------------------------------------------
  File name : reset.css (updated)
  Purpose   : Modern, minimal reset/base
---------------------------------------------------- */

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

/* remove default margins */
html, body, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dd, ol, ul,
figure, hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* core defaults */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

/* media */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* lists (必要なら各所で戻す) */
ol, ul {
  list-style: none;
}

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

/* tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th, td {
  text-align: left;
  vertical-align: top;
}

/* forms */
button, input, select, textarea {
  font: inherit;
  color: inherit;
}
button, input, select, textarea {
  margin: 0;
}
button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
textarea {
  resize: vertical;
}
:disabled {
  cursor: not-allowed;
}

/* focus (アクセシビリティ維持) */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* hr */
hr {
  border: 0;
  border-top: 1px solid #ccc;
}

/* selection (任意) */
::selection {
  background: #cfe8ff;
}