@charset "utf-8";

html {
  font-size: 10px;
}

body {
  width: 100%;
  color: #333;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

b, strong, .bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

/* 游ゴシックーIEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

/*リンク表示方法*/
a {
  text-decoration: underline;
}

a:link {
  color: #333;
}

a:visited {
  color: #333;
}

a:active {
  color: #333;
}

a:hover {
  text-decoration: none;
}


/*-----------------------------------------------------------
  PCサイズ
-----------------------------------------------------------*/

.pc {
  display: block;
}

.sp {
  display: none;
}

.copyright {
  padding: 30px;
  text-align: center;
  font-size: 1.4rem;
}

/*-----------------------------------------------------------
  max-width: 768px
-----------------------------------------------------------*/
@media screen and (max-width: 768px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}

/* max-width: 768px ここまで */