/*
 * メインメニュー
 */
 header {
  border-bottom: solid 2px #47AAA5;
 }

 /*
 * スマホ
 */
@media screen and (max-width: 767px) {
  header {
    display: none;
  }

  .pc-br {
    display: none !important;
  }

  .sp-br {
    display: block !important;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

.sp-only {
  display: none;
}

.pc-br {
    display: block;
  }

.sp-br {
  display: none;
}

.hover-none a:hover {
  text-decoration: none;
}

 /*
  * footer
  */
footer {
  padding: 20px 0;
  border-top: 1px solid #47AAA5;
}

.global-footer {
  width: 86%;
  margin: 0 auto;
}

.sg-footer-lower-links {
  display: table;
}

.global-footer ul {
  margin: 0 0 0 auto;
}

.sg-footer-lower-links li {
  font-size: 1.1em;
  display: table-cell;
  padding: 0 12px;
}

 /*
  * other
  */
.black {
  color: #000;
}

/*
 * fadein
 */
.fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}