/*
 * 店舗詳細ページ専用 CSS（is_singular('shop') でのみ読み込み）
 * 対象: sd-* 系（詳細レイアウト・ギャラリー・料金表・キャスト・イベント・地図・アップセル・サイドバー・関連）
 *       と shop-card-v 系（関連店舗カード 縦型 / template-parts/card-shop-related.php）
 * style.css の後に読み込む（カスケード維持）。共通部品は style.css 側に残置。
 */

.sd-bg { background: var(--grad-page); padding-bottom: 48px; }

.sd-hero { max-width: var(--w-content); margin: 0 auto; padding: 16px 16px 0; }

.sd-hero__mv {
	border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/6;
	background: linear-gradient(135deg, #f3d9ec, #ddc9f0);
}

.sd-hero__mv img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sd-hero__mv--placeholder { display: flex; }

.sd-hero__head { padding: 18px 4px 0; }

.sd-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 8px; }

.sd-hero__title { font-size: clamp(22px, 3vw, 30px); margin: 0; color: var(--c-text); }

/* 画像未設定ヒーロー（Figma 28:9045）: 全幅グラデ帯 + 中央プレースホルダー + 下部タグ/店名 */
.sd-hero--ph {
	max-width: none; margin: 0; width: 100%; box-sizing: border-box;
	min-height: clamp(300px, 26vw, 500px);
	padding: 30px 10px;
	display: flex; flex-direction: column; gap: 10px;
	background: linear-gradient(180deg, #efb6ff 0%, #f6e8ff 100%);
	border-top-left-radius: 8px; border-bottom-left-radius: 8px;
}
.sd-hero--ph .sd-hero__ph {
	flex: 1 0 0; min-height: 0;
	display: flex; align-items: center; justify-content: center;
}
.sd-hero--ph .sd-hero__ph-icon { width: 35px; height: 35px; display: block; }
.sd-hero--ph .sd-hero__head { padding: 0; }
.sd-hero--ph .sd-hero__inner {
	max-width: var(--w-content); margin: 0 auto; width: 100%;
	padding: 0 16px; box-sizing: border-box;
	display: flex; flex-direction: column; gap: 10px;
}
.sd-hero__title--ph { font-size: clamp(22px, 3vw, 30px); font-weight: 700; line-height: 1.5; color: #60425e; }

@media (max-width: 600px) {
	.sd-hero--ph { min-height: 240px; padding: 20px 0; }
	.sd-hero__title--ph { font-size: 22px; }
	.sd-block__title { font-size: 20px; padding-bottom: 10px; }
}

.sd-layout {
	max-width: var(--w-content); margin: 0 auto; padding: 24px 16px;
	display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start;
}

@media (max-width: 900px) { .sd-layout { grid-template-columns: minmax(0, 1fr); } }

.sd-main {
	background: var(--c-white); border-radius: var(--radius-md);
	box-shadow: var(--shadow-card); padding: 32px clamp(20px, 4vw, 44px);
}

.sd-block { margin-bottom: 36px; }

/* セクション内アンカーナビ（Figma 28:8902）: Bold16px #b087b5・両端揃え */
.sd-secnav {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px; margin: 0 0 32px;
}
.sd-secnav__link {
	flex: 0 0 auto; white-space: nowrap; text-decoration: none;
	font-weight: 700; font-size: 16px; line-height: 38px;
	letter-spacing: 0.25px; color: #b087b5;
	transition: color .15s ease;
}
.sd-secnav__link:hover,
.sd-secnav__link:focus-visible { color: var(--c-primary); }

/* アンカー着地時にセクション見出しが上に隠れないように余白を確保 */
.sd-block { scroll-margin-top: 24px; }

@media (max-width: 768px) {
	.sd-secnav {
		justify-content: flex-start; gap: 20px;
		overflow-x: auto; -webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}
	.sd-secnav__link { font-size: 14px; }
}

/* shop 詳細ページ内のアンカー移動をスムーズに */
html { scroll-behavior: smooth; }

.sd-block__title {
	font-size: 24px; font-weight: 900; line-height: 1.25; color: #e0558d;
	border-bottom: 1px solid #ff83bb; padding-bottom: 14px; margin: 0 0 16px;
}

.sd-tag-opt { font-size: 11px; color: var(--c-text-sub); font-weight: 400; margin-left: 6px; }

.sd-sub { font-size: 12px; color: #b087b5; margin: 0 0 10px; }

.sd-note { font-size: 12px; color: #b087b5; margin: 10px 0 0; }

.sd-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }

.sd-gallery__item { border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; background: #ffeef7; display: block; }

.sd-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

.sd-gallery__item--main { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }

/* ギャラリー空状態プレースホルダー（Figma 28:8903） */
.sd-gallery__ph { display: flex; align-items: center; justify-content: center; }
.sd-gallery__ph--main { background: linear-gradient(180deg, #efb6ff 0%, #f6e8ff 100%); }
.sd-gallery__ph-icon { width: 35px; height: 35px; display: block; }
.sd-gallery__ph-label { color: #b087b5; font-size: 12px; }

.sd-intro { font-size: 14px; line-height: 1.9; }

.sd-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.sd-table th, .sd-table td { border: 1px solid var(--c-border); padding: 10px 14px; text-align: left; vertical-align: middle; }

.sd-table th { background: #fff5fa; color: var(--c-text); font-weight: 700; white-space: nowrap; width: 30%; }

.sd-table--price th { background: var(--c-primary-light); }

.sd-table .ta-r { text-align: right; white-space: nowrap; width: auto; }

/* キャスト出勤情報（Figma 28:8981）: 7曜日 週間グリッド */
.sd-cast { display: flex; gap: 5px; width: 100%; align-items: stretch; }
.sd-cast__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; }
.sd-cast__day { background: #ffeef7; border: 1px solid #d9aac9; border-radius: 8px 8px 0 0; padding: 10px; text-align: center; font-size: 16px; font-weight: 700; line-height: 1.2; color: #60425e; white-space: nowrap; }
.sd-cast__day--today { background: #e0558d; color: #fff; }
.sd-cast__body { flex: 1 1 auto; min-height: 100px; background: #fff; border: 1px solid #d9aac9; border-top: 0; border-radius: 0 0 8px 8px; padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.sd-cast__row { display: flex; gap: 15px; align-items: center; width: 100%; font-size: 14px; line-height: 1.3; }
.sd-cast__name { flex: 0 0 auto; font-weight: 700; color: #60425e; white-space: nowrap; }
.sd-cast__time { flex: 1 1 0; min-width: 0; text-align: right; color: #a569af; }
.sd-cast__closed { margin: 0; width: 100%; text-align: center; font-size: 14px; font-weight: 700; color: #e0558d; }
@media (max-width: 700px) {
	.sd-cast { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
	.sd-cast__col { min-width: 96px; }
}

.sd-recruit__summary { font-weight: 700; margin: 0 0 8px; }

.sd-recruit__detail { font-size: 13.5px; color: var(--c-text-sub); margin: 0; }

/* イベント情報（Figma 28:8968）: #ffeef7 カード・タイトル#e0558d / 期間#b087b5 右 / 本文#604b5e */
.sd-events { display: flex; flex-direction: column; gap: 14px; }

.sd-event { background: #ffeef7; border-radius: 8px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }

.sd-event__head { display: flex; gap: 10px; align-items: flex-start; margin: 0; width: 100%; }

.sd-event__title { flex: 1 1 auto; min-width: 0; font-size: 14px; font-weight: 900; line-height: 1.3; color: #e0558d; }

.sd-event__period { flex: 0 0 auto; white-space: nowrap; text-align: right; font-size: 12px; line-height: 1.5; color: #b087b5; }

.sd-event__detail { margin: 0; font-size: 14px; line-height: 1.7; color: #604b5e; }

.sd-map { aspect-ratio: 16/7; border-radius: 8px; overflow: hidden; background: #eee; }

.sd-map iframe { width: 100%; height: 100%; }

.sd-map--placeholder { display: flex; align-items: center; justify-content: center; color: #b9a3af; background: linear-gradient(135deg,#f3d9ec,#ddc9f0); }

/* 課金誘導カード（Figma 28:9213 実値） */
.sd-upsell {
	display: flex; align-items: center; justify-content: space-between;
	background: linear-gradient(90deg, #f7e7ff 0%, #e8ccff 100%);
	border-radius: 10px; box-shadow: 0 0 2.5px #a569af;
	margin-bottom: 28px; overflow: hidden;
}

.sd-upsell__body {
	flex: 1 1 auto; min-width: 0;
	display: flex; flex-direction: column; gap: 10px; padding: 20px;
}

.sd-upsell__title {
	margin: 0; font-weight: 900; font-size: 20px; line-height: 40px; color: #e0558d;
}

.sd-upsell__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.sd-upsell__item {
	display: flex; align-items: center; gap: 19px; margin: 0;
	font-weight: 500; font-size: 15px; line-height: 15px; color: #604b5e;
}

.sd-upsell__item::before {
	content: ""; flex: 0 0 auto; width: 13px; height: 9px;
	background: url(../images/check-pink.svg) no-repeat center / contain;
}

.sd-upsell__btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	width: 300px; max-width: 100%; height: 45px; padding: 12px 20px 13px; box-sizing: border-box;
	background: #ff83bb; color: #fff !important; border-radius: 8px;
	font-weight: 700; font-size: 16px; line-height: 18px; text-decoration: none; white-space: nowrap;
}

.sd-upsell__btn-arrow {
	display: inline-block; width: 8px; height: 8px;
	border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg);
}

.sd-upsell__chara { position: relative; align-self: stretch; flex: 0 0 230px; overflow: hidden; }

.sd-upsell__chara img {
	position: absolute; top: 0; right: 0;
	height: 167%; width: auto; max-width: none; pointer-events: none;
	transform: scaleX(-1); /* Figma: scaleY(-1)+rotate180 = 横反転 */
}

@media (max-width: 600px) {
	.sd-upsell__chara { display: none; }
	.sd-upsell__item { white-space: normal; }
}

.sd-confirm { background: #f4efff; border-radius: 8px; padding: 20px; margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }

.sd-confirm__title { font-size: 14px; margin: 0; color: #60425e; font-weight: 700; letter-spacing: 0.7px; line-height: 18px; }

.sd-confirm p { font-size: 12px; color: #a569af; margin: 0; line-height: 18px; letter-spacing: 0.6px; }

.sd-confirm strong { font-weight: 700; color: #a569af; }

.sd-side__box {
	background: var(--c-white); border: 1.5px solid var(--c-primary);
	border-radius: var(--radius-md); padding: 16px 18px; margin-bottom: 16px;
}

.sd-side__box h3 { margin: 0 0 12px; font-size: 14px; color: var(--c-primary-dark); border-bottom: 1px dashed var(--c-border); padding-bottom: 8px; }

.sd-side__box ul { list-style: none; margin: 0; padding: 0; }

.sd-side__box li { margin-bottom: 8px; font-size: 13px; }

.sd-side__box a { color: var(--c-text); text-decoration: none; }

.sd-side__box a:hover { color: var(--c-accent); }

.sd-side__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }

.sd-related { max-width: var(--w-content); margin: 24px auto 0; padding: 24px 16px; }

.sd-related__sub { font-size: 12px; color: var(--c-text-sub); margin: 4px 0 0; }

.sd-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 20px; }

.sd-article { background: #fff; border: 1.5px solid var(--c-primary); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; color: var(--c-text); display: flex; flex-direction: column; }

.sd-article__thumb { height: 90px; background: linear-gradient(135deg,#f3d9ec,#ddc9f0); display: flex; align-items: center; justify-content: center; font-size: 24px; }

.sd-article__title { padding: 12px 14px; font-size: 13px; }

.sd-map--link { aspect-ratio: auto; background: #fff5fa; border: 1px dashed var(--c-primary); display: flex; align-items: center; justify-content: center; padding: 28px 16px; }

.sd-map-fallback { text-align: center; }

.sd-map-fallback__addr { font-size: 14px; margin: 0 0 14px; color: var(--c-text); }

.sd-side__box h3 { color: var(--c-primary-dark); border-bottom: 1px dashed var(--c-primary); }

.sd-side__cta { text-align: center; }

.sd-side__cta-label { font-size: 12px; color: var(--c-text-sub); margin: 0 0 6px; }

.sd-side__cta-price { font-size: 22px; font-weight: 800; color: var(--c-primary-dark); margin: 0 0 14px; }

.sd-side__cta-price span { font-size: 12px; font-weight: 400; color: var(--c-text-sub); }

.sd-side__follow {
	display: block; background: var(--grad-cta); color: #fff !important;
	padding: 12px; border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none;
}

.sd-side__more { display: inline-block; margin-top: 10px; font-size: 12.5px; color: var(--c-accent); text-decoration: none; }

.sd-side__more:hover { text-decoration: underline; }

.sd-side__taglist { list-style: none; margin: 0; padding: 0; }

.sd-side__taglist li { margin-bottom: 8px; font-size: 13.5px; }

.sd-side__taglist a { color: var(--c-text); text-decoration: none; }

.sd-side__taglist a:hover { color: var(--c-accent); }

.shop-card-v {
	display: flex; flex-direction: column;
	background: var(--c-white);
	border: 3px solid #ff83bb;
	border-radius: 8px;
	box-shadow: 0 0 2.5px #a569af;
	overflow: hidden;
	text-decoration: none; color: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}

.shop-card-v:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(165,105,175,0.28); }

.shop-card-v__media {
	position: relative;
	aspect-ratio: 360 / 200;
	background: linear-gradient(-64deg, #ffe3f2 1%, #f4ccff 99%);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}

.shop-card-v__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.shop-card-v__noimg { color: rgba(255,255,255,0.85); display: flex; }

.shop-card-v__badge {
	position: absolute; top: 12px; left: 12px;
	display: inline-flex; align-items: center;
	height: 21px; padding: 0 12px; border-radius: 100px;
	font-size: 12px; font-weight: 700; line-height: 1; letter-spacing: 0.5px;
	z-index: 2;
}

.shop-card-v__badge--pr { background: #ff83bb; color: #fff; letter-spacing: 1.6px; }

.shop-card-v__badge--free { background: rgba(255,255,255,0.92); color: var(--c-accent); border: 1px solid #ffd0e6; }

.shop-card-v__body { display: flex; flex-direction: column; gap: 10px; padding: 15px 15px 20px; }

.shop-card-v__title {
	margin: 0; font-weight: 700; font-size: 18px; line-height: 26px;
	letter-spacing: -0.56px; color: #4d4d4d;
}

.shop-card-v__concept { margin: 0; font-weight: 500; font-size: 15px; line-height: 20px; letter-spacing: -0.8px; color: #b087b5; }

.shop-card-v__address { margin: 0; display: flex; align-items: center; gap: 5px; font-size: 14px; color: #604b5e; }

.shop-card-v__pin { flex-shrink: 0; }

.shop-card-v__chips { margin: 2px 0 0; display: flex; flex-wrap: wrap; gap: 7px; }

.shop-card-v__chip {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 56px; height: 20px; padding: 0 10px; border-radius: 100px;
	font-size: 12px; font-weight: 500; line-height: 1;
}

.shop-card-v__chip--area { background: #ffeef7; color: #e0558d; }

.shop-card-v__chip--concept { background: #ffd9f8; color: #a569af; }

/* 無料: タイトル帯（Figma 28:9248）。大きなヒーロー画像枠は無し、タグ＋店名のみ */
.sd-hero--free {
	max-width: none; margin: 0; padding: 0;
	background: linear-gradient(180deg, #ffe3f2 0%, #fff5fa 100%);
}

.sd-titleband {
	max-width: var(--w-content); margin: 0 auto;
	padding: 30px clamp(16px, 4vw, 44px);
	display: flex; flex-direction: column; gap: 10px;
}

.sd-titleband__tags { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin: 0; }

.sd-titleband__chip {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 56px; height: 20px; padding: 0 10px; border-radius: 100px;
	font-size: 12px; font-weight: 500; line-height: 1; text-decoration: none;
}

.sd-titleband__chip--area { background: #ffeef7; color: #e0558d; }

.sd-titleband__chip--concept { background: #ffd9f8; color: #a569af; }

.sd-titleband__title { margin: 0; font-size: 30px; font-weight: 700; line-height: 1.5; color: #60425e; }

@media (max-width: 600px) {
	.sd-titleband { padding: 22px 18px; }
	.sd-titleband__title { font-size: 22px; }
}

/* 汎用ボタン（地図フォールバック等で使用）。upsell刷新時に誤って削除したため復元 */
.sd-btn {
	display: inline-block; background: var(--grad-cta); color: #fff !important;
	padding: 9px 24px; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none;
}

/* 営業時間（Figma 28:8921）: 曜日セル(#ffeef7)+時間セル(白)・#d9aac9 罫線のフラット表 */
.sd-hours { display: flex; flex-direction: column; width: 100%; }
.sd-hours__row { display: flex; align-items: stretch; min-height: 38px; border-top: 1px solid #d9aac9; }
.sd-hours__row:last-child { border-bottom: 1px solid #d9aac9; }
.sd-hours__day { flex: 0 0 auto; min-width: 84px; box-sizing: border-box; display: flex; align-items: center; background: #ffeef7; padding: 10px 20px; font-size: 16px; font-weight: 500; color: #60425e; white-space: nowrap; }
.sd-hours__time { flex: 1 1 0; min-width: 0; display: flex; align-items: center; background: #fff; padding: 10px 20px; font-size: 16px; color: #60425e; }
.sd-hours__time--closed { font-weight: 700; color: #b03969; }

/* 料金システム（Figma 28:8936）: ヘッダー#ffeef7 + データ行白・#d9aac9 罫線・金額#b03969 */
.sd-price { display: flex; flex-direction: column; width: 100%; font-size: 16px; }
.sd-price__row { display: flex; align-items: center; gap: 16px; padding: 10px 20px; background: #fff; border: 1px solid #d9aac9; border-bottom: 0; }
.sd-price__row:last-child { border-bottom: 1px solid #d9aac9; border-radius: 0 0 8px 8px; }
.sd-price__row--head { background: #ffeef7; border-radius: 8px 8px 0 0; }
.sd-price__name { flex: 1 1 0; min-width: 0; color: #60425e; }
.sd-price__row--head .sd-price__name { font-weight: 700; }
.sd-price__yen { flex: 0 0 auto; text-align: right; white-space: nowrap; font-weight: 700; color: #b03969; }
.sd-price__row--head .sd-price__yen { color: #60425e; }

/* 求人情報（Figma 28:8962）: リード + 案内文 + 採用情報ポップアップボタン */
.sd-recruit { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.sd-recruit__lead { margin: 0; font-size: 16px; font-weight: 700; line-height: 1.5; color: #60425e; }
.sd-recruit__note { margin: 0; font-size: 12px; line-height: 1.6; color: #b087b5; }
.sd-recruit__btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	width: min(300px, 100%); height: 45px; padding: 0 20px;
	border: 0; border-radius: 8px; cursor: pointer;
	background: linear-gradient(90deg, #fbe8f8 0%, #eac9ff 100%);
	filter: drop-shadow(0 0 2px #a569af);
	font-size: 16px; font-weight: 700; line-height: 1; color: #a569af;
}
.sd-recruit__btn:hover { filter: drop-shadow(0 0 4px #a569af); }
.sd-recruit__btn-arrow { display: inline-block; width: 8px; height: 8px; border-right: 2px solid #a569af; border-bottom: 2px solid #a569af; transform: rotate(-45deg); }

/* 採用情報ポップアップ（dialog） */
.sd-recruit-modal { border: 0; padding: 0; border-radius: 12px; max-width: 560px; width: calc(100% - 32px); box-shadow: 0 12px 44px rgba(96,66,94,.25); }
.sd-recruit-modal::backdrop { background: rgba(96,66,94,.45); }
.sd-recruit-modal__inner { position: relative; padding: 28px clamp(20px,4vw,36px); }
.sd-recruit-modal__close { position: absolute; top: 8px; right: 12px; border: 0; background: transparent; font-size: 28px; line-height: 1; color: #b087b5; cursor: pointer; }
.sd-recruit-modal__close:hover { color: #e0558d; }
.sd-recruit-modal__title { margin: 0 0 14px; font-size: 20px; font-weight: 900; color: #e0558d; }
.sd-recruit-modal__text { font-size: 14px; line-height: 1.9; color: #60425e; }
.sd-recruit-modal__poster { display: block; width: 100%; height: auto; margin-top: 16px; border-radius: 8px; }


/* 関連する店舗（Figma 28:9201）: フル幅グラデ背景 + 中央寄せ白見出し */
.sd-related--shops {
	max-width: none; margin: 0; padding: 50px 16px;
	background: linear-gradient(102.723deg, #ffc2d8 35.562%, #e9c7ff 64.438%);
}

.sd-related--shops .sd-related__head { text-align: center; margin: 0 0 50px; }

.sd-related--shops .sd-related__title {
	margin: 0 0 20px; font-size: 40px; font-weight: 700; line-height: 1;
	letter-spacing: -1.4px; color: #fff; text-shadow: 0 0 7px #9834a8;
}

.sd-related--shops .sd-related__sub {
	margin: 0; font-size: 16px; letter-spacing: -0.56px; color: #fff; text-shadow: 0 0 7px #9834a8;
}

.sd-related--shops .sd-related__grid {
	max-width: var(--w-content); margin: 0 auto;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

@media (max-width: 980px) { .sd-related--shops .sd-related__grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 560px) {
	.sd-related--shops { padding: 36px 14px; }
	.sd-related--shops .sd-related__head { margin-bottom: 32px; }
	.sd-related--shops .sd-related__title { font-size: 30px; }
	.sd-related--shops .sd-related__grid { grid-template-columns: 1fr; }
}


/* コンカフェに関する記事（Figma 19:7896）: フル幅グラデ + 白見出し + ブログカード + キャラ */
.sd-articles {
	position: relative; z-index: 1;
	background: linear-gradient(101.889deg, #ffc2d8 35.562%, #e9c7ff 64.438%);
	padding: 50px 16px 150px;
	display: flex; flex-direction: column; align-items: center; gap: 50px;
}

.sd-articles__head { text-align: center; }

.sd-articles__title {
	margin: 0 0 20px; font-size: 40px; font-weight: 700; line-height: 1;
	letter-spacing: -1.4px; color: #fff; text-shadow: 0 0 7px #9834a8;
}

.sd-articles__sub { margin: 0; font-size: 16px; letter-spacing: -0.56px; color: #fff; text-shadow: 0 0 7px #9834a8; }

.sd-articles__grid {
	width: 100%; max-width: var(--w-content); margin: 0 auto;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	position: relative; z-index: 1;
}

.blog-card {
	display: flex; flex-direction: column; min-height: 302px;
	background: #fff; border: 2px solid #ff83bb; border-radius: 10px;
	box-shadow: 0 0 2.5px #a569af; overflow: hidden;
	text-decoration: none; color: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}

.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(165,105,175,0.28); }

.blog-card__media {
	flex: 1 1 auto; min-height: 150px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(23.67deg, #fffeff 1.49%, #f5d1ff 98.51%);
}

.blog-card__media img { width: 40px; height: 40px; display: block; }

.blog-card__body { display: flex; flex-direction: column; gap: 8px; padding: 20px; }

.blog-card__badge {
	align-self: flex-start; display: inline-flex; align-items: center; justify-content: center;
	min-width: 56px; height: 20px; padding: 0 10px; border-radius: 100px;
	background: #ffeef7; color: #e0558d; font-size: 12px; font-weight: 500; line-height: 1;
}

.blog-card__title { font-size: 20px; font-weight: 700; line-height: 1.5; color: #60425e; }

.sd-articles__chara {
	position: absolute; bottom: -37px; right: max(8px, calc(50% - 600px));
	width: 210px; height: auto; pointer-events: none; z-index: 2;
}

@media (max-width: 980px) {
	.sd-articles__grid { grid-template-columns: repeat(2, 1fr); }
	.sd-articles__chara { width: 150px; }
}

@media (max-width: 560px) {
	.sd-articles { padding: 36px 14px 110px; }
	.sd-articles__title { font-size: 28px; }
	.sd-articles__grid { grid-template-columns: 1fr; }
	.sd-articles__chara { width: 110px; opacity: 0.9; }
}


/* オーナーCTA「このお店のオーナー様へ」（Figma 28:9195 実値・single専用） */
.sd-owner-cta {
	position: relative; z-index: 0;
	background: linear-gradient(90deg, #f581b5 0%, #df8cca 100%);
	padding: 60px 16px;
	display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}

.sd-owner-cta__eyebrow {
	margin: 0; font-size: 14px; font-weight: 700; letter-spacing: 0.36em;
	color: #fff; text-shadow: 0 0 4px #8a2a9a; line-height: 18px;
}

.sd-owner-cta__title {
	margin: 0; font-size: 40px; font-weight: 700; line-height: 62px;
	letter-spacing: -1.42px; color: #fff; text-shadow: 0 0 7px #9834a8;
}

.sd-owner-cta__sub {
	margin: 0; font-size: 18px; font-weight: 600; line-height: 36px;
	letter-spacing: -0.98px; color: #fff; text-shadow: 0 0 5px #a32cb7;
}

.sd-owner-cta__btn {
	margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	height: 45px; padding: 12px 20px 13px; box-sizing: border-box;
	background: #fff; color: #604b5e !important; border-radius: 100px;
	font-size: 16px; font-weight: 700; line-height: 18px; text-decoration: none;
}

.sd-owner-cta__arrow {
	display: inline-block; width: 8px; height: 8px;
	border-right: 2px solid #604b5e; border-bottom: 2px solid #604b5e; transform: rotate(-45deg);
}

@media (max-width: 560px) {
	.sd-owner-cta { padding: 44px 16px; }
	.sd-owner-cta__title { font-size: 28px; line-height: 1.4; }
	.sd-owner-cta__sub { font-size: 15px; line-height: 1.8; }
}
