/**
 * Privacy Policy Page Styles
 *
 * Mobile-first: base 400px, desktop overrides at 768px+.
 *
 * @package Okayama
 */

/* ========================================
   Page Base
   ======================================== */

.page-corporate-privacy {
	background-color: #f3f8e7;
}

/* ========================================
   Page Title
   ======================================== */

.privacy-title {
	text-align: center;
	padding: 40px 20px 0;
}

.privacy-title__main {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(28px, calc(23.2px + 1.2vw), 40px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

.privacy-title__en {
	font-family: 'Reddit Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #6bb529;
	line-height: 1.6;
	margin: 4px 0 0;
	text-transform: uppercase;
}

/* ========================================
   Policy Content Card
   ======================================== */

.privacy-card {
	background-color: #fff;
	border-radius: 18px;
	padding: 40px 20px;
	margin: 40px 20px 0;
}

/* ========================================
   Section (top-level grouping)
   ======================================== */

.privacy-section {
	margin-bottom: 60px;
}

.privacy-section:last-child {
	margin-bottom: 0;
}

.privacy-section__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(23px, calc(18.2px + 1.2vw), 35px);
	font-weight: 700;
	color: #333;
	line-height: 1.6;
	margin: 0 0 20px;
}

/* ========================================
   Block (sub-section with green heading)
   ======================================== */

.privacy-block {
	margin-bottom: 20px;
}

.privacy-block:last-child {
	margin-bottom: 0;
}

.privacy-block__heading {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(20px, calc(16.8px + 0.8vw), 28px);
	font-weight: 700;
	color: #6bb529;
	line-height: 1.6;
	margin: 0 0 16px;
}

.privacy-block__text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	margin: 0 0 8px;
}

.privacy-block__text:last-child {
	margin-bottom: 0;
}

/* ========================================
   Item (numbered policy item)
   ======================================== */

.privacy-item {
	margin-bottom: 20px;
}

.privacy-item:last-child {
	margin-bottom: 0;
}

.privacy-item__title {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 700;
	color: #333;
	line-height: 2;
	margin: 0 0 10px;
}

.privacy-item__text {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	margin: 0 0 8px;
}

.privacy-item__text:last-child {
	margin-bottom: 0;
}

.privacy-item__link {
	color: #333;
	text-decoration: underline;
}

.privacy-item__link:hover {
	text-decoration: none;
}

/* Bullet list */
.privacy-item__list {
	list-style: disc;
	padding-left: 24px;
	margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
}

.privacy-item__list li {
	margin-bottom: 0;
}

.privacy-item__list--no-bullet {
	list-style: none;
	padding-left: 0;
}

/* Numbered list (used on sitepolicy page) */
.privacy-item__list--ordered {
	list-style: decimal;
}

/* Sub-heading within item (e.g. "(1)お客様の個人情報") */
.privacy-item__sub-heading {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	margin: 8px 0 0;
}

/* Indented content (① items) */
.privacy-item__indent {
	padding-left: 20px;
	margin-bottom: 8px;
}

.privacy-item__indent p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	margin: 0;
}

/* Sub-list for numbered items (e.g. third-party provision exceptions) */
.privacy-item__sub-list {
	margin-bottom: 8px;
}

.privacy-item__sub-list p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
	font-weight: 400;
	color: #333;
	line-height: 2;
	margin: 0;
}

/* ========================================
   Desktop Overrides (min-width: 768px)
   ======================================== */

@media (min-width: 768px) {
	.privacy-title {
		padding: 60px var(--corp-pad-side) 0;
	}

	.privacy-card {
		width: 100%;
		max-width: 1100px;
		margin: 60px auto 0;
		border-radius: 24px;
		padding: 64px clamp(40px, 6vw, 80px);
	}

	.privacy-section {
		margin-bottom: 80px;
	}

	.privacy-block {
		margin-bottom: 20px;
	}
}
