@charset "utf-8";
/* CSS Document */

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust:     100%;
  background: #fff;
  scroll-behavior: smooth;
  overflow-y: scroll;
  scroll-padding-top: 50px;
}

body{
  font-family: "LINESeedJP", "sans-serif";
  letter-spacing: 0.05rem;
  font-size: 16px;
  font-weight: 400;
  color: #626262;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: #fff;
}

*:focus {
  outline:none;
}

button, input, select, textarea {
  font-family : inherit;
  font-size : 100%;
}

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

a:hover {
  text-decoration: underline;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

selector {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
  line-height: 0px;
}


/* //////////////////////////////////////////
  TABLET / SP
  ////////////////////////////////////////// */

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

    /*スマフォボタンリセット*/
    * { -webkit-appearance: none; }

    body {
      font-size: 15px;
      -webkit-overflow-scrolling: touch;
      -webkit-text-size-adjust: 100%;
    }

  }
  /*media screen_end*/

  @media screen and (max-width: 667px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 568px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 480px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 375px) {
  }
  /*media screen_end*/

  @media screen and (max-width: 320px) {
  }
  /*media screen_end*/






