@charset "utf-8";

/*
声
-------------------------------------------*/

.nyano-feedback-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
	margin: auto;
	align-items: center;
}

.nyano-feedback-card {
	display: flex;
	width: 90%;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	align-items: flex-start;
	flex-wrap: wrap;
}

.nyano-feedback-card1 {
	display: flex;
	width: 90%;
	background-color: transparent;
	border-radius: 0px;
	padding-bottom: 20px;
}

.nyano-feedback-card2 {
	display: flex;
	width: 90%;
	background-color: transparent;
	border-radius: 0px;
	padding: 0px;
}

.nyano-feedback-card:nth-child(odd) {
	background-color: #fff6eb;
}
.nyano-feedback-card:nth-child(even) {
	background-color: #f2fcf2;
}


.nyano-profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 110px;
	margin-right: 15px;
}

.nyano-profile-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
}

.nyano-profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nyano-profile-footer {
	margin-top: 10px;
	font-size: 12px;
	color: #666;
	text-align: center;
}

.nyano-feedback-content {
	flex: 1;
}

.nyano-feedback-content p {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	text-align: left;
}

.nyano-feedback-content p span {
	font-weight: bold;
	/* color: #e56b3c; */
	display: inline-block;
}


@media (max-width: 480px) {
.nyano-feedback-card {
	flex-direction: column;
	align-items: center;
	text-align: left;
}

.nyano-feedback-card1 {
	flex-direction: column;
	align-items: center;
	text-align: left;
}

.nyano-feedback-card2 {
	flex-direction: column;
	align-items: center;
	text-align: left;
}

.nyano-profile {
	margin-right: 0;
	margin-bottom: 10px;
	width: auto;
}

.nyano-feedback-content {
	text-align: left;
}	
}