body {
  color: #000;
  background-color: #fff;
  font-family: var(--font-family);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  /* 行頭・行末の不自然な空きを詰める（モダンブラウザで利用可） */
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  /* 約物（句読点・括弧）の余白を自動調整 */
  text-spacing-trim: trim-start;
  /* 単語・文節単位で改行し、読みやすい折り返しに */
  word-break: auto-phrase;
  line-break: strict;
}

a.wp-block-button__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: europa, sans-serif;
  letter-spacing: 0.1em;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  position: relative;
  font-family: var(--font-family);
  transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-weight: bold;
  background-color: #fff;
  text-decoration: none;
  color: #000;
  gap: 10px;
}
a.wp-block-button__link.has-white-color {
  color: white;
  gap: 10px;
  transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a.wp-block-button__link svg {
  stroke: currentColor !important;
  fill: currentColor !important;
  transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a.wp-block-button__link.has-orange-background-color {
  background-color: #DC503C;
  border: 1px solid #DC503C;
  transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a.wp-block-button__link.has-orange-background-color:hover {
  background-color: #fff;
  color: #DC503C;
}
a.wp-block-button__link.has-white-background-color {
  background-color: #fff;
  border: 1px solid #000;
  transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a.wp-block-button__link.has-white-background-color:hover {
  background-color: #000;
  color: #fff;
}
a.wp-block-button__link.has-black-background-color {
  background-color: #000;
  border: 1px solid #000;
  transition: all 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a.wp-block-button__link.has-black-background-color:hover {
  background-color: #fff;
  color: #000;
}
a.wp-block-button__link:hover svg {
  stroke: currentColor;
  fill: currentColor;
}
.has-custom-width align-self: .wp block;button__link {
  max-width: none;
}
.is-content-justification-left {
  text-align: left;
}
.is-content-justification-center {
  text-align: center;
}
.is-content-justification-right {
  text-align: right;
}
.wp-block-button .wp-block-button__link.is-style-outline, .wp-block-button.is-style-outline>.wp-block-button__link {
  border-width: 1px;
}

@media screen and (max-width: 640px) {
  a.wp-block-button__link {
    height: auto;
    min-height: 50px;
    line-height: 1.5;
    padding: 10px 15px;
    font-size: 14px;
    text-align: left;
  }
  .c-text div.wp-block-button {
    margin-block: 1em;
  }
}