@charset "UTF-8";

#product-show-view {
	padding-bottom: 0;
}

[design=custom] .p-cta {
	background-color: #FEFCF4;
	width: 100vw;
	z-index: 1;
	position: relative;

	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 40px;
}

@media screen and (max-width: 767.98px) {
	[design=custom]	.p-cta {
		grid-template-columns: 1fr;
	}
}

[design=custom] .p-cta__image {
	min-height: 350px;
}

[design=custom] .p-cta__image img {
	height: 100%;
  object-fit: cover;
	object-position: right;
}

@media screen and (max-width: 767.98px) {
	[design=custom] .p-cta__image {
		min-height: auto;
	}

	[design=custom] .p-cta__image img {
		object-fit: cover;
		object-position: bottom;
	}
}

[design=custom] .p-cta__text-area {
	width: calc(100% - 20px);
	max-width: 600px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 20px;
	justify-content: center;
}

@media screen and (max-width: 767.98px) {
	[design=custom] .p-cta__text-area {
		padding: 46px 20px;
		width: 100%;
	}
}

h3.p-cta__title {
	font-size: 30px;
	font-family: "Shippori Mincho", serif;
	line-height: 1.4;
	font-weight: 400;
	color: #897353;
}

p.p-cta__text {
	font-size: 20px;
	font-family: "Shippori Mincho", serif;
	line-height: 2;
	font-weight: 400;
	margin-top: 20px;
	text-align: center;
}

a.p-cta__link {
	margin-top: 20px;
	max-width: 270px;
	width: 100%;
	display: flex;
	padding: 12px 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #FEFCF4;
	border-radius: 70px;
	border: 1px solid #897353;
	background-color: #897353;
	font-size: 16px;
	font-weight: 400;
	transition: background-color ease 0.3s, color ease 0.3s, border-color ease 0.3s;
}

@media screen and (min-width: 768px) {
	a:hover.p-cta__link:hover {
		background-color: #54443F;
		color: #ffffff;
		border-color: #54443F;
		opacity: 1;
	}
}

@media screen and (max-width: 767.98px) {
	h3.p-cta__title {
		text-align: center;
		font-size: 24px;
	}

	p.p-cta__text {
		font-size: 16px;
	}

	a.p-cta__link {
		margin-left: auto;
		margin-right: auto;
	}
}