@charset "UTF-8";

.p-text-zen {
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.p-text-accent {
	color: #e95504;
}

.p-text-accent--blue {
	color: #1c3b8b;
}

.p-text-accent--shadow {
	text-shadow: 2px 2px 2px #fff;
}

.p-text-with-lines {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 1rem;
	text-align: center;
}

.p-text-with-lines::before,
.p-text-with-lines::after {
	flex: 1;
	height: 1px;
	background: currentColor;
	content: "";
}

.p-button {
	position: relative;
	display: flex;
	column-gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.5em;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	transition: all .4s ease;
}

.p-button--primary {
	border: 2px solid var(--primary-bg-color);
	background: var(--primary-bg-color);
	color: var(--primary-text-color);
}

@media (any-hover: hover) {
	.p-button--primary:hover {
		opacity: 0.75;
	}
}

.p-button--round {
	border-radius: 100vmax;
}

.p-button--gray {
	--primary-bg-color: #b3bec4;
	--primary-text-color: #fff;
}

.p-button--blue {
	--primary-bg-color: #1c3b8b;
	--primary-text-color: #fff;
}

.p-button--brown {
	--primary-bg-color: #7b492c;
	--primary-text-color: #fff;
}

.p-button--orange {
	--primary-bg-color: #ed7d31;
	--primary-text-color: #fff;
}

.p-button--red {
	--primary-bg-color: #d73737;
	--primary-text-color: #fff;
}

.p-button--arrow-b::after {
	font-family: "nextIcon";
	font-size: 1em;
	content: "\e91a";
}

.p-button--arrow-r::after {
	font-family: "nextIcon";
	font-size: 1em;
	content: "\e91c";
}

.p-button--toggle {
	display: grid;
	grid-template-columns: auto 1fr;
	text-shadow: 0 0 4px color-mix(in srgb, var(--primary-bg-color) 64%, #000 36%);
	font-style: italic;
	font-weight: bold;
}

.p-button--toggle::before {
	grid-area: 1 / 2 / 2 / 3;
	border-radius: 100vmax;
	background: var(--primary-text-color);
	width: 1em;
	box-shadow: 0 0 4px color-mix(in srgb, var(--primary-bg-color) 64%, #000 36%);
	aspect-ratio: 1 / 1;
	content: "";
}

.p-button--toggle::after {
	grid-area: 1 / 2 / 2 / 3;
	color: var(--primary-bg-color);
	text-shadow: none;
	font-family: 'nextIcon';
	font-style: normal;
	content: '\e91a';
	transition: all .4s ease;
}

.p-button--toggle[data-toggle-state="active"]::after {
	transform: rotate(-180deg);
}

@keyframes toggle-apper {
	0% {
		grid-template-rows: 0fr;
		opacity: 1;
	}

	25% {
		grid-template-rows: 1fr;
		opacity: 1;
	}

	100% {
		grid-template-rows: 1fr;
		opacity: 1;
	}
}

@keyframes toggle-disapper {
	0% {
		grid-template-rows: 1fr;
		opacity: 1;
	}

	25% {
		grid-template-rows: 1fr;
		opacity: 0;
	}

	100% {
		grid-template-rows: 0fr;
		visibility: hidden;
		opacity: 0;
	}
}

.p-toggle-content {
	display: grid;
	grid-template-rows: 0fr;
	pointer-events: none;
	opacity: 0;
}

.p-toggle-content[data-toggle-state="active"] {
	pointer-events: auto;
	animation: toggle-apper 0.4s linear forwards;
}

.p-toggle-content[data-toggle-state="inactive"] {
	animation: toggle-disapper 0.4s linear forwards;
}

.p-toggle-content__inner {
	overflow: hidden;
}

.p-nav {
	position: sticky;
	z-index: 1;
	inset-inline: 0;
	background: #b7b6b6c7;
}

.p-nav-list {
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin-inline: auto;
}

.p-nav-list__item {
	flex: 1;
	padding-block: 1rem;
	text-align: center;
}

.p-nav-list__link {
	font-weight: bold;
	text-transform: uppercase;
	transition: all .4s ease;
}

@media (any-hover: hover) {
	.p-nav-list__link:hover {
		color: #939393;
	}
}

@media screen and (min-width: 768px) {
	.p-nav-list__link {
		font-size: 1.125rem;
	}
}

.p-main {
	max-width: 1200px;
	margin-inline: auto;
}

.p-mv-slide {
	border-bottom-style: solid;
	border-bottom-color: #e95504;
}

@media screen and (max-width: 767px) {
	.p-mv-slide {
		border-bottom-width: 24px;
	}
}

@media screen and (min-width: 768px) {
	.p-mv-slide {
		border-bottom-width: 35px;
	}
}

.p-sec__head {
	padding-block: 2rem;
	background: #e95504;
}

.p-sec__body {
	padding: 2rem calc(50% - 480px);
}

.p-sec__body--gray {
	background: #d9d7d8;
}

@media screen and (max-width: 767px) {
	.p-sec {
		padding-block: 2rem;
	}
}

@media screen and (min-width: 768px) {
	.p-sec {
		padding-block: 4rem;
	}
}

.p-feature-slide__arrow {
	width: 3em !important;
	height: 3em !important;
	border-radius: 50%;
	background: rgba(120, 84, 68, 0.5) !important;
	opacity: 1 !important;
}

.p-feature-slide__arrow path {
	filter: none;
	fill: none;
	fill-opacity: 1;
	fill-rule: evenodd;
	stroke: #fff;
	stroke-dasharray: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-opacity: 1;
	stroke-width: 3;
	marker-start: none;
	marker-end: none;
}

@media screen and (max-width: 767px) {
	.p-feature-slide {
		padding-inline: 1.5rem;
	}
}

@media screen and (min-width: 768px) {
	.p-feature-slide {
		padding-inline: 3rem;
	}

	.p-feature-slide__track {
		padding-block: 6rem;
	}
	
	.p-feature-slide__slide.is-active {
		z-index: 2;
	}

	.p-feature-slide__slide.is-prev,
	.p-feature-slide__slide.is-next {
		z-index: 1;
	}

	.p-feature-slide__img {
		transition: all 1s ease;
		transform-origin: center;
	}

	.p-feature-slide__slide.is-active .p-feature-slide__img {
		transform: scale(2.75);
	}

	.p-feature-slide__slide.is-prev .p-feature-slide__img,
	.p-feature-slide__slide.is-next .p-feature-slide__img {
		transform: scale(2);
	}
}

.p-product-headline {
	display: grid;
	place-items: center;
	margin-inline: auto;
	background: var(--product-bg-color);
	color: var(--product-text-color);
	text-decoration: underline;
	text-transform: uppercase;
	text-align: center;
	aspect-ratio: 16 / 9;
}

.p-product-headline--interior {
	--product-bg-color: #2d74b4;
	--product-text-color: #fff;
}

.p-product-headline--fashion {
	--product-bg-color: #d0dfe6;
	--product-text-color: #221715;
}

.p-product-headline--outdoor {
	--product-bg-color: #003223;
	--product-text-color: #fff;
}

.p-product-headline--kitchen {
	--product-bg-color: #ecbbb6;
	--product-text-color: #221715;
}

.p-product-headline--food {
	--product-bg-color: #df6742;
	--product-text-color: #221715;
}

.p-product-headline--business {
	--product-bg-color: #ec9200;
	--product-text-color: #221715;
}

.p-product-headline--beauty {
	--product-bg-color: #ba9b7c;
	--product-text-color: #221715;
}

@media screen and (max-width: 767px) {
	.p-product-headline {
		width: 55%;
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 768px) {
	.p-product-headline {
		width: 300px;
		font-size: 1.75rem;
	}
}
