.l-entry-body .button_wrap{
	text-align:center;
 	margin: 5px 0;
}
.l-entry-body .button{
	color: #fff;
	display: inline-block;
	border: 3px solid #2e8b57;
	padding: 20px 30px;
	background: #2e8b57;
	font-weight:  bold;
	border-radius: 50px;
	transition: 0.5s;
}
.l-entry-body .button:hover{
	color: #2e8b57;
	border: 3px solid #2e8b57;
	background: #fff;
	font-weight:  bold;
	transition: 0.5s;
	border-radius: 50px;
}

.l-entry-body .text_img{
    width: 4%;
    vertical-align: text-top;
}

/* 埋め込みYouTubeなど */
.l-entry-body .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}
.l-entry-body .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* テーブル装飾 */


.l-entry-body .wp-block-table {
  border: 2px solid #bbb !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  margin: 2em 0 !important;
  font-size: 15px !important;
  background-color: #fff !important;
  display: block !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-shadow: none !important;
}
.l-entry-body .wp-block-table th,
.l-entry-body .wp-block-table td {
  border: 1.2px solid #ccc !important;
  text-align: center !important;
  padding: 14px 18px !important;
  background: #fff !important;
  color: #333 !important;
  font-weight: normal !important;
  transition: none !important;
}
/* 表の1行目（ヘッダー行）だけCOCO the Styleオレンジ */
.l-entry-body .wp-block-table thead th,
.l-entry-body .wp-block-table tr:first-child th,
.l-entry-body .wp-block-table tr:first-child td {
  background: #f67e24 !important;
  color: #fff !important;
  font-weight: bold !important;
  white-space: nowrap !important;
}

/* 1行目ホバー時も絶対に色変わらない */
.l-entry-body .wp-block-table tr:hover th,
.l-entry-body .wp-block-table tr:hover td {
  background: unset !important;
  color: unset !important;
  box-shadow: none !important;
}
.l-entry-body .wp-block-table tr:hover th,
.l-entry-body .wp-block-table tr:first-child th,
.l-entry-body .wp-block-table tr:first-child td {
  background: #f67e24 !important;
  color: #fff !important;
}

/* 偶数行だけ淡グレーでストライプ（なくてもOK） */
.l-entry-body .wp-block-table tbody tr:nth-child(even) td,
.l-entry-body .wp-block-table tbody tr:nth-child(even) th {
  background: #faf9f6 !important;
  color: #333 !important;
}
/* hoverやfocus時も色変化なし */
.l-entry-body .wp-block-table th:hover,
.l-entry-body .wp-block-table td:hover,
.l-entry-body .wp-block-table th:focus,
.l-entry-body .wp-block-table td:focus,
.l-entry-body .wp-block-table th:active,
.l-entry-body .wp-block-table td:active,
.l-entry-body .wp-block-table th[aria-selected="true"],
.l-entry-body .wp-block-table td[aria-selected="true"] {
  background: inherit !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none !important;
}


/* カードリンク */
/* 1. アイキャッチ画像を横長にする */
.l-entry-body .custom-link-card img {
  width: 120px;      /* 横長に拡大 */
  height: 72px;      /* 16:9比率の例 */
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  margin-left: 6px;
  display: block;
}

/* 2. タイトルの下の余白を詰める */
.l-entry-body .link-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;     /* 下の余白をなくす */
  color: #333;
  line-height: 1.3;
}

/* 3. 説明文（.link-desc）を非表示に */
.l-entry-body .link-desc {
  display: none !important;
}
.l-entry-body .custom-link-card {
  border: 2px solid #f67e24 !important;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}

.single-customer-reviews .speech-bubble {
  background: linear-gradient(90deg, #ffe2cc, #e5effb);
  color: #222;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  display: block;
  width: 100%;
  margin: 40px 0 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  box-sizing: border-box; /* これ大事！ */
}

.single-customer-reviews .speech-bubble .bubble-arrow {
  display: block;
  position: absolute;
  left: 36px;         /* ←padding-leftと同じ値にすることで三角がテキスト左揃えになる */
  bottom: -9px;       /* ちょっと下に出す。お好みで微調整してOK */
  transform: rotate(45deg);
  width: 18px;
  height: 18px;
  background: #ffe2cc;
  border-radius: 3px;
  border: none;
  content: "";
  z-index: 1;
}
.single-customer-reviews .speech-bubble .q-label {
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  margin-right: 8px;
  letter-spacing: 0.03em;
  background: none; /* 背景つけたい場合はここに背景色 */
}
