/* =========================================================
   PRIVACY POLICY
========================================================= */

.privacy {
	padding: 110px 0 140px;
	background: #faf9f6;
}

.privacy__inner {
	width: min(calc(100% - 80px), 1060px);
	margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.privacyHeading {
	text-align: center;
}

.privacyHeading__en {
	position: relative;
	display: block;
	width: fit-content;
	margin: 8px auto 0;
	padding-bottom: 10px;
	color: #c78920;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .18em;
}

.privacyHeading__en::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 38px;
	height: 1px;
	background: #c78920;
	transform: translateX(-50%);
}

.privacyHeading h1 {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(26px, 1.8vw, 32px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .08em;
}


/* ---------------------------------------------------------
   LEAD
--------------------------------------------------------- */

.privacyLead {
	margin-top: 38px;
	text-align: center;
}

.privacyLead p {
	margin: 0;
	font-size: clamp(13px, .9vw, 15px);
	line-height: 2.1;
	letter-spacing: .02em;
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.privacyContent {
	margin-top: 80px;
}


/* ---------------------------------------------------------
   SECTION
--------------------------------------------------------- */

.privacySection + .privacySection {
	margin-top: 80px;
}

.privacySection__heading {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid #bcae98;
}

.privacySection__number {
	flex-shrink: 0;
	color: #c78920;
	font-family: "Noto Serif JP", serif;
	font-size: 13px;
}

.privacySection__heading h2 {
	margin: 0;
	font-family: "Noto Serif JP", serif;
	font-size: clamp(20px, 1.5vw, 25px);
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .06em;
}


/* ---------------------------------------------------------
   BODY
--------------------------------------------------------- */

.privacySection__body {
	padding: 30px 20px 0;
}

.privacySection__body p {
	margin: 0;
	font-size: clamp(12px, .85vw, 14px);
	line-height: 2.15;
	letter-spacing: .02em;
}

.privacySection__body p + p {
	margin-top: 15px;
}


/* ---------------------------------------------------------
   LIST
--------------------------------------------------------- */

.privacyList {
	margin: 25px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: privacy-list;
}

.privacyList li {
	position: relative;
	padding-left: 38px;
	font-size: clamp(12px, .85vw, 14px);
	line-height: 2.1;
	letter-spacing: .02em;
	counter-increment: privacy-list;
}

.privacyList li + li {
	margin-top: 13px;
}

.privacyList li::before {
	content: counter(privacy-list, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	color: #c78920;
	font-family: "LINE Seed JP", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .05em;
}


/* ---------------------------------------------------------
   NOTE
--------------------------------------------------------- */

.privacyNote {
	margin-top: 28px;
	padding: 20px 24px;
	background: #f1eee8;
}

.privacyNote p {
	font-size: 12px;
	line-height: 1.9;
}

.privacyNote strong {
	font-weight: 600;
}


/* ---------------------------------------------------------
   CONTACT
--------------------------------------------------------- */

.privacyContact {
	margin-top: 30px;
	padding: 30px 35px;
	border: 1px solid #d6d0c5;
	background: #fff;
}

.privacyContact__title {
	margin-bottom: 10px !important;
	font-weight: 600;
}

.privacyContact__note {
	margin-top: 12px !important;
	color: #777;
	font-size: 11px !important;
}

.privacyContact__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 320px);
	min-height: 58px;
	margin-top: 28px;
	padding: 12px 45px;
	border: 1px solid #c78920;
	background: #c78920;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-decoration: none;
	transition: .25s;
}

.privacyContact__button i {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.privacyContact__button:hover {
	background: #fff;
	color: #a97116;
}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

	.privacy {
		padding: 70px 0 90px;
	}

	.privacy__inner {
		width: calc(100% - 36px);
	}


	/* heading */

	.privacyHeading__en {
		margin-bottom: 9px;
		font-size: 10px;
	}

	.privacyHeading h1 {
		font-size: 25px;
	}


	/* lead */

	.privacyLead {
		margin-top: 28px;
		text-align: left;
	}

	.privacyLead p {
		font-size: 12px;
		line-height: 2;
	}

	.pc {
		display: none;
	}


	/* content */

	.privacyContent {
		margin-top: 55px;
	}


	/* section */

	.privacySection + .privacySection {
		margin-top: 60px;
	}

	.privacySection__heading {
		gap: 11px;
		padding-bottom: 13px;
	}

	.privacySection__number {
		font-size: 11px;
	}

	.privacySection__heading h2 {
		font-size: 18px;
		line-height: 1.55;
	}


	/* body */

	.privacySection__body {
		padding: 20px 0 0;
	}

	.privacySection__body p {
		font-size: 12px;
		line-height: 2;
	}


	/* list */

	.privacyList {
		margin-top: 20px;
	}

	.privacyList li {
		padding-left: 32px;
		font-size: 12px;
		line-height: 2;
	}

	.privacyList li + li {
		margin-top: 12px;
	}

	.privacyList li::before {
		font-size: 10px;
	}


	/* note */

	.privacyNote {
		margin-top: 22px;
		padding: 17px;
	}

	.privacyNote p {
		font-size: 11px;
	}


	/* contact */

	.privacyContact {
		margin-top: 25px;
		padding: 22px 18px;
	}

	.privacyContact__button {
		width: 100%;
		min-height: 56px;
		margin-top: 24px;
		font-size: 12px;
	}

}