@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : homepage.css
 author     : Ability Consultant
 style info : トップページ
=================================================================== */
/* -----------------------------------------------------------
	タイトル
----------------------------------------------------------- */
.st_center {
  text-align: center;
  position: relative;
  z-index: 0;
}
.st_center:after {
  content: 'BUSINESS';
  position: absolute;
  bottom: 23px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 500%;
  color: #f1efef;
  font-weight: bold;
  line-height: 1;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .st_center:after {
    display: none;
  }
}
.st_center .jp {
  font-size: 215%;
  font-weight: normal;
  letter-spacing: .1em;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .st_center .jp {
    font-size: 172%;
  }
}

/* -----------------------------------------------------------
	ボタン
----------------------------------------------------------- */
.btn {
  text-align: center;
}
.btn a {
  padding: 16px 60px 16px 52px;
}
.btn a:hover {
  opacity: .8;
}
.btn a:hover span i {
  right: -20px;
}
.btn a span {
  position: relative;
  transition: all .2s;
  font-size: 122%;
  color: #fff;
}
.btn a span i {
  position: absolute;
  transition: all .2s;
  top: 5px;
  right: -15px;
  font-size: 100%;
}

.btn_orenge a {
  background: #f48e1f;
}

.btn_orenge_d a {
  background: #de5909;
}

.btn_white a {
  background: #fff;
  border: 1px solid #333;
}
.btn_white a span {
  color: #333;
}
