@media screen and (max-width: 389px) {
	.stories-container-background {
		width: 100%;
		background-color: rgba(247, 244, 255, 1);
		display: flex;
		justify-content: center;
		padding: 15px;
	}

	.stories-container {
		width: max-content;
		margin-bottom: 24px;
	}

	.stories-title {
		width: 100%;
		display: flex;
		margin: 16px 0px 16px 16px;
	}

	.stories-p {
		width: 70px;
		height: 14px;
		color: rgba(97, 33, 161, 1);
		font-size: 12px;
		font-weight: 600;
		font-family: 'YuGothic';
		transform: rotate(90deg);
		transform-origin: left center;
		/* 回転の基準を調整 */
		margin: 0;
		letter-spacing: 2.5px;
	}

	.stories-text {
		font-size: 18px;
		font-weight: 700;
		font-family: 'YuGothic';
		letter-spacing: 1.5px;
		margin: 0 0 0 -55px;
	}

	.stories-text span {
		background: linear-gradient(to top, rgba(255, 217, 143, 1) 50%, transparent 30%);
		display: inline;
		/* 背景を文字サイズにフィットさせる */
	}

	.story-card-wrapper {
		width: 340px;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: 35px;
		gap: 43px;
		box-sizing: border-box;
	}

	.story-card {
		width: 100%;
		box-sizing: border-box;
	}

	.profile {
		width: 100%;
		display: flex;
		box-sizing: border-box;
	}

	.img-container {
		width: 175px;
		height: auto;
		position: relative;
		margin-left: px;
	}

	.profile-img {
		width: 100%;
		position: absolute;
		z-index: 100;
		right: -5px;
	}

	.profile-img-background {
		width: 154px;
		height: 73px;
		position: absolute;
		top: 70px;
		left: -5px;
		z-index: 1;
	}

	.profile-text {
		display: flex;
		width: max-content;
		flex-direction: column;
		justify-content: left;
		font-family: 'Hiragino Kaku Gothic ProN';
		padding: 12px 8px 0px 8px;
	}

	.name {
		font-size: 18px;
		font-weight: 600;
		color: rgba(78, 27, 129, 1);
		margin: 0;
	}

	.age {
		font-size: 14px;
		font-weight: 600;
		color: rgba(78, 27, 129, 1);
		margin: 0;
	}

	.pre-job-1 {
		display: flex;
		align-items: center;
		justify-content: center;
		width: max-content;
		font-size: 10px;
		font-weight: 600;
		color: rgba(255, 255, 255, 1);
		background-color: rgba(78, 27, 129, 1);
		text-align: center;
		padding: 4px 10px 4px 10px;
		margin: 8px 0px 0px 0px;
	}

	.pre-job-2 {
		font-size: 14px;
		font-weight: 600;
		text-align: left;
		margin: 5px 0px 0px 0px;
	}

	.diff-of-salary-1 {
		display: flex;
		align-items: center;
		justify-content: center;
		width: max-content;
		font-size: 10px;
		font-weight: 600;
		color: rgba(255, 255, 255, 1);
		background-color: rgba(78, 27, 129, 1);
		text-align: center;
		padding: 6px 8px 6px 8px;
		margin: 10px 0px 0px 0px;
	}

	.diff-of-salary-2 {
		font-size: 14px;
		font-weight: 600;
		text-align: left;
		margin: 5px 0px 0px 0px;
	}

	.story-summary {
		font-size: 16px;
		font-weight: 600;
		text-align: left;
		margin: 10px 0px 0px 0px;
		background: linear-gradient(to right,
				/* 角度を指定。例: 左から右へのグラデーション */
				rgba(100, 21, 185, 0.8) 0%,
				rgba(70, 75, 180, 0.8) 100%),
			linear-gradient(to top,
				/* 半透明レイヤーを重ねる */
				rgba(255, 255, 255, 1) 0%,
				rgba(255, 255, 255, 1) 100%);
		background-clip: text;
		-webkit-background-clip: text;
		/* 背景を文字の範囲にクリップ */
		-webkit-text-fill-color: transparent;
		/* 文字の色を透明化 */
	}

	.story-summary p {
		margin: 0;
	}

	.story-detail {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		background: linear-gradient(to right,
				/* 角度を指定。例: 左から右へのグラデーション */
				rgba(100, 21, 185, 0.1) 0%,
				rgba(80, 85, 205, 0.1) 100%),
			linear-gradient(to top,
				/* 半透明レイヤーを重ねる */
				rgba(255, 255, 255, 0.2) 0%,
				rgba(255, 255, 255, 0.2) 100%);
		/* text-align: left; */
		font-size: 12px;
		font-weight: 600;
		margin: 10px 0 0 0px;
		padding: 2px 10px;
	}

	.story-detail p {
		text-align: left;
	}

	.br-none-mini {
		display: none;
	}

}