@charset "UTF-8";
/*
 Theme Name: RIRI Child
 Template: riri-theme
 Version: 1.1
*/

.store-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.store-features-list__item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: calc(50% - 8px);
	min-height: 64px;
	padding: 12px 16px;
	border: 1px solid #d8e8e0;
	border-radius: 12px;
	background-color: #fff;
	box-sizing: border-box;
}

.store-features-list__icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	object-fit: contain;
	background-color: #f5f8f6;
	border-radius: 8px;
}

.store-features-list__label {
	display: block;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #333;
}

@media screen and (max-width: 767px) {
	.store-features-list {
		gap: 12px;
		margin-top: 16px;
	}

	.store-features-list__item {
		width: 100%;
		min-height: 56px;
		padding: 10px 12px;
		gap: 10px;
	}

	.store-features-list__icon {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.store-features-list__label {
		font-size: 1.3rem;
	}
}
