/*
Theme Name: アキュテック
*/

@charset "utf-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  html {
    font-size: 9px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: inherit !important;
  color: var(--wp--preset--color--base);
  position: relative;
  z-index: 0;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
}
body::before ,body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none
}
@media screen and (max-width: 1000px) {
  body::before {
      background-size: 120%;
  }
}
@media screen and (max-width: 680px) {
  body::before {
      background-size: 180%;
  }
}
body::after {
  background-image: url(image/noise.jpg);
  background-size: 1500px;
  mix-blend-mode: overlay;
  opacity: 0.2;
  z-index: -1;
}


.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}
.container > * {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}

@media screen and (max-width: 680px) {
  .container {
  padding: 0 60px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding: 0 30px;
    }
}