/* カスタマイズ用CSS */
.p-media-kv .label { /* 右からの距離 */
	background-color: rgba(255, 255, 255, 0.8); /* 内側の余白 */
	border-radius: 4px; /* 絶対位置指定 */
	bottom: 20px; /* 下からの距離 */
	left: 20px; /* 背景色（半透明白） */
	padding: 10px 20px;
	position: absolute; /* 角丸 */
	z-index: 2; /* 重なり順を指定 */
}

.c-btn-border.is-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.c-btn-border.is-disabled:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
	height: auto;
	width: auto;
}