.main_content {
	max-width: max(69.44444vw, 1000px);
	width: 94%;
	margin: max(17.36111vw, 250px) auto max(6.94444vw, 100px);
	border-radius: max(2.77778vw, 40px);
	background-color: rgba(255, 255, 255, 0.9);
	padding: max(6.94444vw, 60px) max(4.16667vw, 40px) max(9.375vw, 100px);
	position: relative;
	z-index: 3;
}

.main_content h1 {
	max-width: max(41.66667vw, 600px);
	width: 100%;
	height: max(5.55556vw, 60px);
	border-radius: max(2.77778vw, 40px);
	margin: 0 auto;
	background: #00b3ec;
	background: linear-gradient(
		90deg,
		rgba(0, 179, 236, 1) 0%,
		rgba(255, 0, 165, 1) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: max(2.29167vw, 30px);
	line-height: max(2.77778vw, 40px);
}

.main_content .mc_block {
	margin-top: max(0px);
}

.main_content .mc_block p {
	font-size: max(1.1vw, 18px);
	line-height: max(1.8vw, 24px);
	color: #0e0000;
}

.main_content .mc_block img {
	display: block;
	max-width: 100%;
	width: 100%;
}

.main_content .mc_block p + p,
.main_content .mc_block p + img,
.main_content .mc_block img + p,
.main_content .mc_block img + img {
	margin-top: max(2.77778vw, 20px);
}

.main_content .mc_block p a {
	color: #0066cc;
	text-decoration: underline;
	font-weight: 500;
}

/* bold_b */
.main_content .mc_block .bold_b {
    font-size: max(1.8vw, 24px); /* 通常の1.5倍程度の大きさに設定 */
    line-height: 1.5;
    font-weight: bold;
    color: #fff; /* アクセントカラーとしてピンク系に（お好みで変えてください） */
    text-align: center; /* 中央寄せにするとより目立ちます */
    padding: 20px;
    border-radius: 15px;
    background-color: #ee3193;
}

/* bold_b2 */
.main_content .mc_block .bold_b2 {
    font-size: max(2.2vw, 28px); /* 通常の1.5倍程度の大きさに設定 */
    line-height: 1.5;
    font-weight: bold;
    color: #ee3193; /* アクセントカラーとしてピンク系に（お好みで変えてください） */
}

/* bold_b3 */
.main_content .mc_block .bold_b3 {
    font-size: max(1.6vw, 20px); /* 通常の1.5倍程度の大きさに設定 */
    line-height: 1.6;
    color: #000; /* テキストカラー */
}

/* 購入ボタン */
.main_content .mc_block .button-10 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 350px;
    margin: 0 auto;
    padding: 1.5em 2em;
    overflow: hidden;
    border: none;
    border-radius: 45px;
    background-color: #d0ab25;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
}

.main_content .mc_block .button-10::before {
    display: block;
    position: absolute;
    top: -50%;
    left: -30%;
    transform: rotate(30deg);
    width: 70px;
    height: 150px;
    content: '';
    background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
    animation: animation-button-10 2s infinite linear;
}

@keyframes animation-button-10 {
    17% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.main_content .mc_block .button-10:hover {
    background-color: #c09b15;
}


/* main_content 内リスト */
/* main_content 内のおしゃれリスト（ハートマーク＋跳ねるアニメ） */
.main_content ul {
	list-style: none;
	padding-left: 0;
	margin: max(2.77778vw, 40px) 0;
}

.main_content ul li {
	position: relative;
	color: #d01d7a;
	font-size: 16pt;
	text-decoration: underline;
	margin-bottom: max(1.38889vw, 20px);
	line-height: 1.4;
	padding-left: max(3.47222vw, 30px);
	transition: transform 0.2s ease; /* テキストも少し動く場合に */
}

/* ハートマークの擬似要素 */
.main_content ul li::before {
	content: '♥';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #ff69b4;
	font-size: 22px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease; /* アニメーション用 */
}

/* ホバーでハートが跳ねるアニメーション */
.main_content ul li:hover::before {
	animation: bounce 0.4s ease;
}

/* バウンスアニメーション定義 */
@keyframes bounce {
	0% {
		transform: translateY(-50%) scale(1);
	}
	25% {
		transform: translateY(-60%) scale(1.2);
	}
	50% {
		transform: translateY(-50%) scale(1);
	}
	75% {
		transform: translateY(-55%) scale(1.1);
	}
	100% {
		transform: translateY(-50%) scale(1);
	}
}

@media screen and (max-width: 1000px) {
	.main_content {
		margin-top: 200px;
	}

	.main_content h1 {
		font-size: 26px;
		line-height: 34px;
		max-width: 500px;
		height: 72px;
		border-radius: 36px;
	}
}

@media screen and (max-width: 600px) {
	.main_content {
		padding: 50px 35px 100px;
		border-radius: 30px;
		margin-top: 180px;
	}

	.main_content h1 {
		font-size: 22px;
		line-height: 30px;
		max-width: 500px;
		height: 66px;
		border-radius: 33px;
		padding: 0 15px;
	}

	.main_content .mc_block {
		margin-top: 0px;
	}

	.main_content .mc_block p {
		font-size: 16px;
		line-height: 26px;
	}

	.main_content .mc_block p + p,
	.main_content .mc_block p + img,
	.main_content .mc_block img + p,
	.main_content .mc_block img + img {
		margin-top: 30px;
	}

	.main_content ul li {
		font-size: 14pt;
		margin-bottom: 16px;
		padding-left: 35px;
	}

	.main_content ul li::before {
		font-size: 18px;
	}
}
