@charset "utf-8";

/* ======================================================
 * footer.css
 * ------------------------------------------------------
 * SPonly
 * - Common
 * - Override
 * - Assist
 * - Parts
 * - Clearfix
 * Media Queries
 * Print
====================================================== */

/* ------------------------------------------------------
 * Common
------------------------------------------------------ */
/* ----- #contents ----- */
/* --/WebDesk/ext/sp/style.cssでposition:absoluteになっており、Footerが正しく表示されないのでoverrideさせています -- */
#contents {
  position: static;
}


/* ----- Footer ----- */
.Footer {
  padding: 20px 0;
  border-top: 1px solid #cdd0e0;
}
.Footer,
.Footer * {
  box-sizing: border-box;
}
.Footer .footer-copy {
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* ----- Footer_v2 ----- */
.Footer_v2 {
  font-size: 12px;
  color: #fff;
  background-color: #5D8BCF;
  margin-top: 80px;
  padding: 3px 15px;
}

/* ------------------------------------------------------
 * Override
------------------------------------------------------ */

/* ------------------------------------------------------
 * Assist
------------------------------------------------------ */

/* ------------------------------------------------------
 * Parts
------------------------------------------------------ */

/* ------------------------------------------------------
 * Clearfix
------------------------------------------------------ */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* ======================================================
 * Print
====================================================== */
@media print {
}