@charset "UTF-8";
/*-------------------------------
ディフォルト設定
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&display=swap");
html {
  width: 100%;
}

body {
  background: #000;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  font-family: "Outfit", "Noto Sans JP", "Nunito Sans", sans-serif;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/*text link（サイト全体のメイン文字カラー）
-------------------------------- */
a:link {
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

/*mb
------------------------*/
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

/*img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

* .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}