@charset "utf-8";

/* 静的ページ向けスタイル
/* 接頭辞を`.sl-`とする
********************************************************* */

* {
  box-sizing: border-box;
}

a {
  word-break: break-all;
}

a:hover {
  opacity: 0.8;
}

/* 背景色指定 */
.sl-bg-base {
  background-color: #fff  !important;
}

.sl-bg-accent {
  background-color: #1c61ad !important;
}

.sl-bg-gray {
  background-color: #959595 !important;
}

.sl-bg-positive {
  background-color: #ff9933 !important;
}

/* window幅が801px以上の時 */
@media screen and (min-width: 801px) {
  .sl-content-center {
    width: 800px;
    margin: 0 auto !important;
    padding: 10px !important;
    background-color: #fff;
  }

  .sl-main {
    width: 100% !important;
    float: none !important;
  }
}

/* window幅が800px以下の時 */
@media screen and (max-width: 800px) {
  .sl-content-center {
    width: 100%;
    margin: 0 auto !important;
    padding: 10px !important;
    background-color: #fff;
  }

  .sl-main {
    width: 100% !important;
    float: none !important;
  }
}

/* 静的ページの共通ヘッダー */
.sl-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff;
}

/* 静的ページの共通フッター */
.sl-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  margin-top: 10px;
  background-color: #fff;
}

/* 静的ページのボタンスタイル */
.sl-btn {
  display: inline-block;
  vertical-align: middle;
  width: 80%;
  padding: 15px 5px;
  line-height: 1.5;
  border: 0;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
      -moz-appearance: none;
          appearance: none;
  background-color: #ec323d;
  border-radius: 5px;
  font-weight: bolder;
  text-decoration: none;
  color: #fff !important;
}

.sl-btn:hover {
  text-decoration: none; 
}