@charset "UTF-8";

/* ハートと数字のコンテナ */
.heart-with-number {
	position: relative;
	width: 36px;
	height: 36px;
	display: inline-block;
	/* ★ここを変更：ハートの右側の余白を増やす */
	margin-right: 15px; /* 例: 15pxに設定。必要に応じて調整してください */
	vertical-align: middle; /* テキストと縦位置を合わせるため */
	/* border: 1px dashed blue; /* レイアウト確認用、最終的には削除 */
}

/* ハートの形を描画する要素 */
.heart-shape {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg) scaleX(1.1);
	
	width: 24px;
	height: 24px;
	background-color: #ec6d88;
	
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

/* ハートの上部にある2つの丸（疑似要素） */
.heart-shape::before,
.heart-shape::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background-color: #ec6d88;
	border-radius: 50%;
}

.heart-shape::before {
	top: -12px;
	left: 0;
}

.heart-shape::after {
	top: 0;
	left: 12px;
}

/* 数字のスタイルと配置 */
.number {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	color: white;
	font-size: 16px;
	font-weight: bold;
	z-index: 1;
	text-align: center;
	line-height: 1;
	font-family: Arial, sans-serif;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* 以下のスタイルはデモ用：文字列を配置するためのもの */
.content-area {
	display: flex;
	align-items: center;
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.my-text {
	font-size: 18px;
	color: #333;
}
.guarantee_rate td {
	text-align: center;

}

/* 現在のご有利金利 */
#rateList .ratedetail {
	text-align: center;

}
#rateList .title {
	background-color: #f2f2f2;
	padding: 10px 60px;
	color: #333333;
	/* font-size: 22px; */
	font-weight: bold;

}
#rateList .rate {
	color: #f06813;
	padding: 10px 30px;

	
}
#rateList .rate strong {
	font-size: 40px;
	font-weight: bold;
}

/* 現在のご有利金利 */
#atmtable .font_color_pink {
	font-size: 18px;
	color: #ec6d88;

}