@media screen and (max-width: 389px) {

	.news-wrapper {
		width: 100%;
		height: auto;
		/* 高さはコンテンツに合わせる */
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		padding-bottom: 20px;
	}

	.news-p {
		color: rgba(97, 33, 161, 1);
		width: 90%;
		font-size: 14px;
		font-weight: 700;
		position: absolute;
		left: 10px;
		/* 左余白を狭める */
	}

	.gradation-pink {
		position: absolute;
		top: -30px;
		/* 位置調整 */
		left: 0;
		width: 100%;
	}

	.news-container-wrapper {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 30px;
		/* gapを縮める */
		position: absolute;
		top: 50px;
		/* top位置を調整 */
	}

	.news-container {
		width: 90%;
		height: auto;
		padding-left: 65px;
		/* 画像分の余白を小さく */
		position: relative;
		border: rgba(97, 33, 161, 1) 1px solid;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: left;
		box-sizing: border-box;
	}

	.news-container-p {
		display: flex;
		flex-direction: column;
		text-align: left;
		width: 100%;
	}

	.pc-woman {
		width: 60px;
		height: auto;
		position: absolute;
		left: 0;
	}

	.news-p1 {
		font-size: 12px;
		font-weight: 500;
		margin: 1px;
	}

	.news-p2 {
		font-size: 12px;
		font-weight: 500;
		color: rgba(153, 153, 153, 1);
		margin: 1px;
	}

	.to_right {
		width: 16px;
		height: auto;
		position: absolute;
		right: 5px;
		/* 右余白を詰める */
	}

}