@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #111; /* RGB */
  font-family: Shin Go Regular;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: left;
  background-color: #fbfbfb;
  margin-right: 0;
}
a:hover {
  opacity: 0.5;
}
.title {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 40px 0 30px 24px;
}
@media(max-width:768px) {
  .pc-only {
    display: none;
  }
}
@media(min-width:769px) {
  body {
/*    font-size: 1.6rem;*/
    line-height: 2.7rem;
  }
  .sp-only {
    display: none !important;
    font-size: 1.6rem;
    line-height: 2.7rem;
  } 
  .title {
  font-size: 2.1rem;
  font-weight: 500;
  padding: 70px 10% 40px;
}
}

