@charset "UTF-8";
/*　共通設定
----------------------------------------------- */
#container {
  width: 100%;
  overflow: hidden;
  z-index: 2;
  background-color: #FFF;
  position: relative;
}

/*　レイアウト系
----------------------------------------------- */
/* SPのみ表示用 */
.sp {
  display: block;
}

.pc {
  display: none;
}

.text_bottom {
  margin-bottom: 6.66%;
}

@media screen and (min-width: 701px) {
  /* PCのみ表示用 */
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .text_bottom {
    margin-bottom: 4%;
  }
}

/* max-width:1000pxセンター揃え */
.inner {
  width: 100%;
}

@media screen and (min-width: 701px) {
  .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/*　カラー系
----------------------------------------------- */
/*　文字サイズ一覧
----------------------------------------------- */
.f_s14 {
  font-size: 1.4rem;
}

.f_s15 {
  font-size: 1.5rem;
}

.bold_txt {
  font-weight: bold;
}

/* 404
----------------------------------------------- */
#container #no_page {
  width: 100%;
  margin: 0 auto;
  padding: 180px 0;
  font-size: 18px;
  text-align: center;
}

#container #no_page .fs20 {
  font-size: 24px;
  margin-bottom: 15px;
}

.no-img400 {
  width: 100%;
  height: 400px;
  line-height: 400px;
  text-align: center;
  background-color: #EBEBEB;
  color: #000;
}

.cd-top {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
  transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

.cd-top.cd-top--show {
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-top--bottom {
  visibility: hidden;
  opacity: 0;
}
/*# sourceMappingURL=common.css.map */