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

/* margin / padding reset */
* {
  margin: 0;
  padding: 0;
}

/* body */
body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* list */
ul,
ol {
  list-style: none;
}

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

/* image */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
  width: 100%;
}

/* button */
button {
  cursor: pointer;
}

/* heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.pc {
  display: none;
}

@media screen and (min-width:768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

}