@charset "utf-8";
/* 使用例 設定 */

.usage_example {
	display: flex;
	text-align: center;
	align-items: flex-start;
}

.usage_example > div:nth-child(1) {
	flex: 1;
	min-width: 0;
}

.usage_example > div:nth-child(2) {
	width: 600px;
	flex: 0 0 600px;
}

.usage_example > div:nth-child(2) img {
	width: 100%;
	height: auto;
}

.three {
	display: flex;
	justify-content: space-around;
}

.three p {
	margin: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #fdeff5;
	font-size: 1rem;
	font-weight: bold;
	color: #c0153f;
}

.three p span {
  line-height: 1.4;
}

@media (max-width: 1100px) {
	.three p {
		max-width: 130px;
		max-height: 130px;
		width: 13vw;
		height: 13vw;
		min-width: 100px;
		min-height: 100px;
	}
}

@media (min-width: 769px) and (max-width: 1100px) {
	.usage_example > div:nth-child(2) {
		width: 52vw;
		flex: 0 0 52vw;
	}
}

@media (max-width: 768px) {
	.usage_example {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 40px;
	}
	.usage_example > div:nth-child(1) {
		margin: auto;
		width: 100%;
		max-width: 600px;
		flex: auto;
	}
	.usage_example > div:nth-child(2) {
		margin: auto;
		width: 100%;
		max-width: 600px;
		flex: auto;
	}
.three p {
		font-size: 0.875rem;
	}
}