*{ box-sizing: border-box; }

html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;

}

html {
  scrollbar-gutter: stable;
}

html,body {
  margin: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.13rem;
}
@media only screen and (max-width: 768px) {
body {
    font-size: 4.2vw;
  }
}

ul li { list-style-type:none; }

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

a {
  text-decoration: underline;
  color: #fff;
  outline: 0;
}


/*--------------------------------------------
エージェント別
--------------------------------------------*/
/********* pc *********/
.pc {
  display: block !important;
}

.pc__flex {
  display: flex !important;
}

.pc__inline {
  display: inline !important;
}

.sp,
.sp__flex,
.sp__inline {
  display: none !important;
}

/********* sp *********/
@media only screen and (max-width: 768px) {
  .pc,
  .pc__flex,
  .pc__inline {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .sp__flex {
    display: flex !important;
  }

  .sp__inline {
    display: inline !important;
  }
}


/*--------------------------------------------
フォント　Montserrat
--------------------------------------------*/
.fs-montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}