@charset "UTF-8";
/* ========================================================= ベース */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background-color: #fafafa;
  padding: 0;
  margin: 0;
}

.container {
  margin: 0 16px;
}

.container-fluid {
  margin: 0;
}

.red {
  color: #DD2929;
}

/* ========================================================= ナビ */
#navi {
  background-color: #fff;
  padding: 15px 0px 15px;
  -webkit-box-shadow: 0px -10px 15px 0px #000;
          box-shadow: 0px -10px 15px 0px #000;
  -webkit-box-shadow: 0px -10px 12px 0px #000;
          box-shadow: 0px -10px 12px 0px #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 100;
  position: relative;
}

#navi .container {
  text-align: center;
}

#navi img {
  width: 130px;
  height: 50px;
}

/* ========================================================= ヘッダー */
#header {
  border-top: 1px solid #dbd1a9;
  background-color: #fffcf0;
  text-align: center;
  padding: 70px 0;
}
#header .header {
  margin: 0px auto 24px;
}
#header .body {
  margin: 0px auto 18px;
}

#header h1 {
  color: #0A0A0A;
  font-size: 28px;
  font-weight: 400;
  list-style: 1.6;
  letter-spacing: 5px;
  margin: 0 0 0 0;
  padding: 0;
}

#header p {
  color: #0A0A0A;
  font-size: 15px;
  list-style: 1.6;
  letter-spacing: 1px;
  margin: 10px;
}

#header p:first-child {
  font-size: 16px;
}

/* ========================================================= メイン */
#main {
  background-color: #ffffff;
  height: 100%;
}

/* レイアウト */
#main a.block {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none !important;
}
#main a.block:hover {
  text-decoration: none !important;
}

#main .body {
  padding-top: 60px;
  padding-bottom: 60px;
}

#main .body h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0 0 30px 0;
  padding: 0;
}

#main .body p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
}

#main .body ul {
  padding-left: 20px;
  margin: 30px 0 0 0;
}

#main .body li {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.7;
}

/* サポート宛て */
#main .block.support {
  background-color: #F1FFF3;
  border: 1px solid #bed6c1;
  border-right: none;
  color: #324039;
}

#main .block.support:hover {
  background-color: #3bb174;
  color: #ffffff;
}

/* 営業宛て */
#main .block.sales {
  background-color: #E8F8FF;
  border: 1px solid #bdd5df;
  color: #34415B;
}

#main .block.sales:hover {
  background-color: #1d9af9;
  color: #ffffff;
}

/* 画像 */
#main a.block .graphic {
  margin-top: 30px;
  width: 100%;
  height: 220px;
}

#main a.block.support .graphic {
  background: url(../img/staff-support.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

#main a.block.sales .graphic {
  background: url(../img/staff-sales.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}

/* ========================================================= フッター */
#footer {
  text-align: center;
}

#footer .container {
  padding: 40px 0;
}

#footer span {
  text-align: center;
  font-size: 11px;
  color: #333333;
}

/* ========================================================= */
@media screen and (min-width: 990px) {
  #main .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #main .block {
    width: 50%;
  }
}
@media screen and (min-width: 1300px) {
  #main .body {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}