body {
	font-family: "Noto Sans JP", sans-serif;
}

:root {
	--font-main: "Shippori Mincho B1", serif;
	--font-serif: "Noto Serif JP", serif;
	--font-sans: "Noto Sans JP", sans-serif;
	--font-accent: "EB Garamond", serif;
	--font-price: "Lato", sans-serif;
	--font-point: "Dancing Script", cursive;
	--color-primary: #d2684a;
	--color-secondary-pink: #f2b19f;
	--color-text-dark: #4a4341;
	--color-text-heading: #535353;
	--color-text-main: #222423;
	--color-white: #ffffff;
	--color-bg-light: #fff1ec;
	--color-bg-blue: #f2f9ff;
	--color-bg-gray: #fcf7f8;
	--color-bg-pink-pale: #fff6f6;
	--color-border-gold: #b48400;
	--color-border-dashed: #b87671;
	--base-color: var(--color-text-main);
	--white: var(--color-white);
	--black: #000;
	--bg-color: var(--color-bg-gray);
}

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

.article>*+* {
	margin-top: 1.5em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

/*img:not([alt]) {
	filter: blur(10px);
}*/

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

.c-point-card {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
}

.c-point-card__badge {
	align-items: center;
	background-color: #f2b19f;
	background-color: var(--color-secondary-pink);
	border: 0.1875rem solid #ffffff;
	border: 0.1875rem solid var(--color-white);
	box-shadow: 0 0 0 0.0625rem #f2b19f;
	box-shadow: 0 0 0 0.0625rem var(--color-secondary-pink);
	color: #ffffff;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	height: 4.75rem;
	justify-content: center;
	position: relative;
	width: 4.75rem;
}

.c-point-card__badge-label {
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 1rem;
	line-height: 1;
}

.c-point-card__badge-num {
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 2.5rem;
	line-height: 1;
	margin-top: 0.25rem;
}

.c-point-card__content {
	color: #4a4341;
	color: var(--color-text-dark);
}

.c-point-card__title {
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.6875rem;
	font-weight: 600;
	margin-bottom: 0.6875rem;
}

.c-point-card__text {
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.6;
}

.c-comment-box {
	border-top: 0.0625rem dashed #b87671;
	border-top: 0.0625rem dashed var(--color-border-dashed);
	margin-top: 1.25rem;
	padding-top: 1rem;
	position: relative;
}

.c-comment-box__label {
	background-color: #f59d9d;
	border-radius: 1.625rem;
	color: #ffffff;
	color: var(--color-white);
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	left: 0;
	padding: 0.125rem 0.5rem;
	position: absolute;
	top: -0.875rem;
}

.c-comment-box__content {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.c-comment-box__icon {
	border-radius: 50%;
	flex-shrink: 0;
	height: 5.25rem;
	overflow: hidden;
	width: 5.25rem;
}

.c-comment-box__icon img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-comment-box__text {
	color: #5e4a0e;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	line-height: 1.6;
}

.c-comment-box__text-accent {
	color: #f59d9d;
	font-weight: 600;
}

.c-feature-item {
	align-items: flex-start;
	display: flex;
	gap: 2.8358208955%;
	width: 100%;
}

.c-feature-item__tag {
	align-items: center;
	background-color: #ffffff;
	background-color: var(--color-white);
	border: 0.0625rem solid #db7c75;
	border-radius: 0.125rem;
	display: flex;
	gap: 0.8125rem;
	overflow: hidden;
	padding-right: 1.3125rem;
}

.c-feature-item__tag-num {
	background-color: #db7c75;
	color: #ffffff;
	color: var(--color-white);
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 2rem;
	padding: 0.625rem 0.75rem;
}

.c-feature-item__tag-label {
	color: #db7c75;
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 2.125rem;
	font-weight: 500;
}

.c-feature-item__content {
	flex: 1;
}

.c-feature-item__info {
	color: #4a4341;
	color: var(--color-text-dark);
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-top: 1.5rem;
}

.c-feature-item__image {
	aspect-ratio: 277/196;
	flex-shrink: 0;
	width: 41.3432835821%;
}

.c-feature-item__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-product-card {
	background-color: #ffffff;
	background-color: var(--color-white);
	display: flex;
	position: relative;
}

.c-product-card__label-wrap {
	align-items: center;
	color: #ffffff;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	left: 0;
	padding: 2.5rem 1.25rem;
	position: absolute;
	top: -4.0625rem;
	width: 13.9375rem;
	z-index: 2;
}

.c-product-card__label-wrap--room {
	background-color: #da847e;
	white-space: nowrap;
}

.c-product-card__label-wrap--outdoor {
	background-color: #9c9796;
}

.c-product-card__label-en {
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 2rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.5rem;
}

.c-product-card__label-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	padding-top: 0.625rem;
	position: relative;
}

.c-product-card__label-jp::before {
	background-color: rgba(255, 255, 255, 0.5);
	content: "";
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 11.4375rem;
}

.c-product-card__image {
	align-items: center;
	background-color: #ffffff;
	background-color: var(--color-white);
	display: flex;
	flex: 1;
	height: 100%;
	justify-content: center;
	overflow: hidden;
	padding: 3.75rem 0;
	position: relative;
}

.c-product-card__image img {
	-o-object-fit: contain;
	aspect-ratio: 890/330;
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

/*.c-product-card__image.is-coming::after {
	background-image: url("../images/common/logo_coming.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50% auto;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
}*/

.c-product-card__content {
	align-items: stretch;
	bottom: 0;
	display: flex;
	gap: 0.625rem;
	position: absolute;
	right: 0rem;
	transform: translateY(50%);
	z-index: 10;
}

.c-product-card__icon {
	flex-shrink: 0;
	height: 8.75rem;
	width: 8.75rem;
}

.c-product-card__icon img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-product-card__comment {
	flex-shrink: 0;
	height: 8.75rem;
}

.c-product-card__comment img {
	display: block;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
	width: 100%;
}

.c-product-card__badge {
	align-items: center;
	background-color: #ffffff;
	background-color: var(--color-white);
	border-radius: 50%;
	bottom: 1.25rem;
	box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
	display: flex;
	height: 8.4375rem;
	justify-content: center;
	left: -2.5rem;
	position: absolute;
	width: 8.4375rem;
	z-index: 3;
}

.c-product-card__badge-text {
	color: #ccc;
}

.p-mv {
	background-color: #ffffff;
	background-color: var(--color-white);
	height: 49.8125rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-mv__bg {
	background-image: url("../images/common/bg-mv.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.p-mv__img {
	padding-left: 2.5rem;
	position: relative;
	z-index: 2;
}

.p-mv__content {
	left: 24.5625rem;
	position: absolute;
	top: 3.375rem;
	z-index: 2;
}

.p-mv__title-en {
	color: #d2684a;
	color: var(--color-primary);
	font-family: "Dancing Script", cursive;
	font-family: var(--font-point);
	font-size: 6.25rem;
	left: 25.0625rem;
	line-height: normal;
	position: absolute;
	text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	top: 12.375rem;
}

.p-mv__supervisor {
	color: #4a4341;
	color: var(--color-text-dark);
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	font-size: 1.75rem;
	left: 28.9375rem;
	position: absolute;
	top: 9.25rem;
}

.p-mv__copy-group {
	left: 25.0625rem;
	position: absolute;
	top: 21.3125rem;
}

.p-mv__copy {
	color: #4a4341;
	color: var(--color-text-dark);
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	margin-bottom: 0.5rem;
}

.p-mv__copy-main {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}

.p-mv__copy-main-small {
	font-size: 1.5rem;
}

.p-mv__copy-sub {
	font-size: 1.75rem;
	letter-spacing: 0.1em;
}

.p-mv__copy-sub-small {
	font-size: 1.5rem;
}

.p-mv__copy-sub-accent {
	color: #d2684a;
	color: var(--color-primary);
	font-size: 2.875rem;
	letter-spacing: 0.1em;
}

.p-mv__profile-card {
	background-color: #fff1ec;
	background-color: var(--color-bg-light);
	position: absolute;
	top: 30.875rem;
	transform-style: preserve-3d;
	width: 21rem;
	z-index: 3;
}

.p-mv__profile-card::after {
	background-image: url("../images/common/icon-shirayuki.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 50%;
	content: "";
	height: 6.4375rem;
	left: 0.3125rem;
	position: absolute;
	top: -1.875rem;
	width: 6.4375rem;
	z-index: 2;
}

.p-mv__profile-card::before {
	border: 0.0625rem solid #b48400;
	border: 0.0625rem solid var(--color-border-gold);
	content: "";
	height: 90%;
	left: 1.0625rem;
	position: absolute;
	top: 0.625rem;
	transform: translateZ(-1px);
	width: 20.6875rem;
	z-index: -1;
}

.p-mv__profile-inner {
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
	padding: 0.875rem 0.75rem;
}

.p-mv__profile-head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 3.75rem;
	padding-left: 6.25rem;
	position: relative;
}

.p-mv__profile-label {
	color: #acabab;
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 1.05rem;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.p-mv__profile-name {
	color: #4a4341;
	color: var(--color-text-dark);
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	font-size: 1.4375rem;
	line-height: 1.2;
}

.p-mv__profile-name-small {
	font-size: 1.125rem;
	margin-left: 0.125rem;
}

.p-mv__profile-text {
	margin-top: 0.625rem;
}

.p-mv__profile-text-paragraph {
	color: #000;
	font-family: "Noto Serif JP", serif;
	font-family: var(--font-serif);
	font-size: 0.75625rem;
	line-height: 1.6;
}

.p-sub-mv {
	align-items: center;
	background: url("../images/common/bg1.jpg") no-repeat center center/cover;
	display: flex;
	height: 50.1875rem;
	justify-content: center;
	overflow: hidden;
	padding-bottom: 1.25rem;
	padding-top: 3.125rem;
	position: relative;
	width: 100%;
}

.p-sub-mv__inner.inner {
	max-width: 75rem;
	position: relative;
	width: 100%;
}

.p-sub-mv__img {
	margin: 0 auto;
	max-width: 68rem;
	text-align: center;
	width: 100%;
}

.p-sub-mv__img img {
	height: auto;
	width: 100%;
}

.p-structure {
	background-color: #ffffff;
	background-color: var(--color-white);
	padding: 6.25rem 0;
}

.p-structure__head {
	text-align: center;
}

.p-structure__title {
	color: #535353;
	color: var(--color-text-heading);
	font-family: "Noto Serif JP", serif;
	font-family: var(--font-serif);
	font-size: 3.9375rem;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.p-structure__subtitle {
	background-color: #ffffff;
	background-color: var(--color-white);
	border: 0.0625rem solid #747474;
	color: #535353;
	color: var(--color-text-heading);
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.875rem;
	padding: 0.1875rem 1.125rem;
}

.p-structure__main {
	margin-top: 1.875rem;
	position: relative;
	width: 100%;
}

.p-structure__image-wrap {
	min-height: 58.9375rem;
	position: relative;
}

.p-structure__image-wrap img {
	height: auto;
	width: 100%;
}

.p-structure__points {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
	margin-top: 3.75rem;
	width: 100%;
}

.p-lineup {
	background-color: #fcf7f8;
	overflow-x: clip;
	padding: 6.25rem 0;
	position: relative;
	z-index: 1;
}

.p-lineup::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='63' viewBox='0 0 1440 63' fill='none'%3E%3Cpath d='M580.798 5.22195C362.874 -16.4825 102.798 34.6971 0 63H1440V5.22195C1373.52 5.22195 1110.11 29.338 992.156 38.3815C874.196 47.425 853.204 32.3525 580.798 5.22195Z' fill='%23FCF7F8'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 101%;
	bottom: 99%;
	content: "";
	height: 3.9375rem;
	left: 0;
	margin-bottom: -1px;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.p-lineup__inner.inner {
	max-width: 48.125rem;
}

.p-lineup__head {
	margin-bottom: 5rem;
	text-align: center;
}

.p-lineup__head-en {
	align-items: center;
	color: #747474;
	display: flex;
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 4rem;
	gap: 1.5rem;
	justify-content: center;
	letter-spacing: 0.1em;
}

.p-lineup__head-en::before,
.p-lineup__head-en::after {
	background-color: #747474;
	content: "";
	height: 0.0625rem;
	width: 2.6875rem;
}

.p-lineup__head-jp {
	color: #747474;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-top: 0.625rem;
}

.p-lineup__items {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	margin: 0 auto;
	max-width: 67.1875rem;
}

.p-lineup__main {
	align-items: flex-end;
	display: flex;
	margin: 7.5rem auto 0;
	max-width: 67.1875rem;
}

.p-lineup__image {
	aspect-ratio: 384/527;
	flex: 1;
	overflow: hidden;
}

.p-lineup__image img {
	-o-object-fit: cover;
	-o-object-position: left center;
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	width: 100%;
}

.p-lineup__info {
	background-color: #ffffff;
	background-color: var(--color-white);
	border-radius: 1.25rem;
	box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
	flex: 1;
	margin-left: -0.625rem;
	padding: 3.125rem 1.875rem 1.25rem;
	position: relative;
}

.p-lineup__info::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='332' height='362' viewBox='0 0 332 362' fill='none'%3E%3Crect width='332' height='362' rx='13' fill='url(%23pattern0_133_85)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_133_85' patternUnits='userSpaceOnUse' patternTransform='matrix(6.6 0 0 6.2 2.3041e-08 0)' preserveAspectRatio='none' viewBox='0 0 132 124' width='1' height='1'%3E%3Cuse href='%23pattern0_133_85_inner' transform='translate(-132 -124)'/%3E%3Cuse href='%23pattern0_133_85_inner' transform='translate(0 -124)'/%3E%3Cuse href='%23pattern0_133_85_inner' transform='translate(-132 0)'/%3E%3Cg id='pattern0_133_85_inner'%3E%3Cline x1='137.82' y1='6.19521' x2='5.81974' y2='130.195' stroke='%23D2684A' stroke-width='17'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	bottom: -0.3125rem;
	content: "";
	left: 0.625rem;
	position: absolute;
	right: -4.0625rem;
	top: 1.5625rem;
	z-index: -1;
}

.p-lineup__point-badge {
	color: #D2684A;
	font-family: "Dancing Script", cursive;
	font-size: 2.625rem;
	left: 2.5rem;
	opacity: 0.8;
	pointer-events: none;
	position: absolute;
	top: -2.5rem;
	transform: rotate(-12deg);
}

.p-lineup__list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.p-lineup__item {
	align-items: flex-start;
	color: #5e4a0e;
	display: flex;
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	gap: 1rem;
	letter-spacing: 0.05em;
	padding-bottom: 1.875rem;
	position: relative;
}

.p-lineup__item:not(:last-child)::after {
	border-bottom: 0.125rem dotted #acabab;
	bottom: 0;
	content: "";
	height: 0;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-lineup__icon {
	flex-shrink: 0;
	height: 1.5rem;
	margin-top: 0.375rem;
	width: 1.5rem;
}

.p-lineup__icon img {
	display: block;
	height: 100%;
	width: 100%;
}

.p-lineup__item-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
}

.p-details {
	background-color: #f1f1f1;
	overflow-x: clip;
	padding: 6.25rem 0;
	position: relative;
	z-index: 2;
}

.p-details::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='63' viewBox='0 0 1440 63' fill='none'%3E%3Cpath d='M580.798 5.22195C362.874 -16.4825 102.798 34.6971 0 63H1440V5.22195C1373.52 5.22195 1110.11 29.338 992.156 38.3815C874.196 47.425 853.204 32.3525 580.798 5.22195Z' fill='%23F1F1F1'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 101%;
	bottom: 99%;
	content: "";
	height: 3.9375rem;
	left: 0;
	margin-bottom: -1px;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.p-details__inner.inner {
	max-width: 48.125rem;
}

.p-details__main {
	align-items: flex-end;
	display: flex;
	margin: 7.5rem auto 0;
	max-width: 67.1875rem;
}

.p-details__image {
	aspect-ratio: 384/527;
	background-color: #eee;
	flex: 1;
	overflow: hidden;
}

.p-details__image img {
	-o-object-fit: cover;
	-o-object-position: left center;
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	width: 100%;
}

.p-details__info {
	background-color: #ffffff;
	background-color: var(--color-white);
	border-radius: 1.25rem;
	box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
	flex: 1;
	margin-left: -0.625rem;
	padding: 3.125rem 1.875rem 1.25rem;
	position: relative;
}

.p-details__info::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='332' height='362' viewBox='0 0 332 362' fill='none'%3E%3Crect width='332' height='362' rx='13' fill='url(%23pattern0_133_85)'/%3E%3Cdefs%3E%3Cpattern id='pattern0_133_85' patternUnits='userSpaceOnUse' patternTransform='matrix(6.6 0 0 6.2 2.3041e-08 0)' preserveAspectRatio='none' viewBox='0 0 132 124' width='1' height='1'%3E%3Cuse href='%23pattern0_133_85_inner' transform='translate(-132 -124)'/%3E%3Cuse href='%23pattern0_133_85_inner' transform='translate(0 -124)'/%3E%3Cuse href='%23pattern0_133_85_inner' transform='translate(-132 0)'/%3E%3Cg id='pattern0_133_85_inner'%3E%3Cline x1='137.82' y1='6.19521' x2='5.81974' y2='130.195' stroke='%234A4341' stroke-width='17'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	bottom: -0.3125rem;
	content: "";
	left: 0.625rem;
	position: absolute;
	right: -4.0625rem;
	top: 1.5625rem;
	z-index: -1;
}

.p-details__point-badge {
	color: #acabab;
	font-family: "Dancing Script", cursive;
	font-size: 2.625rem;
	left: 2.5rem;
	opacity: 0.8;
	pointer-events: none;
	position: absolute;
	top: -2.5rem;
	transform: rotate(-12deg);
}

.p-details__list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.p-details__item {
	align-items: flex-start;
	color: #5e4a0e;
	display: flex;
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	gap: 1rem;
	letter-spacing: 0.05em;
	padding-bottom: 1.875rem;
	position: relative;
}

.p-details__item:not(:last-child)::after {
	border-bottom: 0.125rem dotted #acabab;
	bottom: 0;
	content: "";
	height: 0;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-details__icon {
	flex-shrink: 0;
	height: 1.5rem;
	margin-top: 0.375rem;
	width: 1.5rem;
}

.p-details__icon img {
	display: block;
	height: 100%;
	width: 100%;
}

.p-details__item-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
}

.p-pressure {
	background-color: #ffffff;
	background-color: var(--color-white);
	overflow: hidden;
	padding: 6.25rem 0;
}

.p-pressure__head {
	margin-bottom: 3.75rem;
	text-align: center;
}

.p-pressure__head-label {
	border: 0.0625rem solid #747474;
	color: #535353;
	color: var(--color-text-heading);
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
	padding: 0.1875rem 1.125rem;
}

.p-pressure__head-title {
	color: #535353;
	color: var(--color-text-heading);
	font-family: "Noto Serif JP", serif;
	font-family: var(--font-serif);
	font-size: 3.9375rem;
	font-weight: 600;
	line-height: 1.2;
}

.p-pressure__image {
	margin: 2.5rem auto 0;
	max-width: 43.875rem;
	width: 100%;
}

.p-pressure__image img {
	height: auto;
	width: 100%;
}

.p-price {
	background-color: #fff6f6;
	padding: 0 0 1.25rem;
}

.p-price__head {
	background-color: #db7c75;
	margin-bottom: 3.5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 2.5rem calc(50vw - 50%);
	text-align: center;
}

.p-price__head-en {
	color: #ffffff;
	color: var(--color-white);
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 4.5rem;
	letter-spacing: 0.1em;
	line-height: 1;
}

.p-price__head-jp {
	color: #ffffff;
	color: var(--color-white);
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.375rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 0.625rem;
}

.p-price__items {
	display: flex;
	gap: 2.5rem;
	justify-content: center;
	margin-bottom: 5rem;
}

.p-price__card {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 18.75rem;
}

.p-price__card-head {
	border-radius: 0.625rem;
	color: #ffffff;
	color: var(--color-white);
	font-family: "Lato", sans-serif;
	font-family: var(--font-price);
	padding: 1rem 1.25rem;
	text-align: center;
}

.p-price__card-head--room {
	background-color: #DB7C75;
}

.p-price__card-head--outdoor {
	background-color: #9C9796;
}

.p-price__card-label {
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.p-price__card-value {
	align-items: flex-end;
	display: flex;
	gap: 0.125rem;
	justify-content: center;
}

.p-price__card-value-tax {
	font-size: 1.25rem;
	padding-bottom: 0.25rem;
}

.p-price__card-value-num {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1;
}

.p-price__card-value-unit {
	font-size: 1.25rem;
	padding-bottom: 0.25rem;
}

.p-price__card-image {
	align-items: center;
	aspect-ratio: 1/1;
	background-color: #fff;
	border-radius: 0.625rem;
	display: flex;
	flex-grow: 1;
	justify-content: center;
	padding: 1.25rem;
	position: relative;
	width: 100%;
}

.p-price__card-image img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

/*.p-price__card-image.is-coming::after {
	background-color: rgba(255, 255, 255, 0.6);
	background-image: url("../images/common/logo_coming.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80% auto;
	border-radius: 0.625rem;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
}*/

.p-price__card-foot {
	padding: 0;
}

.p-price__btn {
	-webkit-text-decoration: none;
	align-items: center;
	background: linear-gradient(180deg, #3cd27d 0%, #27c66a 100%);
	border-radius: 3.125rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	color: #ffffff;
	color: var(--color-white);
	display: flex;
	font-size: 1.125rem;
	font-weight: 700;
	height: 3rem;
	justify-content: center;
	position: relative;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 100%;
}

.p-price__btn::after {
	border-bottom: 0.25rem solid transparent;
	border-left: 0.375rem solid #ffffff;
	border-left: 0.375rem solid var(--color-white);
	border-top: 0.25rem solid transparent;
	content: "";
	height: 0;
	position: absolute;
	right: 1rem;
	width: 0;
}

.p-price__btn:hover {
	opacity: 0.8;
}

/* Size Table */

.p-size {
	margin-bottom: 3.75rem;
}

.p-size__inner {
	margin: 0 auto;
	max-width: 50rem;
}

.p-size__title {
	align-items: center;
	background-color: #55515d;
	color: #fff;
	display: flex;
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	font-size: 1.25rem;
	font-weight: 400;
	height: 3rem;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1.6;
}

.p-size__table {
	border-bottom: 0.0625rem solid #cccccc;
	border-collapse: collapse;
	border-left: 0.0625rem solid #cccccc;
	border-right: 0.0625rem solid #cccccc;
	width: 100%;
}

.p-size__table-row {
	border-bottom: 0.0625rem solid #cccccc;
}

.p-size__table-row:last-child {
	border-bottom: none;
}

.p-size__table-head {
	background-color: #fff;
	border-right: 0.0625rem solid #cccccc;
	color: #55515d;
	font-size: 1.625rem;
	font-weight: 500;
	padding: 0.75rem 1.25rem;
	text-align: center;
	width: 30%;
}

.p-size__table-data {
	background-color: #fff;
	color: #55515d;
	font-size: 1.625rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 0.75rem 1.25rem;
	text-align: center;
}

/* Shipping */

.p-shipping {
	background-color: #ffffff;
	background-color: var(--color-white);
	border: 0.0625rem solid #f2b19f;
	border-radius: 0.125rem;
	margin: 0 auto 3.75rem;
	max-width: 48.125rem;
	padding: 2rem 1.25rem;
}

.p-shipping__main {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	justify-content: center;
	margin-bottom: 3.75rem;
	padding: 0 1.25rem;
	position: relative;
}

.p-shipping__main::after {
	border-left: 1.6875rem solid transparent;
	border-right: 1.6875rem solid transparent;
	border-top: 1.6875rem solid #f2b19f;
	bottom: -2.8125rem;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 0;
}

.p-shipping__images {
	position: relative;
	width: 17.125rem;
}

.p-shipping__images img {
	height: auto;
	width: 100%;
}

/*.p-shipping__images::after {
	background-color: rgba(255, 255, 255, 0.6);
	background-image: url("../images/common/logo_coming.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80% auto;
	content: "";
	height: 50%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}*/

.p-shipping__box {
	text-align: center;
}

.p-shipping__box-content {
	align-items: flex-end;
	border: 0.08125rem solid #db7c75;
	display: flex;
	font-family: "Lato", sans-serif;
	font-family: var(--font-price);
	gap: 0.3125rem;
	margin-bottom: 0.625rem;
	padding: 0.625rem 1.25rem;
}

.p-shipping__box-label {
	color: #db7c75;
	font-size: 2.25rem;
	font-weight: 700;
}

.p-shipping__box-value {
	color: #db7c75;
	font-family: "Lato", sans-serif;
	font-family: var(--font-price);
	font-size: 5rem;
	font-weight: 700;
	line-height: 0.9;
}

.p-shipping__box-unit {
	color: #db7c75;
	font-size: 2.25rem;
	font-weight: 700;
}

.p-shipping__note {
	color: #535353;
	font-size: 1.25rem;
	font-weight: 500;
}

.p-shipping__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.p-shipping__free {
	align-items: flex-end;
	display: flex;
	gap: 0.625rem;
	justify-content: center;
	position: relative;
}

.p-shipping__free-label {
	color: #b87671;
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-family: var(--font-price);
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.p-shipping__free-label::before {
	background-color: #f4ff76;
	bottom: 0rem;
	content: "";
	height: 1.3125rem;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.p-shipping__free-head {
	align-items: flex-end;
	display: flex;
	gap: 0.25rem;
}

.p-shipping__free-num {
	color: #b87671;
	font-family: "Lato", sans-serif;
	font-family: var(--font-price);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
}

.p-shipping__free-text {
	color: #b87671;
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 1.6875rem;
	font-weight: 700;
}

.p-shipping__profile {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.p-shipping__profile-image {
	background: linear-gradient(to bottom, #f2b19f, #ffd6cb);
	border-radius: 50%;
	height: 8.75rem;
	overflow: hidden;
	width: 8.75rem;
}

.p-shipping__profile-image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-shipping__profile-comments {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.p-shipping__profile-comment {
	background-color: #db7c75;
	color: #ffffff;
	color: var(--color-white);
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	padding: 0.125rem 0.625rem;
	white-space: nowrap;
}

.p-shipping__material {
	color: #4a4341;
	font-size: 1rem;
	margin-top: 1.5rem;
	/* text-align: center; */
}

.p-shop {
	background-image: url("../images/common/bg-shop.png");
	background-repeat: repeat;
	padding: 0 0 7.5rem;
}

.p-shop__head {
	background-color: #91453e;
	margin-bottom: 5rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 2.5rem calc(50vw - 50%);
	text-align: center;
}

.p-shop__head-text {
	color: #ffffff;
	color: var(--color-white);
	font-family: "Noto Serif JP", serif;
	font-family: var(--font-serif);
	font-size: 3.5rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.p-shop__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 50rem;
}

.p-shop__image {
	line-height: 0;
	overflow: hidden;
	width: 100%;
}

.p-shop__image img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-shop__content {
	background-color: #ffffff;
	background-color: var(--color-white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	color: #5E4A0E;
	margin-top: 2rem;
	max-width: 47.5rem;
	padding: 3.75rem 2.5rem;
	position: relative;
	text-align: left;
	width: 100%;
	z-index: 1;
}

.p-shop__text {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 1.875rem;
}

.p-shop__info {
	border-top: 0.0625rem solid #B87D60;
	padding-top: 1.875rem;
	width: 100%;
}

.p-shop__address {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
}

.p-contact {
	background-color: #efe4d5;
	padding: 6.25rem 0;
}

.p-contact__inner {
	margin: 0 auto;
	max-width: 46.375rem;
	padding: 0 1.25rem;
}

.p-contact__bg {
	background-color: #ffffff;
	background-color: var(--color-white);
	border-radius: 0.625rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position: relative;
}

.p-contact__card-top {
	align-items: center;
	background-image: url("../images/common/bg-shop.png");
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 3.5rem 2.5rem 3rem;
	position: relative;
}

.p-contact__card-top::before {
	background-color: rgba(255, 255, 255, 0.68);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.p-contact__card-top>* {
	position: relative;
	z-index: 2;
}

.p-contact__head {
	text-align: center;
}

.p-contact__title {
	display: flex;
	justify-content: center;
	margin-bottom: 0.25rem;
}

.p-contact__title img {
	aspect-ratio: 443/113;
	width: 27.6875rem;
}

.p-contact__subtitle {
	color: #535353;
	font-family: "Noto Serif JP", serif;
	font-family: var(--font-serif);
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.p-contact__tel-group {
	align-items: flex-end;
	display: flex;
	gap: 0.8125rem;
}

.p-contact__badge {
	align-items: center;
	background-color: #db7c75;
	border-radius: 0.25rem;
	color: #ffffff;
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	font-size: 1.625rem;
	font-weight: 900;
	height: 5.6875rem;
	justify-content: center;
	letter-spacing: 0.08em;
	line-height: 1.28;
	width: 5.6875rem;
}

.p-contact__tel {
	color: #db7c75;
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 4.875rem;
	font-weight: 500;
	line-height: 1;
}

.p-contact__card-bottom {
	align-items: flex-end;
	background-color: #f5ecec;
	display: flex;
	min-height: 15.25rem;
	padding: 2.5rem;
	position: relative;
}

.p-contact__visual {
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	width: 32.5625rem;
	z-index: 1;
}

.p-contact__person {
	display: block;
	height: auto;
	width: 100%;
}

.p-contact__action {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 0.4375rem;
	margin-left: 12.0625rem;
	z-index: 2;
}

.p-contact__btn {
	-webkit-text-decoration: none;
	align-items: center;
	background: linear-gradient(180deg, #33cd78 0%, #1cc266 100%);
	border-radius: 0.5rem;
	display: flex;
	gap: 1.25rem;
	height: 6.75rem;
	justify-content: center;
	max-width: 28.25rem;
	position: relative;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 100%;
}

.p-contact__btn:hover {
	opacity: 0.8;
}

.p-contact__btn::after {
	border-bottom: 0.625rem solid transparent;
	border-left: 0.9375rem solid #ffffff;
	border-left: 0.9375rem solid var(--color-white);
	border-top: 0.625rem solid transparent;
	content: "";
	height: 0;
	position: absolute;
	right: 1.125rem;
	width: 0;
}

.p-contact__btn-icon {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: flex;
	height: 3.875rem;
	justify-content: center;
	left: 1.1875rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.875rem;
}

.p-contact__btn-icon img {
	height: auto;
	width: 2rem;
}

.p-contact__btn-text {
	color: #ffffff;
	color: var(--color-white);
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.6;
	text-align: center;
}

.p-contact__btn-text p {
	margin: 0;
}

.p-contact__time {
	color: #b87d60;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.6;
}

.p-contact__time-num {
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 2.5rem;
	vertical-align: baseline;
}

.p-order {
	background-color: #fff;
	padding: 6.25rem 0;
}

.p-order__head {
	margin-bottom: 3.75rem;
	text-align: center;
}

.p-order__head-en {
	color: #222;
	font-family: "EB Garamond", serif;
	font-family: var(--font-accent);
	font-size: 4.5rem;
	letter-spacing: 0.1em;
	line-height: 1;
}

.p-order__head-jp {
	color: #222;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--font-sans);
	font-size: 1.375rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 0.625rem;
}

.p-order__form {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
}

.p-order__section {
	width: 100%;
}

.p-order__section-title {
	border-bottom: 0.0625rem solid #000;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	padding: 0.625rem 0;
}

/* Field / Row Layout */

.p-order__row {
	border-bottom: 0.0625rem solid #d2d2d2;
	border-top: 0.0625rem solid #d2d2d2;
	display: flex;
	margin-top: -0.0625rem;
	min-height: 5rem;
}

.p-order__row-label {
	align-items: center;
	background-color: #fff;
	display: flex;
	flex-shrink: 0;
	gap: 0.625rem;
	padding: 1.25rem;
	width: 12.5rem;
}

.p-order__label {
	font-size: 1.125rem;
	font-weight: 500;
}

.p-order__badge {
	background-color: #e80b0b;
	border-radius: 0.125rem;
	color: #fff;
	font-size: 0.75rem;
	padding: 0.125rem 0.625rem;
}

.p-order__row-inputs {
	align-items: center;
	display: flex;
	flex-grow: 1;
	gap: 1.25rem;
	padding: 0.9375rem 1.25rem;
}

.p-order__row-inputs--column {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.625rem;
}

/* Inputs */

.p-order__input {
	background-color: #e3e3e3;
	border: 0.0625rem solid #4a4341;
	border-radius: 0.25rem;
	font-size: 1.125rem;
	height: 3.125rem;
	max-width: 18.75rem;
	padding: 0 0.9375rem;
	width: 100%;
}

.p-order__input::-moz-placeholder {
	color: rgba(34, 34, 34, 0.3);
}

.p-order__input::placeholder {
	color: rgba(34, 34, 34, 0.3);
}

.p-order__input--tel {
	max-width: 18.75rem;
}

.p-order__select-wrap {
	max-width: 16.25rem;
	position: relative;
	width: 100%;
}

.p-order__select-wrap::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a4341'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	content: "";
	height: 0.375rem;
	pointer-events: none;
	position: absolute;
	right: 0.9375rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.625rem;
}

.p-order__select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #e3e3e3;
	border: 0.0625rem solid #4a4341;
	border-radius: 0.25rem;
	font-size: 1.125rem;
	height: 3.125rem;
	padding: 0 2.5rem 0 0.9375rem;
	width: 100%;
}

.p-order__textarea {
	background-color: #fff;
	border: 0.0625rem solid #4a4341;
	border-radius: 0.25rem;
	font-size: 1.125rem;
	height: 13.75rem;
	padding: 0.9375rem;
	resize: vertical;
	width: 100%;
}

.p-order__textarea::-moz-placeholder {
	color: #747474;
}

.p-order__textarea::placeholder {
	color: #747474;
}

/* Groups */

.p-order__input-group {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	width: 100%;
}

.p-order__input-group--address {
	align-items: flex-start;
	flex-direction: column;
}

.p-order__sub-label-wrap {
	align-items: center;
	display: flex;
	gap: 0.625rem;
	margin-bottom: 0.3125rem;
}

.p-order__sub-label {
	font-size: 1.125rem;
	font-weight: 500;
}

.p-order__inline-label {
	font-size: 1.125rem;
	font-weight: 500;
	min-width: 12.5rem;
	text-align: right;
}

.p-order__note {
	color: #747474;
	font-size: 0.9375rem;
}

.p-order__form-note {
	color: #747474;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.p-order__form-note--center {
	margin-top: 0.625rem;
	text-align: center;
}

.p-order__form-error {
	color: #e80b0b;
	font-size: 0.9375rem;
}

/* Radio / Checkbox */

.p-order__radio-group {
	background-color: #e3e3e3;
	border-radius: 0.5rem;
	display: flex;
	overflow: hidden;
}

.p-order__radio-label {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 1.125rem;
	height: 3.125rem;
	justify-content: center;
	width: 7.5rem;
}

.p-order__radio-label input {
	display: none;
}

.p-order__radio-label span {
	padding: 0.625rem;
}

.p-order__radio-label:has(input:checked) {
	background-color: #db7c75;
	color: #fff;
}

.p-order__checkbox-box {
	background-color: #e3e3e3;
	border: 0.0625rem solid #4a4341;
	border-radius: 0.25rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	padding: 1.5625rem;
}

.p-order__checkbox-label {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 1.125rem;
	gap: 0.625rem;
}

.p-order__checkbox-label input {
	height: 1.25rem;
	width: 1.25rem;
}

/* Consent */

.p-order__consent {
	border-top: 0.0625rem solid #747474;
}

.p-order__consent-item {
	align-items: center;
	border-bottom: 0.0625rem solid #747474;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 1.875rem 0;
}

/* Status Bar */

.p-order__status {
	display: flex;
	justify-content: center;
	margin: 2.5rem 0;
}

.p-order__status-bar {
	align-items: flex-start;
	display: flex;
	max-width: 31.25rem;
	width: 100%;
}

.p-order__status-step {
	align-items: center;
	display: flex;
	flex: 1;
	flex-direction: column;
	position: relative;
}

.p-order__status-step::before {
	background-color: #eee;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.5rem;
	border-radius: 50%;
	content: "";
	height: 3rem;
	margin-bottom: 0.625rem;
	width: 3rem;
}

.p-order__status-step::after {
	background-color: #bdbdbd;
	content: "";
	height: 0.1875rem;
	left: calc(50% + 1.5rem);
	position: absolute;
	top: 1.5rem;
	width: calc(100% - 3rem);
}

.p-order__status-step:last-child::after {
	display: none;
}

.p-order__status-step.is-active::before {
	background-color: #db7c75;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/%3E%3C/svg%3E");
}

.p-order__status-step .p-order__status-text {
	font-size: 1rem;
	font-weight: 600;
}

/* Submit */

.p-order__submit {
	display: flex;
	justify-content: center;
}

.p-order__submit-btn {
	background: linear-gradient(180deg, #33cd78 0%, #1cc266 100%);
	border: none;
	border-radius: 0.5rem;
	color: #fff;
	cursor: pointer;
	font-size: 1.75rem;
	font-weight: 700;
	height: 6.25rem;
	letter-spacing: 0.1em;
	max-width: 37.5rem;
	position: relative;
	transition: opacity 0.3s;
	width: 100%;
}

.p-order__submit-btn::after {
	border-right: 0.1875rem solid #fff;
	border-top: 0.1875rem solid #fff;
	content: "";
	height: 0.9375rem;
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	transform: translateY(-50%) rotate(45deg);
	width: 0.9375rem;
}

.p-order__submit-btn:hover {
	opacity: 0.8;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 820px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-footer {
	background-color: #673300;
	color: #fff;
	padding: 4rem 0;
}

.l-footer__inner {
	align-items: center;
	display: flex;
	gap: 9.25rem;
	justify-content: center;
	margin: 0 auto;
	max-width: 75rem;
	padding: 0 1.25rem;
}

.l-footer__company {
	flex-shrink: 0;
}

.l-footer__company-name {
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.6;
}

.l-footer__nav {
	align-items: center;
	display: flex;
}

.l-footer__nav-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem 0;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.l-footer__nav-item {
	align-items: center;
	border-right: 0.0625rem solid #fff;
	display: flex;
	padding: 0 0.625rem;
	white-space: nowrap;
}

.l-footer__nav-item:last-child {
	border-right: none;
}

.l-footer__nav-link {
	-webkit-text-decoration: none;
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.6;
	text-decoration: none;
	transition: opacity 0.3s;
}

body {
	background-color: #ffffff;
	background-color: var(--color-white);
	color: #222423;
	color: var(--color-text-main);
	font-family: "Shippori Mincho B1", serif;
	font-family: var(--font-main);
	margin: 0;
	padding: 0;
}

@media (any-hover: hover) {

	.l-footer__nav-link:hover {
		opacity: 0.7;
	}

}

@media (max-width: 770px) {

	html {
		font-size: 2.0779220779vw;
	}

}

@media screen and (max-width: 767px) {

	.u-desktop {
		display: none;
	}

	.u-mobile {
		display: block;
	}

	html {
		font-size: 16px;
	}

	.c-feature-item {
		flex-direction: column;
		gap: 1.25rem;
	}

	.c-feature-item__content {
		width: 100%;
	}

	.c-feature-item__image {
		aspect-ratio: 340/139;
		width: 100%;
	}

	.c-product-card {
		background-color: transparent;
		background-color: initial;
		flex-direction: column;
		gap: 0;
		height: auto;
		margin-top: 4.0625rem;
	}

	.c-product-card__label-wrap {
		left: 0.625rem;
		padding: 0.9375rem 1.25rem;
		top: -2.5rem;
		width: 11rem;
	}

	.c-product-card__label-en {
		font-size: 1.375rem;
	}

	.c-product-card__label-jp {
		font-size: 1.125rem;
	}

	.c-product-card__label-jp::before {
		width: 6.25rem;
	}

	.c-product-card__content {
		align-items: flex-end;
		bottom: auto;
		justify-content: flex-end;
		position: relative;
		right: auto;
		transform: none;
		width: 100%;
	}

	.c-product-card__icon {
		aspect-ratio: 1 / 1;
		flex: 0 0 auto;
		height: auto;
		width: calc((100% - 0.625rem) * 3 / 11);
	}

	.c-product-card__comment {
		flex: 1;
		height: auto;
		min-width: 0;
	}

	.p-mv {
		height: auto;
		padding: 5rem 0 3rem;
	}

	.p-mv__bg {
		background-image: url("../images/common/bg-mv_sp.jpg");
	}

	.p-mv__inner.inner {
		height: 100%;
		margin: 0 auto;
		max-width: 25rem;
	}

	.p-mv__wrap {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 2rem;
	}

	.p-mv__img {
		padding-left: 0;
	}

	.p-mv__profile-card {
		left: 0;
		position: relative;
		top: 0;
	}

	.p-mv__profile-card::before {
		bottom: -0.625rem;
		left: -0.625rem;
		top: auto;
		top: initial;
	}

	.p-sub-mv {
		height: auto;
	}

	.p-sub-mv__inner.inner {
		max-width: 41.875rem;
	}

	.p-sub-mv__img {
		max-width: 21.4375rem;
	}

	.p-structure {
		padding: 3.5rem 0;
	}

	.p-structure__title {
		font-size: 2.5rem;
	}

	.p-structure__subtitle {
		font-size: 1rem;
	}

	.p-structure__image-wrap {
		min-height: auto;
	}

	.p-lineup::before {
		height: 3rem;
	}

	.p-lineup {
		padding: 3rem 0;
	}

	.p-lineup__inner.inner {
		max-width: 28.125rem;
	}

	.p-lineup__head {
		margin-bottom: 0rem;
	}

	.p-lineup__head-en {
		font-size: 2.5rem;
		gap: 0.75rem;
	}

	.p-lineup__items {
		gap: 2.5rem;
	}

	.p-lineup__main {
		align-items: center;
		flex-direction: column;
		gap: 2.5rem;
		margin-top: 2.5rem;
	}

	.p-lineup__image {
		padding-left: 1.25rem;
	}

	.p-lineup__info {
		margin-left: 0;
		padding: 2.5rem 1.25rem 0.625rem;
		width: 100%;
	}

	.p-lineup__info::after {
		bottom: -0.625rem;
		left: 2.8125rem;
		right: -0.625rem;
	}

	.p-lineup__point-badge {
		top: -1.5rem;
	}

	.p-details {
		padding: 3rem 0;
	}

	.p-details::before {
		height: 3rem;
	}

	.p-details__inner.inner {
		max-width: 28.125rem;
	}

	.p-details__main {
		align-items: center;
		flex-direction: column;
		gap: 2.5rem;
		margin-top: 2.5rem;
	}

	.p-details__image {
		padding-left: 1.25rem;
	}

	.p-details__info {
		margin-left: 0;
		padding: 2.5rem 1.25rem 0.625rem;
		width: 100%;
	}

	.p-details__info::after {
		left: 2.8125rem;
	}

	.p-details__point-badge {
		top: -1.5rem;
	}

	.p-pressure {
		padding: 3rem 0;
	}

	.p-pressure__head {
		margin-bottom: 1.3125rem;
	}

	.p-pressure__head-label {
		font-size: 1rem;
	}

	.p-pressure__head-title {
		font-size: 2rem;
	}

	.p-price__head {
		padding: 1.875rem calc(50vw - 50%);
	}

	.p-price__head-en {
		font-size: 3rem;
	}

	.p-price__head-jp {
		font-size: 1.125rem;
	}

	.p-price__items {
		align-items: center;
		flex-direction: column;
		margin-bottom: 2.25rem;
	}

	.p-price__card {
		max-width: 21.25rem;
	}

	.p-price__card-image {
		aspect-ratio: 340/243;
	}

	.p-size__inner {
		max-width: 25rem;
	}

	.p-shipping {
		margin: 0 auto 2.5rem;
		max-width: 25rem;
		padding: 0.9375rem 0.75rem;
		width: 100%;
	}

	.p-shipping__main {
		flex-direction: column-reverse;
		gap: 1.25rem;
		margin-bottom: 2.5rem;
		padding: 0;
	}

	.p-shipping__main::after {
		bottom: -2.1875rem;
	}

	.p-shipping__images {
		max-width: 6.25rem;
		width: 100%;
	}

	.p-shipping__box-content {
		justify-content: center;
	}

	.p-shipping__box-label {
		font-size: 1.25rem;
	}

	.p-shipping__box-value {
		font-size: 2.75rem;
	}

	.p-shipping__box-unit {
		font-size: 1.25rem;
	}

	.p-shipping__note {
		font-size: 0.875rem;
	}

	.p-shipping__bottom-wrap {
		display: flex;
		justify-content: center;
	}

	.p-shipping__free {
		align-items: center;
		flex-direction: column;
		gap: 0.3125rem;
	}

	.p-shipping__free-label {
		font-size: 2rem;
	}

	.p-shipping__free-num {
		font-size: 1.875rem;
	}

	.p-shipping__free-text {
		font-size: 0.875rem;
	}

	.p-shipping__profile {
		gap: 0.5rem;
	}

	.p-shipping__profile-image {
		height: 3.75rem;
		width: 3.75rem;
	}

	.p-shipping__profile-comment {
		font-size: 0.625rem;
	}

	.p-shipping__material {
		font-size: 0.5rem;
		text-align: left;
	}

	.p-shop {
		padding: 0 0 3.75rem;
	}

	.p-shop__head {
		margin-bottom: 2.5rem;
		padding: 1.875rem calc(50vw - 50%);
	}

	.p-shop__head-text {
		font-size: 2rem;
	}

	.p-shop__content {
		padding: 2.5rem 1.25rem;
	}

	.p-shop__text {
		font-size: 0.9375rem;
	}

	.p-shop__address {
		font-size: 0.9375rem;
	}

	.p-contact {
		padding: 2.5rem 0;
	}

	.p-contact__card-top {
		padding: 2.5rem 0.75rem;
	}

	.p-contact__title img {
		height: 3.125rem;
		width: 12.5rem;
	}

	.p-contact__subtitle {
		font-size: 0.875rem;
	}

	.p-contact__badge {
		font-size: 1rem;
		height: 3.75rem;
		width: 3.75rem;
	}

	.p-contact__tel {
		font-size: 2.5rem;
	}

	.p-contact__card-bottom {
		min-height: auto;
		padding: 1.875rem 0.625rem;
	}

	.p-contact__visual {
		width: 17.5rem;
	}

	.p-contact__action {
		margin-left: 4.25rem;
	}

	.p-contact__btn {
		height: 5rem;
	}

	.p-contact__btn-icon {
		height: 2.5rem;
		left: 0.625rem;
		width: 2.5rem;
	}

	.p-contact__btn-icon img {
		width: 1.25rem;
	}

	.p-contact__btn-text {
		font-size: 1rem;
	}

	.p-contact__time {
		font-size: 0.75rem;
	}

	.p-contact__time-num {
		font-size: 1.75rem;
	}

	.p-order__row {
		flex-direction: column;
		padding: 1.25rem 0;
	}

	.p-order__row-label {
		padding: 0 0 0.625rem 0;
		width: 100%;
	}

	.p-order__row-inputs {
		flex-wrap: wrap;
		padding: 0;
	}

	.inner {
		max-width: 28.125rem;
		padding-left: 12px;
		padding-right: 12px;
	}

	.l-footer__inner {
		flex-direction: column;
		gap: 2.5rem;
	}

}

@media screen and (max-width: 600px) {

	.l-footer__nav-list {
		align-items: center;
		flex-direction: column;
	}

	.l-footer__nav-item {
		border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
		border-right: none;
		justify-content: center;
		padding: 0.625rem 0;
		width: 100%;
	}

	.l-footer__nav-item:last-child {
		border-bottom: none;
	}

}

@media (max-width: 375px) {

	html {
		font-size: 4.2666666667vw;
	}

}

p.att{
	font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
	padding: 1.5em 0;
	text-align: center;
}


.recommend{
	background: #F1F1F1;
	padding: 100px 0;
}



.recommend h2{
	color: #535353;
    color: var(--color-text-heading);
    font-family: "Noto Serif JP", serif;
    font-family: var(--font-serif);
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.25rem;
	text-align: center;
}


.recommend .recommend-img{
    margin-bottom: 2rem;
	text-align: center;
}



.recommend p{
	color: #535353;
    color: var(--color-text-heading);
    font-family: "Noto Serif JP", serif;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
	text-align: center;
}


.comment{
	background: url(https://emisia.co.jp/user_data/202603/etoilestep/pc/images/common/comment-bg.png);
	text-align: center;
	padding: 60px 0;
}




/*# sourceMappingURL=style.css.map */