<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*-------------------------------
ディフォルト設定
---------------------------------*/
html {
  width: 100%;
}

body {
  background: #000;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 0.9em;
  line-height: 1.4em;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  body {
    /*tablet*/
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  body {
    /*sp*/
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}

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

a:visited {
  color: #fff;
}

a:hover {
  color: #fff;
}

a:active {
  color: #fff;
}

/*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: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
</pre></body></html>