/* style.css - サイトスタイル（モバイルファースト） */

#wpadminbar a::before {
  width: auto;
}

/*コンタクトフォーム*/
.l-btn-base a,
.wp-block-button a,
input.wpcf7-submit {
  display: flex;
  align-items: center; /* 縦方向の中央 */
  justify-content: center; /* 横方向の中央（不要なら削除） */
  border: solid 2px rgb(var(--accent-color) / 1);
  background-color: rgb(var(--bace-color) / 1);
  color: rgb(var(--accent-color) / 1);
  font-weight: bold;
  width: 100%!important;
  max-width: 100%!important;
  margin: 2rem auto;
  padding: .5rem 2rem;
  border-radius: .5rem;
	cursor: pointer;
  transition:0.3s;
}

.l-btn-base a:hover,
.wp-block-button a:hover,
input.wpcf7-submit:hover {
  background-color: rgb(var(--accent-color) / 1);
  color: #fff;
  text-decoration: none; /* 下線を消す */
  transition: 0.3s;
}

#sb_instagram {
  padding: 1rem;
}


/*コンタクトフォーム*/

@media (width <=36rem) {
}

@media (width >=36rem) {
}

@media (width >=48rem) {
}

@media (width >=64rem) {
}