@charset "UTF-8";

@media screen and (min-width: 768px) {
	.product_head {
		display: grid !important;
		grid-template-columns: 39% 60%;
		grid-template-rows: auto 1fr;
		justify-content: space-between;
	}

	.product_head_img {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		width: 100% !important;
	}

	.product_head_txt {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		width: 100% !important;
	}

	.product_head .product_cta_group {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		width: 100% !important;
		margin-top: 30px;
		align-self: start;
	}
}

@media screen and (max-width: 767px) {
	.product_head {
		display: flex !important;
		flex-direction: column !important;
		padding: 0 15px;
	}

	.product_head_img {
		width: 100% !important;
	}

	.product_head_img img {
		margin: 0 auto;
	}

	.product_head_txt,
	.product_head .product_cta_group {
		width: 100% !important;
		margin-top: 30px;
	}

	.product_head br.sp {
		display: none;
	}
}

.product_head .product_cta_group .product_stores {
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 10px;
}

.product_head .product_cta_group .online_store_list {
	margin: 0;
}

.product_head .product_cta_group .onlinestores {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.product_head .product_cta_group .onlinestores li {
	flex: 0 0 calc(50% - 5px);
	max-width: calc(50% - 5px);
	margin: 0;
}

.product_head .product_cta_group .onlinestores li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 15px 10px;
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.3s ease, transform 0.2s ease;
}

.product_head .product_cta_group .onlinestores li a:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

.product_head .product_cta_group .onlinestores li img {
	max-width: 80%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.product_head .product_cta_group .onlinestores li a span {
	display: block;
	font-size: 11px;
	color: #666;
	margin-top: 5px;
	font-weight: bold;
}