@charset "utf-8";
/* CSS Document */

/* ===================================
PC表示
=================================== */
@media screen and (min-width:751px){
/* ヘッダーロゴ */
#headerContents h1 a {
  background: url(../img/logo.svg) no-repeat;
  background-size: 100%;
  width: 240px;
  height: 55px;
  margin: 20px 0 0;
}

.spNav dd.linkListWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.spNav dd.linkListWrap ul.linkList {
  width: 270px;
}

/* フッターロゴ */
footer .logo a {
  background: url(../img/logo.svg) no-repeat;
  background-size: 100%;
  width: 280px;
  height: 60px;
  margin: 30px 0;
}

.txtArea .slogan {
  letter-spacing: 2px;
}

#fNav {
  text-align: left;
}

} /* @media screen and (min-width:751px) END */

/* ===================================
SP表示
=================================== */
@media screen and (max-width:750px){

/* ヘッダーロゴ */
#headerContents h1 a {
  background: url(../img/logo.svg) no-repeat;
  background-size: 100%;
  width: 162px;
  height: 45px;
  text-indent: -9999px;
  display: block;
  float: left;
  margin: 12px 0 0 0;
}

/* フッターロゴ */
footer .logo a {
  background: url(../img/logo.svg) no-repeat;
  background-size: 100%;
  width: 270px;
  height: 60px;
  text-indent: -9999px;
  margin: 40px 0 25px;
  display: block;
}

}