/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}

/* Additional Reset Styles */
/* Add your additional reset styles here */
/* aタグのcssをリセッt */
a {
  text-decoration: none;
  color: inherit;
}

/* li */
li {
  list-style: none;
}

/* img */
img {
  width: 100%;
  height: auto;
  display: block;
}

/* body */
body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.4;
  background-color: #f5f5f5;
}