@media screen and (max-width: 389px) {

	.faq {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 20px;
		text-align: center;
		align-items: center;
		margin-top: 50px;
	}

	.faq-title {
		width: 327px;
		display: flex;
	}

	.faq-title-p {
		width: 35px;
		height: 14px;
		color: rgba(193, 175, 210, 1);
		font-size: 14px;
		font-weight: 600;
		font-family: 'YuGothic';
		transform: rotate(90deg);
		transform-origin: left center;
		/* 回転の基準を調整 */
		margin: 0 -25px 0 0;
		letter-spacing: 2.5px;
		text-align: left;
	}

	.faq-title-text {
		font-size: 24px;
		font-weight: 600;
		font-family: Hiragino Kaku Gothic ProN;
		margin: 0;
		letter-spacing: 1.7px;
	}

	.faq-container {
		width: 327px;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.faq-contents {
		width: 271px;
		height: auto;
		display: flex;
		flex-direction: column;
		border: 1px solid rgba(97, 33, 161, 1);
		border-radius: 4px;
		padding: 8px 26px 8px 26px;
		margin-bottom: 18px;
		cursor: pointer;
	}

	.faq-q {
		width: 280px;
		height: auto;
		display: flex;
		align-items: flex-start;
		padding-bottom: 5px;
	}

	.faq-q-large {
		font-size: 18px;
		font-weight: 600;
		font-family: 'Hiragino Kaku Gothic ProN';
		color: rgba(97, 33, 161, 1);
		text-align: left;
		margin: 0;
	}

	.faq-q-small {
		font-size: 14px;
		font-weight: 600;
		font-family: 'Hiragino Kaku Gothic ProN';
		text-align: left;
		margin: 5px 0px 0px 10px;
	}

	.faq-a {
		width: 280px;
		height: auto;
		display: flex;
		padding-top: 20px;
		padding-bottom: 15px;
	}

	.faq-a-large {
		width: 32px;
		font-size: 20px;
		font-weight: 600;
		font-family: 'Hiragino Kaku Gothic ProN';
		text-align: left;
		margin: 0;
	}

	.faq-a-small {
		font-size: 14px;
		font-weight: 600;
		font-family: 'Hiragino Kaku Gothic ProN';
		text-align: left;
		margin: 2px 0px 0px 20px;
	}

	.icon-down {
		width: 24px;
		height: 24px;
		align-self: center;
		cursor: pointer;
	}

	.hidden {
		display: none;
	}
}