/* -- color --*/
/*-- default --*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3b3b3b;
  position: relative;
  line-height: 1.7;
  width: 100%;
  max-width: 68rem;
  margin: auto;
  background: #fcfaf2;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}
*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

caption, th, td {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #3b3b3b;
}

img {
  max-width: 100%;
  height: auto;
}

/*-- common --*/
.flex {
  display: flex;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: 600;
}

.inner {
  width: 92%;
  max-width: 140rem;
  margin: 0 auto;
}

.pconly {
  display: block;
}

.sponly {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
}