@charset "UTF-8";
/* CSS Document */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*----------------------------------------------------------------------
//////////■■■■base style■■■■//////////
----------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

.no-webp body::before {
  background: url(../img/common_bg1.jpg) no-repeat center center;
  background-size: cover;
}

.webp body::before {
  background: url(../img/common_bg1.webp) no-repeat center center;
  background-size: cover;
}

body {
  background: #f8f8f8;
  color: #2d2d2d;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0em;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-width: 100%;
  width: 100%;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -999;
}

a {
  border: none;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  display: block;
  width: 100%;
}
