@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", serif;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}

body {
  overflow-x: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.lg{
  display: none;
}

.pc {
  display: block;
}

.md {
  display: none !important;
}

.sp {
  display: none !important;
}

@media screen and (min-width: 1720px) {

  .lg {
    display: block;
  }
}

@media screen and (max-width: 1024px) {

  .md {
    display: block !important;
  }
}


@media screen and (max-width: 768px) {

  * {
    font-size: 14px;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
