@charset "UTF-8";
/* ============================================
   ペットページ専用スタイル（画像なしバージョン）
   page-pet.php 用
   ※ style.css の末尾に追記、または別ファイルとして
      functions.php で wp_enqueue_style しても可
============================================ */

/* ── ヒーロー ───────────── */
.pet-hero {
	text-align: center;
	padding: 70px 30px 60px !important;
	background: linear-gradient(135deg, #fbf8f2 0%, #f5efe3 100%);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.pet-hero:before,
.pet-hero:after {
	content: "";
	position: absolute;
	width: 240px;
	height: 240px;
	background: rgba(176, 154, 106, 0.07);
	border-radius: 50%;
	pointer-events: none;
}
.pet-hero:before { top: -120px; left: -120px; }
.pet-hero:after  { bottom: -120px; right: -120px; }
.pet-hero-inner {
	position: relative;
	z-index: 1;
}


.content-section .pet-hero-inner h1 {
	max-width: none;
}


section.content-section .pet-hero-inner h1:after {
	margin: 13px auto 0;
}


.pet-hero-icon {
	font-size: 48px !important;
	color: #b09a6a;
	display: block;
	margin-bottom: 18px;
}
.pet-hero h1 {
	margin: 0 0 25px !important;
}
.pet-hero-lead {
	/*font-size: 16px !important;*/
	line-height: 2 !important;
	color: #555;
	max-width: 620px;
	margin: 0 auto !important;
}

/* ── セクション見出し（カテゴリ区切り） ───────────── */
.pet-section-title {
	text-align: center;
	margin: 70px 0 30px;
}
.pet-section-title-label {
	display: inline-block;
	font-size: 20px;
	letter-spacing: 0.12em;
	color: #2c2a26;
	font-weight: bold;
}
.pet-section-title small {
	display: block;
	font-size: 11px;
	color: #888;
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.25em;
}
.pet-section-title:after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #b09a6a;
	margin: 14px auto 0;
}

/* ── 2カラムグリッド ───────────── */
.pet-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-bottom: 30px;
}

/* ── カード基本 ───────────── */
.pet-card {
	position: relative;
	background: #fff;
	border: 1px solid #e5dfd0;
	border-radius: 4px;
	/*padding: 32px 28px 26px;*/
	padding: 26px 28px 26px;
	transition: all 0.25s ease;
}
.pet-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}
.pet-card-num {
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 36px;
	font-weight: 300;
	color: #d8cfb8;
	line-height: 1;
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: -0.02em;
	pointer-events: none;
}

.pet-card-title {
	display: flex;
	align-items: baseline;
}

.pet-card-icon {
	width: 64px;
	height: 64px;
	/*background: #fbf8f2;*/
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	margin-right: 10px;
}
.pet-card-icon .fa {
	font-size: 28px;
	color: #b09a6a;
}
.pet-card h2 {
	font-size: 19px;
	margin: 0 0 10px;
	line-height: 1.5;
	color: #333;
}
.pet-card .pet-price-line {
	margin: 0 0 14px !important;
	line-height: 1.6;
}
.pet-desc {
	/*font-size: 14px !important;*/
	line-height: 1.85 !important;
	margin: 0 0 14px !important;
}
.pet-note {
	/*font-size: 12px !important;*/
	color: #888;
	line-height: 1.7 !important;
	/*margin-top: 14px !important;*/
   display: inline-block;
}

/* ── カード：無料サービス（緑系） ───────────── */
.pet-card-free {
	background: #f6faf2;
	border-color: #d2e0c2;
}
.pet-card-free .pet-card-icon {
	background: #fff;
}
.pet-card-free .pet-card-icon .fa {
	color: #5a7a3f;
}
.pet-card-free .pet-card-num {
	color: #b8d098;
}

/* ── カード：授与品（ベージュ系） ───────────── */
.pet-card-goods {
	background: #fdfaf3;
}

/* ── カード：年1回イベント ───────────── */
.pet-card-event {
	background: #fbf8f2;
}

/* ── フィーチャーカード（個別ご祈祷・供養） ───────────── */
.pet-feature-card {
	position: relative;
	background: #fff;
	border: 1px solid #e5dfd0;
	border-radius: 4px;
	padding: 30px 32px;
	margin-bottom: 18px;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	align-items: start;
}
.pet-feature-card-icon {
	width: 70px;
	height: 70px;
	background: #fbf8f2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #e5dfd0;
	flex-shrink: 0;
}
.pet-feature-card-icon .fa {
	font-size: 30px;
	color: #b09a6a;
}
.pet-feature-card-body {
	min-width: 0;
}
.pet-feature-card-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
	gap: 10px;
}
.pet-feature-card h2 {
	font-size: 20px;
	margin: 0;
	line-height: 1.5;
	color: #333;
}
.pet-feature-card h2 .pet-tag {
	margin-left: 8px;
	vertical-align: middle;
}
.pet-feature-card .pet-detail {
	margin-top: 4px;
}

/* ── フィーチャーカード：供養（落ち着いた色味） ───────────── */
.pet-feature-card-memorial {
	background: #f7f5f0;
	border-color: #ddd5c6;
}
.pet-feature-card-memorial .pet-feature-card-icon {
	background: #fff;
	border-color: #ccc4b3;
}
.pet-feature-card-memorial .pet-feature-card-icon .fa {
	color: #847866;
}

/* ── タグ ───────────── */
.pet-tag {
	display: inline-block;
	/*font-size: 11px;*/
	font-size: 15px;
	padding: 3px 10px;
	background: #b54040;
	color: #fff !important;
	border-radius: 2px;
	letter-spacing: 0.1em;
	vertical-align: middle;
	line-height: 1.5;
}
.pet-tag-yearly {
	background: #5a7a3f;
}

/* ── 料金 ───────────── */
.pet-price {
	/*font-size: 14px;*/
	font-size: 17px;
	color: #b54040;
	font-weight: bold;
}
.pet-price-free {
	color: #fff !important;
	background: #5a7a3f;
	padding: 3px 12px;
	border-radius: 2px;
	/*font-size: 12px;*/
	font-size: 17px;
	font-weight: normal;
}
.pet-price-large {
	font-size: 20px;
	font-weight: bold;
	color: #b54040;
	white-space: nowrap;
}

/* ── 詳細リスト ───────────── */
.pet-detail {
	list-style: none;
	padding: 12px 16px !important;
	margin: 0 !important;
	background: rgba(176, 154, 106, 0.08);
	border-left: 3px solid #b09a6a;
	border-radius: 0 2px 2px 0;
}
.pet-detail li {
	/*font-size: 13px;*/
	font-size: 17px;
	line-height: 1.9;
	padding-left: 16px;
	position: relative;
	list-style: none;
}
.pet-detail li:before {
	content: "・";
	position: absolute;
	left: 0;
	color: #b09a6a;
}

/* ── 永代供養フィーチャー（ダークブロック） ───────────── */
.pet-feature {
	margin: 60px 0 30px !important;
	background: #2c2a26;
	color: #f3ecdc;
	border-radius: 4px;
	padding: 50px 45px !important;
	position: relative;
	overflow: hidden;
}
.pet-feature:before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 280px;
	height: 280px;
	background: rgba(255,255,255,0.03);
	border-radius: 50%;
	pointer-events: none;
}
.pet-feature > * {
	position: relative;
	z-index: 1;
}
.pet-card-num-light {
	color: rgba(243, 236, 220, 0.18);
	font-size: 64px;
	top: 24px;
	right: 32px;
}
.pet-feature-icon {
	width: 70px;
	height: 70px;
	background: rgba(201, 184, 150, 0.18);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.pet-feature-icon .fa {
	font-size: 32px;
	color: #c9b896;
}
.pet-feature h2 {
	color: #f3ecdc !important;
	font-size: 26px;
	margin: 0 0 18px !important;
	padding-bottom: 14px;
	border-bottom: 1px solid #5a564d;w
}
.pet-feature > p {
	/*font-size: 15px !important;*/
	line-height: 1.9 !important;
	margin: 0 0 16px !important;
	color: #d8d0bd !important;
}
.pet-feature .pet-detail {
	background: rgba(255,255,255,0.05);
	border-left-color: #c9b896;
	margin-bottom: 24px !important;
}
.pet-feature .pet-detail li {
	color: #d8d0bd;
}
.pet-feature .pet-detail li:before {
	color: #c9b896;
}
.pet-feature-price {
	background: rgba(0,0,0,0.25);
	padding: 20px 24px;
	border-radius: 2px;
}
.pet-feature-price-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 0;
	/*gap: 16px;*/
	gap: 10px;
}
.pet-feature-price-row + .pet-feature-price-row {
	border-top: 1px dashed #5a564d;
}
.pet-feature-price-label {
	/*font-size: 14px;*/
	font-size: 20px;
	color: #d8d0bd;
}
.pet-feature-price-amount {
	/*font-size: 22px;*/
	font-size: 20px;
	font-weight: bold;
	color: #f3ecdc;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

/* ── Instagram自動表示エリア（プレースホルダ） ───────────── */
.pet-instagram-feed {
	margin-top: 20px;
}
.pet-instagram-placeholder {
	text-align: center !important;
	padding: 60px 20px !important;
	background: #f5f5f5;
	color: #999;
	font-size: 14px !important;
	border: 1px dashed #ccc;
	border-radius: 4px;
	line-height: 2 !important;
}

/* ── お問い合わせ ───────────── */
.pet-contact-list {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.pet-contact-list li {
	list-style: none;
}
.pet-contact-list li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 20px;
	background: #fff;
	border: 1px solid #e5dfd0;
	border-radius: 4px;
	text-decoration: none;
	color: #424242;
	transition: all 0.25s ease;
	text-align: center;
}
.pet-contact-list li a:hover {
	background: #fbf8f2;
	border-color: #b09a6a;
	transform: translateY(-2px);
}
.pet-contact-list li i {
	font-size: 32px;
	margin-bottom: 12px;
	color: #b09a6a;
	transition: color 0.25s ease;
}
.pet-contact-list .pet-contact-instagram a:hover i { color: #e4405f; }
.pet-contact-list .pet-contact-line a:hover i { color: #06c755; }
.pet-contact-list .pet-contact-label {
	/*font-size: 15px;*/
	font-size: 17px;
	font-weight: bold;
	display: block;
	margin-bottom: 4px;
}
section.content-section .pet-contact-list small {
	/*font-size: 12px;
	color: #888;*/
	text-transform: unset !important;
}

/* ============================================
   レスポンシブ（〜767px）
   ※ style-r.css に追記してもOK
============================================ */
@media (max-width: 767px) {
	.pet-hero {
		padding: 50px 22px !important;
	}
	.pet-hero-icon {
		font-size: 38px !important;
		margin-bottom: 12px;
	}
	.pet-hero-lead {
		/*font-size: 14px !important;*/
		line-height: 1.9 !important;
	}

	.pet-section-title {
		margin: 50px 0 22px;
	}
	.pet-section-title-label {
		/*font-size: 17px;*/
	}

	.pet-grid-2 {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.pet-card {
		/*padding: 26px 20px 20px;*/
	padding: 20px 20px;
	}
	.pet-card-num {
		font-size: 28px;
		top: 12px;
		right: 14px;
	}
	.pet-card-icon {
		width: 54px;
		height: 54px;
		margin-bottom: 14px;
	}
	.pet-card-icon .fa {
		font-size: 24px;
	}
	.pet-card h2 {
		/*font-size: 17px;*/
	}

	.pet-feature-card {
		grid-template-columns: 1fr;
		padding: 24px 22px;
		gap: 16px;
	}
	.pet-feature-card-icon {
		width: 56px;
		height: 56px;
	}
	.pet-feature-card-icon .fa {
		font-size: 24px;
	}
	.pet-feature-card-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.pet-feature-card h2 {
		/*font-size: 18px;*/
	}
	.pet-price-large {
		/*font-size: 17px;*/
	}

	.pet-feature {
		padding: 36px 24px !important;
	}
	.pet-feature h2 {
		/*font-size: 21px;*/
	}
	.pet-card-num-light {
		font-size: 48px;
		top: 16px;
		right: 18px;
	}
	.pet-feature-price-amount {
		/*font-size: 18px;*/
	}

	.pet-contact-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.pet-contact-list li a {
		flex-direction: row;
		justify-content: flex-start;
		padding: 16px 20px;
		align-items: unset;
	}
	.pet-contact-list li i {
		margin-bottom: 0;
		margin-right: 16px;
		font-size: 24px;
		min-width: 30px;
	}
	.pet-contact-list .pet-contact-label {
		text-align: left;
		margin-right: 5px;
	}
}
