/* Scss Document */
/*=============================================
 ******************* RESPONSIVE ****************
 *=============================================*/
html {
  min-width: auto;
}

html a:hover {
  text-decoration: none;
}

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

main {
  clear: both;
  width: 100%;
  position: relative;
}

html .wrap {
  padding: 0 5%;
  width: auto;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

html #socialbuttons .social-line {
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  html #socialbuttons .social-line {
    width: auto;
    overflow: hidden;
  }

  html .wrap {
    padding: 0;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
  }

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


/*=============================================
 *************** responsive common ************
 *=============================================*/
@media only screen and (min-width: 768px) {
  body {
    position: static !important;
    top: 0 !important;
  }
}