@charset "utf-8";
/* btn ************************************************************/
/* styleA */
a.btnStyleA {
  display: block;
  width: 250px;
  max-width: 85%;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  border: solid 1px #00a2d6;
  color: #00a2d6;
  text-align: center;
}
a.btnStyleA i {
  margin-left: 5px;
}

/* styleB */
a.btnStyleB {
  display: block;
  width: 250px;
  max-width: 85%;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #00a2d6;
  color: #fff;
  text-align: center;
  font-size: 0.9em;
}
a.btnStyleB i {
  margin-left: 5px;
}
/* trapezoid ************************************************************/
.trapezoid {
  position: relative;
  min-width: 1024px;
}
.trapezoid::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/common/trapezoid.png") no-repeat top center;
  background-size: contain;
  z-index: -1;
}
.trapezoid::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e8edef;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  /* btn ************************************************************/
  /* styleA */
  a.btnStyleA {
    display: block;
    width: 200px;
    max-width: 85%;
    margin: 0 auto;
  }

  /* styleB */
  a.btnStyleB {
    max-width: 95%;
  }

  /* trapezoid ************************************************************/
  .trapezoid {
    min-width: 100%;
  }
  .trapezoid::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/common/trapezoid.png") no-repeat top center;
    background-size: contain;
    z-index: -1;
  }
  .trapezoid::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e8edef;
    z-index: -2;
  }
}
