/* ========================================
   世田谷区 LP A1 (setagaya-02) 専用CSS
   Figmaデザイン準拠 / モバイルファースト
   ======================================== */

/* ========== CSS変数 ========== */
/* 共通CSS（common/css/main.css）の色は var(--color-*) を直接参照し、
   setagaya02 固有の色だけローカル変数で定義 */
.setagaya02 {
	--s2-dark-green:  #21552e;                  /* ホールカード見出し帯・吹き出しバッジ等 */
	--s2-text:        #182b1e;                  /* 見出し本文の濃い緑黒（Figma準拠） */
	--s2-bg:          #f0f4f1;                  /* セクション背景の薄緑グレー */
	--s2-red-shadow:  rgba(86, 12, 29, 0.3);    /* 赤ボタンの影 */
	--s2-teal-shadow: rgba(0, 84, 27, 0.3);     /* ティールボタンの影 */

	font-family: 'Noto Sans JP', sans-serif;
	color: var(--color-primary);
	line-height: 1.625;
	overflow-x: hidden;
}

.setagaya02 *,
.setagaya02 *::before,
.setagaya02 *::after {
	box-sizing: border-box;
}

/* ========== 共通：セクション見出し ========== */
.setagaya02-section-sub {
	font-size: 14px;
	font-weight: 700;
	color: var(--s2-text);
	text-align: center;
	letter-spacing: 0.05em;
	margin: 0;
}

.setagaya02-section-sub::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url('/lp/setagaya-ku02/img/deco-slash-left.png') center / contain no-repeat;
	vertical-align: middle;
	margin-right: 8px;
}

.setagaya02-section-sub::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url('/lp/setagaya-ku02/img/deco-slash-right.png') center / contain no-repeat;
	vertical-align: middle;
	margin-left: 8px;
}

.setagaya02-section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--s2-text);
	text-align: center;
	line-height: 1.4;
	margin: 4px 0 0;
}

/* セクションサブ内バッジ */
.setagaya02-section-sub__badge {
	display: inline-block;
	background-color: var(--s2-text);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	letter-spacing: 0.05em;
	vertical-align: middle;
	line-height: 1.4;
}

/* ========== 共通：もっとみるリンク ========== */
.setagaya02-more-link {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-primary);
}

.setagaya02-more-link:hover {
	opacity: 0.75;
}

/* ========== FV（白帯 + 1枚画像） ========== */
.setagaya02-fv {
	overflow: hidden;
}

/* 上部白帯：エリアバッジ + キャッチ */
.setagaya02-fv__head {
	background: #fdfdfd;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 16px;
}

.setagaya02-fv__area-badge {
	background: var(--color-primary);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 4px 12px;
}

.setagaya02-fv__head-text {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
	letter-spacing: 0.05em;
}

.setagaya02-fv picture,
.setagaya02-fv img {
	display: block;
	width: 100%;
	height: auto;
}

/* ========== FV直下 シンプルCTA ========== */
.setagaya02-cta-simple {
	background-color: var(--s2-bg);
	padding: 16px 16px 24px;
}

.setagaya02-cta-simple .section__wrapper {
	max-width: 360px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.setagaya02-cta-simple__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 56px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
}

.setagaya02-cta-simple__btn:hover {
	opacity: 0.85;
}

.setagaya02-cta-simple__btn--tel {
	background-color: var(--color-urgent);
	box-shadow: 0 4px 16px var(--s2-red-shadow);
}

.setagaya02-cta-simple__btn--doc {
	background-color: var(--color-shiryo);
	box-shadow: 0 4px 16px var(--s2-teal-shadow);
}

.setagaya02-cta-simple__icon {
	width: 24px;
	height: 24px;
	display: block;
}

/* ========== 葬儀場一覧 ========== */
.setagaya02-halls {
	background-color: var(--s2-bg);
	padding: 40px 0;
	overflow: hidden;
}

.setagaya02-halls__head {
	padding: 0 16px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.setagaya02-halls__foot {
	padding: 16px 16px 0;
	display: flex;
	justify-content: center;
}

.setagaya02-halls__carousel {
	width: 100%;
}

.setagaya02-halls-swiper {
	padding: 8px 20px 36px !important;
	overflow: visible !important;
}

.setagaya02-halls-swiper .swiper-slide {
	width: 300px;
	height: auto;
}

.setagaya02-halls-swiper__pagination {
	bottom: 0 !important;
}

.setagaya02-halls-swiper__pagination .swiper-pagination-bullet {
	background: #ccc;
	opacity: 1;
}

.setagaya02-halls-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--color-primary);
}

/* ホールカード */
.setagaya02-hall-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 4px 4px 32px 0 rgba(0, 84, 27, 0.3);
	height: 100%;
}

.setagaya02-hall-card__header {
	background-color: var(--s2-dark-green);
	padding: 16px;
	text-align: center;
}

.setagaya02-hall-card__name {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
	letter-spacing: 0.05em;
}

.setagaya02-hall-card__photo {
	aspect-ratio: 300 / 200;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.setagaya02-hall-card__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.setagaya02-hall-card__photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 72.6%, #fff 100%);
	pointer-events: none;
}

.setagaya02-hall-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1;
	background: #fff;
}

.setagaya02-hall-card__desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--s2-text);
	line-height: 1.6;
	letter-spacing: -0.01em;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.setagaya02-hall-card__info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.setagaya02-hall-card__address,
.setagaya02-hall-card__station {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #737774;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin: 0;
}

.setagaya02-hall-card__icon {
	width: 16px;
	min-width: 16px;
	height: 16px;
	display: block;
	object-fit: contain;
	flex-shrink: 0;
	margin-top: 1px;
}

.setagaya02-hall-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.setagaya02-hall-card__badge {
	background: rgba(126, 151, 134, 0.1);
	color: var(--color-primary);
	font-size: 10px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	white-space: nowrap;
	letter-spacing: 0.05em;
}

.setagaya02-hall-card__actions {
	display: flex;
	gap: 12px;
	margin-top: auto;
}

.setagaya02-hall-card__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
}

.setagaya02-hall-card__btn-icon {
	width: 20px;
	height: 20px;
	display: block;
	flex-shrink: 0;
}

.setagaya02-hall-card__btn:hover {
	opacity: 0.8;
}

.setagaya02-hall-card__btn--tel {
	background-color: var(--color-urgent);
	color: #fff;
	border: 1px solid var(--color-urgent);
	box-shadow: 4px 4px 12px 0 var(--s2-red-shadow);
}

.setagaya02-hall-card__btn--detail {
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	background: transparent;
}

/* ========== お客様の声 ========== */
.setagaya02-voice {
	background-color: var(--s2-bg);
	padding: 48px 0;
	overflow: hidden;
}

.setagaya02-voice__head {
	text-align: center;
	padding: 0 16px;
	margin-bottom: 24px;
}

.setagaya02-voice__carousel {
	width: 100%;
}

.setagaya02-voice-swiper {
	overflow: visible !important;
	padding: 8px 16px 32px !important;
}

.setagaya02-voice-swiper .swiper-slide {
	width: 280px;
	height: auto;
}

.setagaya02-voice-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 4px 4px 20px 0 rgba(0, 84, 27, 0.15);
	padding: 20px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
}

.setagaya02-voice-card__avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: rgba(33, 85, 46, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.setagaya02-voice-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.setagaya02-voice-card__hall-badge {
	display: inline-block;
	background-color: var(--s2-dark-green);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	margin: 0;
	width: fit-content;
}

.setagaya02-voice-card__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--s2-text);
	line-height: 1.5;
	margin: 0;
}

.setagaya02-voice-card__text {
	font-size: 13px;
	color: var(--s2-text);
	line-height: 1.7;
	margin: 0;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.setagaya02-voice-card__footer {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-top: 10px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	margin-top: auto;
}

.setagaya02-voice-card__footer span {
	font-size: 12px;
	color: var(--s2-text);
}

.setagaya02-voice__foot {
	text-align: center;
	padding: 0 16px;
	margin-top: 24px;
}

.setagaya02-voice__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-primary);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 0 40px;
	height: 3em;
	border-radius: var(--border-radius-button);
	text-decoration: none;
	transition: opacity 0.2s;
}

.setagaya02-voice__cta:hover {
	opacity: 0.85;
}

/* ========== プランセクション ========== */
.setagaya02-plan {
	background-color: var(--s2-bg);
	overflow: hidden;
}

.setagaya02-plan__head {
	padding: 40px 16px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.setagaya02-plan__banner-wrap {
	display: flex;
	justify-content: center;
	padding: 0 16px 20px;
}

.setagaya02-plan__banner {
	position: relative;
	display: inline-flex;
	align-items: center;
	background-color: var(--color-shiryo);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 10px 24px;
	border-radius: 40px;
	margin: 0;
	letter-spacing: 0.03em;
	text-align: center;
}

.setagaya02-plan__banner::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--color-shiryo);
}

.setagaya02-plan__banner-num {
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	margin: 0 2px;
}

.setagaya02-plan__carousel {
	width: 100%;
	padding-top: 16px;
}

.setagaya02-plan-swiper {
	padding: 8px 16px 40px !important;
	overflow: visible !important;
}

.setagaya02-plan-swiper .swiper-wrapper {
	align-items: stretch;
}

.setagaya02-plan-swiper .swiper-slide {
	width: 320px;
	height: auto;
}

.setagaya02-plan-swiper__pagination {
	bottom: 8px !important;
}

.setagaya02-plan-swiper__pagination .swiper-pagination-bullet {
	background: #ccc;
	opacity: 1;
}

.setagaya02-plan-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--color-primary);
}

.setagaya02-plan-card {
	background-color: #fff;
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'><path d='M50,82 C25,68 5,52 5,32 C5,18 16,7 30,7 C38,7 45,11 50,18 C55,11 62,7 70,7 C84,7 95,18 95,32 C95,52 75,68 50,82Z' fill='%23ededf5'/></svg>");
	background-repeat: no-repeat;
	background-position: center 14px;
	background-size: 100px auto;
	border-radius: 16px;
	padding: 24px 20px 88px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	overflow: hidden;
	position: relative;
	height: 100%;
}

.setagaya02-plan-card__tagline {
	font-size: 15px;
	font-weight: 700;
	color: var(--s2-text);
	text-align: center;
	margin: 0;
}

.setagaya02-plan-card__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--s2-text);
	text-align: center;
	margin: 0;
	line-height: 1.3;
}

.setagaya02-plan-card__pricing {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.setagaya02-plan-card__price-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--color-urgent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.4;
	border-radius: 50px;
	padding: 5px 9px;
	flex-shrink: 0;
	min-width: 36px;
}

.setagaya02-plan-card__price {
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	color: var(--color-urgent);
	margin: 0;
	line-height: 1;
	letter-spacing: -0.02em;
	background: linear-gradient(to top, rgba(220, 130, 150, 0.22) 35%, transparent 35%);
	padding-bottom: 0;
}

.setagaya02-plan-card__ref {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
	text-align: center;
	margin: -4px 0 0;
}

.setagaya02-plan-card__recommend {
	position: relative;
	z-index: 1;
	border: 1.5px solid color-mix(in srgb, var(--plan-color) 35%, transparent);
	border-radius: 12px;
	padding: 20px 14px 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.setagaya02-plan-card__points-head {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 0 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--plan-color);
	white-space: nowrap;
	margin: 0;
}

.setagaya02-plan-card__points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.setagaya02-plan-card__point {
	font-size: 13px;
	color: var(--s2-text);
	line-height: 1.6;
}

.setagaya02-plan-card__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	z-index: 0;
}

.setagaya02-plan-card__bottom::before {
	content: '';
	position: absolute;
	inset: -12px -6px -6px;
	backdrop-filter: blur(3px);
	background: linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.55) 100%);
}

.setagaya02-plan-card__btn {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 45%;
	padding: 18px 20px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	border-radius: 16px 0 0 0;
	transition: opacity 0.2s;
	white-space: nowrap;
}

.setagaya02-plan-card__btn:hover {
	opacity: 0.85;
}

.setagaya02-plan-card--oneday {
	--plan-color: var(--color-plan-ichinichi);
	box-shadow: 7px 7px 0 color-mix(in srgb, var(--plan-color) 45%, transparent);
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'><path d='M50,82 C25,68 5,52 5,32 C5,18 16,7 30,7 C38,7 45,11 50,18 C55,11 62,7 70,7 C84,7 95,18 95,32 C95,52 75,68 50,82Z' fill='%23e8eaf3'/></svg>");
}
.setagaya02-plan-card--family {
	--plan-color: var(--color-plan-kazoku);
	box-shadow: 7px 7px 0 color-mix(in srgb, var(--plan-color) 45%, transparent);
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'><path d='M50,82 C25,68 5,52 5,32 C5,18 16,7 30,7 C38,7 45,11 50,18 C55,11 62,7 70,7 C84,7 95,18 95,32 C95,52 75,68 50,82Z' fill='%23e6f3f2'/></svg>");
}
.setagaya02-plan-card--common {
	--plan-color: var(--color-plan-ippan);
	box-shadow: 7px 7px 0 color-mix(in srgb, var(--plan-color) 45%, transparent);
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'><path d='M50,82 C25,68 5,52 5,32 C5,18 16,7 30,7 C38,7 45,11 50,18 C55,11 62,7 70,7 C84,7 95,18 95,32 C95,52 75,68 50,82Z' fill='%23f5f2e8'/></svg>");
}
.setagaya02-plan-card--cremation {
	--plan-color: var(--color-plan-kaso);
	box-shadow: 7px 7px 0 color-mix(in srgb, var(--plan-color) 45%, transparent);
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'><path d='M50,82 C25,68 5,52 5,32 C5,18 16,7 30,7 C38,7 45,11 50,18 C55,11 62,7 70,7 C84,7 95,18 95,32 C95,52 75,68 50,82Z' fill='%23f4ede8'/></svg>");
}

.setagaya02-plan-card__btn { background: var(--plan-color); }

/* ========== 大型CTAセクション ========== */
.setagaya02-cta-large {
	background-color: var(--s2-bg);
	padding: 32px 16px 40px;
}

/* プラン直後など、吹き出し付きで上下マージンをボタン基準にしたバリアント */
/* 通常CTAは padding 32px/40px。吹き出し（≒24px）が上に乗る分だけ padding-top を縮め、
   ボタン上端の位置を他CTAと揃える。padding-bottom は他CTAと同じ40px。 */
.setagaya02-cta-large--compact {
	padding-top: 8px;
	padding-bottom: 40px;
}

/* フル版：2つのボタン幅を揃える */
.setagaya02-cta-large--full .setagaya02-cta-large__item {
	width: 100%;
	max-width: 320px;
}

.setagaya02-cta-large--full .setagaya02-cta-large__btn {
	width: 100%;
	padding: 0 16px;
}

.setagaya02-cta-large .section__wrapper {
	max-width: 520px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.setagaya02-cta-large__circles {
	display: flex;
	gap: 8px;
	justify-content: center;
}

.setagaya02-cta-large__circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 84, 27, 0.12);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--s2-text);
	text-align: center;
	border: 2px solid rgba(33, 85, 46, 0.15);
}

.setagaya02-cta-large__circle-sub {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
}

.setagaya02-cta-large__circle-main {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.1;
	margin-top: 4px;
}

.setagaya02-cta-large__items {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	max-width: 320px;
}

.setagaya02-cta-large__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.setagaya02-cta-large__bubble {
	position: relative;
	background: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 20px;
	margin: 0 0 -6px;
	z-index: 1;
	white-space: nowrap;
}

.setagaya02-cta-large__bubble::after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #fff;
}

.setagaya02-cta-large__bubble--red {
	color: var(--color-urgent);
}

.setagaya02-cta-large__bubble--teal {
	color: var(--color-shiryo);
}

.setagaya02-cta-large__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 56px;
	padding: 0 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
	white-space: nowrap;
}

.setagaya02-cta-large__btn:hover {
	opacity: 0.85;
}

.setagaya02-cta-large__btn--red {
	background-color: var(--color-urgent);
	box-shadow: 4px 4px 16px var(--s2-red-shadow);
}

.setagaya02-cta-large__btn--teal {
	background-color: var(--color-shiryo);
	box-shadow: 4px 4px 16px var(--s2-teal-shadow);
}

.setagaya02-cta-large__btn-icon {
	width: 24px;
	height: 24px;
	display: block;
	flex-shrink: 0;
}

/* ========== 3つのあんしん（選ばれる理由） ========== */
.setagaya02-reasons {
	background-color: var(--s2-bg);
	padding: 48px 16px;
}

.setagaya02-reasons__head {
	text-align: center;
	margin-bottom: 24px;
}

.setagaya02-reasons__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 400px;
	margin: 0 auto;
}

.setagaya02-reason-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px 24px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 84, 27, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.setagaya02-reason-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(29, 140, 88, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.setagaya02-reason-card__icon svg {
	width: 32px;
	height: 32px;
}

.setagaya02-reason-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--s2-text);
	margin: 0;
	line-height: 1.4;
}

.setagaya02-reason-card__text {
	font-size: 14px;
	color: var(--s2-text);
	line-height: 1.7;
	margin: 0;
}

/* ========== FAQ ========== */
.setagaya02-faq {
	background-color: var(--s2-bg);
	padding: 48px 16px;
}

.setagaya02-faq__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 800px;
	margin: 0 auto;
}

.setagaya02-faq__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.setagaya02-faq-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 4px 4px 16px rgba(0, 84, 27, 0.11);
}

.setagaya02-faq-item__header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	cursor: pointer;
	list-style: none;
}

.setagaya02-faq-item__header::-webkit-details-marker {
	display: none;
}

.setagaya02-faq-item__q-badge {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 50%;
	background-color: rgba(29, 140, 88, 0.1);
	color: var(--color-primary);
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.setagaya02-faq-item__q-text {
	flex: 1;
	font-size: 14px;
	font-weight: 700;
	color: var(--s2-text);
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin: 0;
}

.setagaya02-faq-item__toggle {
	width: 24px;
	height: 24px;
	min-width: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 300;
	color: var(--color-primary);
	flex-shrink: 0;
	transition: transform 0.3s;
}

.setagaya02-faq-item[open] .setagaya02-faq-item__toggle {
	transform: rotate(45deg);
}

.setagaya02-faq-item__content {
	padding: 0 16px 16px 64px;
}

.setagaya02-faq-item__a-text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--s2-text);
	margin: 0;
}

/* ========== パンダセクション（フッター手前） ========== */
.setagaya02-panda-cta {
	background-color: var(--s2-bg);
	padding: 24px 16px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.setagaya02-panda-cta__bubble-img {
	display: block;
	width: 100%;
	max-width: 361px;
	height: auto;
}

/* パンダの下半身を次の緑フッターに沈める。
   margin-bottom を負にして次セクションを上に引き寄せ、
   z-index でパンダを背面・フッターを前面に置いて下半身を覆い隠す */
.setagaya02-panda-cta__panda {
	display: block;
	width: 140px;
	height: auto;
	margin-top: 8px;
	margin-bottom: -72px;
	position: relative;
	z-index: 0;
}

/* 緑フッターをパンダより前面に置いて下半身を覆い隠す */
.setagaya02-foot {
	position: relative;
	z-index: 1;
}

/* ========== 緑背景フッターセクション ========== */
.setagaya02-foot {
	background-color: var(--color-primary);
	/* sticky CTA（footer.css の #scrollButton、SP≒80-100px / PC≒100px）と重ならないよう
	   下に余白を確保 */
	padding: 32px 16px 130px;
	color: #fff;
}

.setagaya02-foot__inner {
	max-width: 480px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.setagaya02-foot__logo {
	display: block;
	width: 200px;
	height: auto;
}

.setagaya02-foot__tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.setagaya02-foot__tel-icon {
	width: 28px;
	height: 28px;
	display: block;
	flex-shrink: 0;
}

.setagaya02-foot__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.setagaya02-foot__link {
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.setagaya02-foot__link:hover {
	opacity: 0.8;
}

.setagaya02-foot__copy {
	margin: 0;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

/* ========================================
   PC対応 (min-width: 768px)
   ======================================== */
@media screen and (min-width: 768px) {

	/* 各セクション横幅制限 */
	.setagaya02-halls__head,
	.setagaya02-halls__foot,
	.setagaya02-voice__head,
	.setagaya02-voice__foot,
	.setagaya02-faq__body {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}

	/* FV：PCではコンテンツ最大幅で */
	.setagaya02-fv__inner {
		max-width: 720px;
		margin: 0 auto;
		padding: 32px 16px 48px;
	}

	.setagaya02-fv__hero {
		max-width: 480px;
	}

	/* ホールカルーセル */
	.setagaya02-halls__carousel {
		max-width: 1030px;
		margin: 0 auto;
		overflow: hidden;
	}

	.setagaya02-halls-swiper {
		padding: 12px 40px 40px !important;
	}

	.setagaya02-halls-swiper .swiper-slide {
		width: 380px;
	}

	/* プランカルーセル */
	.setagaya02-plan__carousel {
		max-width: 1030px;
		margin: 0 auto;
		overflow: hidden;
	}

	.setagaya02-plan-swiper {
		padding: 8px 40px 40px !important;
	}

	.setagaya02-plan-swiper .swiper-slide {
		width: 360px;
	}

	/* Voice カルーセル */
	.setagaya02-voice__carousel {
		max-width: 1030px;
		margin: 0 auto;
		overflow: hidden;
	}

	.setagaya02-voice-swiper {
		padding: 8px 40px 32px !important;
	}

	.setagaya02-voice-swiper .swiper-slide {
		width: 340px;
	}

	/* シンプルCTA：横並び */
	.setagaya02-cta-simple .section__wrapper {
		flex-direction: row;
		max-width: 720px;
		gap: 24px;
	}

	/* 3つのあんしん：横並び */
	.setagaya02-reasons__list {
		flex-direction: row;
		max-width: 1030px;
		gap: 24px;
	}

	.setagaya02-reason-card {
		flex: 1;
	}

	/* 大型CTA：ボタン横並び */
	.setagaya02-cta-large .section__wrapper {
		max-width: 800px;
	}

	.setagaya02-cta-large__items {
		flex-direction: row;
		max-width: 720px;
		gap: 24px;
	}

	.setagaya02-cta-large__item {
		flex: 1;
	}
}
