/* Gutenberg オリジナルブロック用スタイル（エディタ・フロント共通） */
.c-double-text-btn {
  position: relative;
  max-width: 850px;
  margin: 0 auto 24px;
  padding-top: 16px;
}

/* 上の小さいタグ部分（見出し） */
.c-double-text-btn__heading {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 4px 40px;
  background-color: #fff;
  border: 2px solid #f0973e;
  border-radius: 999px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 1;
}

.c-double-text-btn__heading:visited {
  color: #000;
  text-decoration: none;
}

/* 吹き出しの三角（下向き） */
.c-double-text-btn__heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-right: 2px solid #f0973e;
  border-bottom: 2px solid #f0973e;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

/* オレンジのボタン本体 */
.c-double-text-btn__text {
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 48px 20px 20px;
  /* 上下20px 左右20px（右は矢印分を確保） */
  background-color: #f0973e;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.c-double-text-btn__text:hover {
  color: #fff;
}

.c-double-text-btn__text:visited {
  color: #fff;
  text-decoration: none;
}

/* ブロック全体にホバーしたら、見出し・ボタン両方を一緒にフェード */
.c-double-text-btn:hover .c-double-text-btn__heading,
.c-double-text-btn:hover .c-double-text-btn__text {
  opacity: 0.8;
}

/* 右矢印（::after） */
.c-double-text-btn__text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .c-double-text-btn__heading {
    top: 6px;
    padding: 4px 20px;
    font-size: 14px;
    line-height: 17.5px;
  }
}