@charset "utf-8";
/*----------------------
FONT
----------------------*/
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../font/NotoSansJP-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Ubuntu Condensed';
  src: url('../font/UbuntuCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
/*----------------------
BASE CLASS
----------------------*/
* {
  box-sizing: border-box;
}
*::placeholder {
  color: #999;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

