/* カスタムブロック ボタン */
.c-button-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  margin: 30px auto;
}
.c-button-wrap.is-center {
  justify-content: center;
}
.c-button-wrap.is-right {
  justify-content: flex-end;
}
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 2px solid #333;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  background-color: #FFF;
  text-decoration: none;
  color: #333;
  position: relative;
}
.c-button-wrap .c-button {
  min-width: 275px;
}


/* ファイルダウンロード*/
.download {
  margin: 30px 0;
}
.download a {
  text-align: center;
  display: block;
  border-radius: 0 4px 4px 4px;
  width: calc(100% - 40px);
  margin: 4em auto 2em;
  padding: 8px 20px;
  background-color: #efefef;
  color: #FFA500;
  position: relative;
}
.download a::before {
  content: "ダウンロードファイル";
  display: block;
  font-size: 75%;
  width: fit-content;
  color: #FFF;
  position: absolute;
  bottom: 100%;
  left: 0px;
  font-weight: bold;
  padding: 4px 20px;
  background: #FFA500;
  border-radius: 4px 4px 0px 0px;
}