@charset "UTF-8";

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

/* List reset */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Body base */
html {
scroll-behavior: smooth;
}

body {
min-height: 100vh;
color: #2f2f2f;
background: #fdfbf7;
font-family: "Noto Sans JP", sans-serif;
text-rendering: optimizeSpeed;
}

/* Media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* Link */
a {
  color: inherit;
  text-decoration: none;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Hidden */
[hidden] {
  display: none !important;
}