.forcus {
  font-size: 26px;
  color: red;
  font-weight: bolder;
}

.event-box {
  padding: 20px 10px;
  background: rgb(251, 164, 1, 30%);
  /* margin-left: 50px; */
}

/* ボタン共通設定 */
.btn03 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  border-radius: 25px;
  border: solid 1px #333;
  outline: none;
  transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.btn03:hover {
  border-color: transparent;
}

/*ボタンの中のテキスト*/
.btn03 span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 60px;
  background: rgb(249, 249, 3);
  border-radius: 25px;
  color: #333;
  transition: all 0.3s ease;
}

/*== 左下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushleft:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: -1;
  top: 4px;
  right: 4px;
  /*影の形状*/
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #333;
}

/*hoverの際にX軸に-4px・Y軸に4pxずらす*/
.pushleft:hover span {
  background-color: #333;
  color: #fff;
  transform: translate(-4px, 4px);
}

.lp-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}
