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

* {
  margin: 0
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%
}

input,
button,
textarea,
select {
  font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word
}

dl,
ol,
ul {
  margin-bottom: 0;
}

div,
ul,
p,
figure {
  padding: 0;
  margin: 0;
}

html {
  /*基準を1rem=10pxに設定*/
  font-size: 62.5%;
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px; */
  -webkit-text-size-adjust: 100%;
}

ul {
  list-style-type: none;
}

a {
  color: unset;
  text-decoration: none;
}

// ここまでreset