@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@500&display=swap");

:root {
  --font-body: "zen-kaku-gothic-antique-medi", "noto-sans-cjk-jp", sans-serif;
  --font-display: "sketchnote-square", sans-serif;
  --font-heading: "Kiwi Maru", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
li,
dl,
dt,
dd,
button {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
}

body {
  min-width: 320px;
}

ul {
  padding: 0;
  list-style: none;
}

dl,
dd {
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  border: none;
}
