/* 装飾テキストブロックのベーススタイル */
.wp-block-custom-decorated-text {
  margin: 20px 0;
}

/* 1. ふきだしスタイル */
.decorated-text.speech-bubble {
  display: block;
  width: 90%;
  max-width: 600px;
  padding: 15px;
  border-radius: 4px;
  position: relative;
  margin: 20px auto;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.6;
  word-wrap: break-word;
}

/* ふきだしの左揃え時の調整 */
.decorated-text.speech-bubble[style*="text-align: left"] {
  margin-left: 0;
  margin-right: auto;
}

/* ふきだしの右揃え時の調整 */
.decorated-text.speech-bubble[style*="text-align: right"] {
  margin-left: auto;
  margin-right: 0;
}

/* ふきだしの吹き出し部分 */
.decorated-text.speech-bubble::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid;
  border-top-color: inherit;
}

/* 左揃えのふきだしの吹き出し部分を左寄せ */
.decorated-text.speech-bubble[style*="text-align: left"]::before {
  left: 30px;
  right: auto;
  margin: 0;
}

/* 右揃えのふきだしの吹き出し部分を右寄せ */
.decorated-text.speech-bubble[style*="text-align: right"]::before {
  left: auto;
  right: 30px;
  margin: 0;
}

/* 2. 下線付きスタイル */
.underlined-outer {
  padding: 20px 0;
}

.decorated-text.underlined {
  display: inline;
  padding: 2px 0;
  font-size: 21px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: transparent;
  text-decoration: none;
}

.decorated-text.underlined:hover {
  transform: translateY(-1px);
}

/* アクセシビリティ対応 */
.decorated-text:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  .decorated-text.speech-bubble {
    border: 2px solid currentColor;
  }
}

/* 動きを減らす設定への対応 */
@media (prefers-reduced-motion: reduce) {
  .decorated-text.underlined {
    transition: none;
  }

  .decorated-text.underlined:hover {
    transform: none;
  }
}
