@charset "UTF-8";

/* =========================================================
   固定ページ（デフォルトテンプレート）用スタイル
   - Gutenberg 標準の「ボタン」ブロックに、投稿と同等の
     .btn01 ライクなスタイルを当てる
   - functions.php でデフォルトテンプレート時のみロード、
     かつセレクタも .article 配下にスコープして二重に限定
   ========================================================= */

.article .wp-block-buttons {
  margin: 30px auto 30px;
  text-align: center;
}

.article .wp-block-heading.page-title {
  border: 1px solid #000;
  padding: 10px;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .article .sme-font-size.has-large-font-size {
    font-size: 1.1em !important;
    line-height: 1.1em;
  }
}

.article .wp-block-button__link {
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
  background-color: #003f82;
  color: #fff;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  vertical-align: middle;
  border: none;
  border-radius: 0;
}
.article .wp-block-button__link:hover,
.article .wp-block-button__link:focus {
  background-color: #FFC000;
  color: #003f82;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .article .wp-block-button__link {
    padding: 20px 105px;
    font-size: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .article .wp-block-button__link {
    min-width: 60vw;
    padding: 4vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 1em;
  }
}
