/* ===== ヘッダー ===== */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 16px;
}

/* ロゴ */
.site-logo { display: flex; align-items: center; }

.site-logo__img {
	height: 42px;
	width: auto;
	display: block;
}

/* ハンバーガー */
.site-header__toggle-input { display: none; }

.site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
	border-radius: var(--radius);
	transition: background var(--transition);
}

.site-header__toggle:hover { background: var(--color-primary-light); }

.site-header__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform .25s, opacity .25s;
}

/* ナビ（PC） */
.site-header__nav { width: auto; }

.site-header__menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 0;
	margin: 0;
	padding: 0;
}

/* 通常リンク */
.nav-item > a {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
	border-radius: var(--radius);
	transition: color var(--transition);
	white-space: nowrap;
}

.nav-item > a:hover,
.nav-item > a.is-current {
	color: var(--color-accent);
	text-decoration: none;
}

/* ドロップダウン親アイテム */
.nav-item--dropdown {
	position: relative;
}

.nav-sub-input { display: none; }

/* PC: ラベルをリンク風に */
.nav-dropdown-label {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	cursor: default;
	white-space: nowrap;
	border-radius: var(--radius);
	transition: color var(--transition);
	user-select: none;
}

.nav-chevron {
	transition: transform .2s;
}

.nav-item--dropdown:hover .nav-dropdown-label,
.nav-sub-input:checked ~ .nav-dropdown-label {
	color: var(--color-accent);
}

/* ドロップダウンメニュー（PC hover） */
.nav-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
	min-width: 180px;
	padding: 8px 0;
	list-style: none;
	z-index: 300;
}

.nav-item--dropdown:hover .nav-dropdown {
	display: block;
}

.nav-dropdown li a {
	display: block;
	padding: 10px 18px;
	font-size: 14px;
	color: var(--color-text);
	text-decoration: none;
	transition: background var(--transition), color var(--transition);
}

.nav-dropdown li a:hover {
	background: rgba(214, 51, 108, .06);
	color: var(--color-accent);
}

/* LINEボタン */
.site-header__line-btn {
	background: #06C755 !important;
	color: #fff !important;
	border-radius: var(--radius-pill) !important;
	padding: 8px 16px !important;
	margin-left: 8px;
	font-size: 13px !important;
}

.site-header__line-btn:hover {
	opacity: .88;
	color: #fff !important;
	text-decoration: none;
}

/* ===== モバイルヘッダー ===== */
@media (max-width: 768px) {
	.site-logo__img { height: 36px; }

	.site-header__toggle { display: flex; }

	.site-header__nav {
		position: absolute;
		top: 64px;
		left: 0;
		width: 100%;
		background: #fff;
		border-top: 1px solid var(--color-border);
		box-shadow: 0 8px 16px rgba(0,0,0,.08);
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease;
		order: 3;
		z-index: 199;
	}

	.site-header__toggle-input:checked ~ .site-header__nav {
		max-height: 80vh;
		overflow-y: auto;
	}

	.site-header__menu {
		flex-direction: column;
		align-items: stretch;
		padding: 8px 0 16px;
	}

	.nav-item > a {
		padding: 14px 20px;
		border-radius: 0;
		border-bottom: 1px solid var(--color-border);
		font-size: 15px;
	}

	.nav-item > a:hover,
	.nav-item > a.is-current {
		background: rgba(214, 51, 108, .05);
	}

	/* スマホ：ドロップダウンはチェックボックスで開閉 */
	.nav-item--dropdown { position: static; }

	.nav-dropdown-label {
		padding: 14px 20px;
		font-size: 15px;
		border-bottom: 1px solid var(--color-border);
		cursor: pointer;
		justify-content: space-between;
	}

	.nav-dropdown-label:hover {
		background: rgba(214, 51, 108, .05);
	}

	.nav-sub-input:checked ~ .nav-dropdown-label .nav-chevron {
		transform: rotate(180deg);
	}

	/* スマホ：hover ではなく checkbox で開閉 */
	.nav-item--dropdown:hover .nav-dropdown {
		display: none;
	}

	.nav-sub-input:checked ~ .nav-dropdown {
		display: block;
	}

	.nav-dropdown {
		position: static;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background: var(--color-primary-light);
		padding: 4px 0;
	}

	.nav-dropdown li a {
		padding: 10px 32px;
		font-size: 14px;
		border-bottom: 1px solid rgba(0,0,0,.04);
	}

	.site-header__line-btn {
		margin: 12px 20px 4px;
		display: block;
		text-align: center;
		border-radius: var(--radius-pill) !important;
	}
}

/* ===== フッター ===== */
.site-footer {
	background: #fff;
	border-top: 1px solid var(--color-border);
	padding: 48px 0 0;
	margin-top: 48px;
}

.footer-main {
	text-align: center;
	padding-bottom: 40px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}

.footer-logo img {
	height: 60px;
	width: auto;
}

.footer-tagline {
	font-size: 13px;
	color: var(--color-text-muted);
	margin: 0 0 20px;
	letter-spacing: .05em;
}

.footer-contact {
	font-style: normal;
	font-size: 14px;
	line-height: 2;
	color: var(--color-text);
	margin-bottom: 28px;
}

.footer-nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px 16px;
	font-size: 13px;
}

.footer-nav-links a {
	color: var(--color-text-muted);
	transition: color var(--transition);
}

.footer-nav-links a:hover {
	color: var(--color-accent);
	text-decoration: none;
}

.footer-nav-links span {
	color: var(--color-border);
}

.footer-copy {
	border-top: 1px solid var(--color-border);
	padding: 16px 0;
	text-align: center;
	font-size: 12px;
	color: var(--color-text-muted);
}

.footer-copy p {
	margin: 0;
}

/* ===== ヒーロー ===== */
.hero {
	position: relative;
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 48px 0 56px;
	text-align: center;
}

.hero--voucher {
	background-color: var(--color-voucher);
}

.hero--campaign {
	background-color: var(--color-campaign);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .4);
}

/* ===== 画像ヒーロー（完成バナー画像＝コピー・イラスト／直下にHTMLボタン・検索窓） ===== */
/* .hero 基底＋PC用メディアクエリの padding を確実に打ち消すため specificity を上げる。 */
.hero.hero--image {
	background: none;
	padding: 0;
	min-height: 0;
	display: block;
}

/* バナー画像本体。16:9 で原則フル表示（クロップなし）。超ワイドのみ上下を軽くクロップ。 */
.hero__banner {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 820px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
}

/* 画像直下のアクション帯（ボタン・検索窓）。重なりを避け、確実に操作できる。 */
.hero__actions {
	background: var(--color-bg);
	padding: 24px 0 32px;
	text-align: center;
}

.hero__actions .hero__btns {
	margin: 0;
}

.hero__actions .hero__search {
	margin: 20px 0 0;
}

/* 画面読み上げ・SEO用の非表示見出し（WP標準の screen-reader-text 相当） */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

@media (max-width: 767px) {
	/* スマホは縦長になりすぎないよう高さを抑え、中央コピーを見せる。 */
	.hero__banner {
		aspect-ratio: auto;
		height: 56vw;
		min-height: 220px;
		max-height: 360px;
	}
}

/* 写真ヒーロー（明るい福井駅前写真＋濃色テキスト・モックアップ準拠） */
.hero--photo {
	color: var(--color-text);
	padding: 88px 0 96px;
	overflow: hidden;
}

.hero--photo .hero__overlay {
	background:
		radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .5) 40%, rgba(255, 255, 255, .12) 75%);
}

.hero--photo .hero__inner {
	max-width: 820px;
}

.hero--photo .hero__lead {
	color: var(--color-text);
	font-size: var(--font-size-lg);
	margin: 0 0 4px;
}

.hero--photo .hero__search .shop-search__label {
	color: var(--color-text);
}

.hero__accent {
	color: var(--color-accent);
}

/* 2行見出し（モックアップ準拠：1行目は小さめ、2行目の「お得」を特大マゼンタ） */
.hero__title--photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	margin: 0 0 14px;
	line-height: 1.15;
}

.hero__title-sub {
	font-size: clamp(20px, 3.4vw, 30px);
	font-weight: 700;
	color: var(--color-text);
}

.hero__title-main {
	font-size: clamp(34px, 7vw, 60px);
	font-weight: 700;
	letter-spacing: .01em;
}

.hero__title--photo .hero__accent {
	font-size: 1.35em;
}

/* 装飾アイコン（白い線画・PCのみ表示） */
.hero__decor {
	display: none;
}

@media (min-width: 768px) {
	.hero__decor {
		display: block;
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
	}

	.hero__decor-icon {
		position: absolute;
		opacity: .85;
		filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .15));
	}

	.hero__decor-icon--fork   { width: 30px; height: 30px; top: 24%; left: 22%; transform: rotate(-12deg); }
	.hero__decor-icon--cup    { width: 34px; height: 34px; top: 50%; left: 16%; transform: rotate(8deg); }
	.hero__decor-icon--ticket { width: 40px; height: 40px; top: 26%; right: 20%; transform: rotate(14deg); }
	.hero__decor-icon--bag    { width: 32px; height: 32px; top: 50%; right: 17%; transform: rotate(-8deg); }
	.hero__decor-icon--star1  { width: 22px; height: 22px; top: 16%; right: 30%; }
	.hero__decor-icon--star2  { width: 16px; height: 16px; top: 60%; right: 28%; }
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 480px;
	margin: 0 auto;
}

.hero__title {
	font-size: var(--font-size-xl);
	margin: 0 0 12px;
	white-space: pre-line;
	font-weight: 700;
}

.hero--photo .hero__title {
	font-size: clamp(28px, 6vw, 48px);
	line-height: 1.25;
}

.hero__lead {
	font-size: var(--font-size-base);
	margin: 0 0 8px;
}

/* ヒーローボタン（プレビュー用） */
.hero__btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 24px 0 8px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	border-radius: var(--radius-pill);
	font-size: var(--font-size-base);
	font-weight: 700;
	transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
	box-shadow: var(--shadow);
}

.hero-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	text-decoration: none;
}

.hero-btn--primary {
	background: var(--color-accent);
	color: #fff;
}

.hero-btn--outline {
	background: #fff;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
}

/* モード別アクセント色（通常＝ピンク／お買い物券＝暖色オレンジ／LINEクーポン＝LINEグリーン） */
.hero--voucher .hero__accent {
	color: var(--color-voucher);
}

.hero--voucher .hero-btn--primary {
	background: var(--color-voucher);
}

.hero--voucher .hero-btn--outline {
	color: var(--color-voucher);
	border-color: var(--color-voucher);
}

.hero-btn--line {
	background: #06c755;
	color: #fff;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.hero-btn--line:hover { background: #05b34b; color: #fff; }

.hero--campaign .hero__accent {
	color: var(--color-campaign);
}

.hero--campaign .hero-btn--primary {
	background: var(--color-campaign);
}

.hero--campaign .hero-btn--outline {
	color: var(--color-campaign);
	border-color: var(--color-campaign);
}

/* リボン見出し（サブコピーをモード色の帯で表示・モックアップ準拠） */
.hero__eyebrow {
	display: inline-block;
	background: var(--color-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 7px 22px;
	border-radius: var(--radius-pill);
	margin: 0 0 14px;
	letter-spacing: .03em;
}

.hero--voucher .hero__eyebrow {
	background: var(--color-voucher);
}

.hero--campaign .hero__eyebrow {
	background: var(--color-campaign);
}

/* 利用期間 */
.hero__period {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 14px 0 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--color-text);
}

.hero__period-label {
	background: var(--color-text);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: var(--radius-pill);
}

/* 金額・割引バッジ */
.hero__badge {
	display: inline-block;
	margin: 14px 0 0;
	background: #fff;
	border: 2px dashed var(--color-voucher);
	color: var(--color-voucher);
	font-size: var(--font-size-lg);
	font-weight: 700;
	padding: 10px 24px;
	border-radius: var(--radius);
}

.hero--campaign .hero__badge {
	border-color: var(--color-campaign);
	color: var(--color-campaign);
}

.hero-btn__icon {
	font-size: 1.1em;
	line-height: 1;
}

.hero-btn__chevron {
	font-size: 1.2em;
	line-height: 1;
	margin-left: 4px;
}

.hero__amount {
	display: inline-block;
	background: rgba(255, 255, 255, .2);
	border-radius: var(--radius-pill);
	padding: 8px 20px;
	font-size: var(--font-size-base);
	font-weight: 600;
	margin: 8px 0 24px;
}

.hero__search {
	margin: 28px 0 0;
}

/* ヒーロー内の検索窓は負マージンを使わない（ボタンと重ならないように） */
.hero__search .shop-search {
	margin: 0 auto;
}

.hero__search .shop-search__label {
	color: #fff;
}

.hero--photo .hero__search .shop-search__label {
	color: var(--color-text);
}

.hero__search .shop-search__input {
	font-size: var(--font-size-lg);
}

@media (min-width: 768px) {
	.hero {
		padding: 72px 0;
	}

	.hero__inner {
		max-width: 600px;
	}
}

/* ===== 店舗名検索 ===== */
.shop-search {
	margin: -28px auto 0;
	max-width: 600px;
	position: relative;
	z-index: 2;
}

.shop-search__label {
	display: block;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .08em;
	margin-bottom: 10px;
	color: var(--color-text);
}

.shop-search__row {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: var(--radius-pill);
	border: 2px solid rgba(214, 51, 108, .35);
	padding: 7px 7px 7px 22px;
	box-shadow: 0 4px 16px rgba(214, 51, 108, .08);
	transition: box-shadow var(--transition), border-color var(--transition);
}

.shop-search__row:focus-within {
	border-color: var(--color-accent);
	box-shadow: 0 4px 20px rgba(214, 51, 108, .18), 0 0 0 3px var(--color-primary-light);
}

.shop-search__icon {
	flex: 0 0 auto;
	color: var(--color-text-muted);
}

.shop-search__input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: var(--font-size-base);
	outline: none;
	min-width: 0;
	color: var(--color-text);
}

.shop-search__input::placeholder {
	color: #b0b0b0;
}

/* 検索の虫眼鏡を消す（type=search のネイティブ装飾） */
.shop-search__input::-webkit-search-decoration,
.shop-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
}

.shop-search__submit {
	background: transparent;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
	border-radius: var(--radius-pill);
	padding: 11px 32px;
	font-size: var(--font-size-base);
	font-weight: 700;
	letter-spacing: .05em;
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition), transform var(--transition);
}

.shop-search__submit:hover {
	background: var(--color-accent);
	color: #fff;
	transform: translateY(-1px);
}

.section--archive .shop-search {
	margin: 0 0 8px;
	max-width: none;
}

.shop-search__result-info {
	margin: 0 0 24px;
	color: var(--color-text-muted);
}

.shop-search__result-info a {
	margin-left: 8px;
}

/* ===== セクション共通 ===== */
.section {
	padding: 64px 0;
}

.section--gray {
	background: var(--color-primary-light);
}

.section__title {
	font-size: var(--font-size-lg);
	margin: 0 0 24px;
	font-weight: 700;
}

.section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.section__header .section__title {
	margin-bottom: 0;
}

.section__header-link {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 600;
}

.section__more {
	text-align: center;
	margin-top: 24px;
}

.section__more-link {
	display: inline-block;
	background: var(--color-accent);
	color: #fff;
	padding: 14px 36px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	transition: background var(--transition);
}

.section__more-link:hover {
	background: #b5275a;
}

/* セクションヘッダー（ピルラベル付き） */
.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.section-header__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .15em;
	color: var(--color-accent);
	background: rgba(214, 51, 108, .08);
	padding: 4px 14px;
	border-radius: var(--radius-pill);
	margin-bottom: 10px;
}

.section-header__title {
	font-size: clamp(22px, 4vw, 32px);
	font-weight: 700;
	line-height: 1.3;
}

.section-header__desc {
	margin-top: 10px;
	color: var(--color-text-muted);
	font-size: 14px;
}

/* ===== エリアカード ===== */
.area-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (min-width: 600px) {
	.area-grid {
		grid-template-columns: repeat(2, minmax(0, 280px));
		justify-content: center;
		gap: 24px;
	}
}

.area-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 24px 16px;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	border: 2px solid transparent;
	color: var(--color-text);
}

@media (min-width: 600px) {
	.area-card {
		padding: 36px 40px;
	}
}

.area-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
	border-color: var(--color-primary);
}

.area-card__name {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}

@media (min-width: 600px) {
	.area-card__name {
		font-size: 18px;
	}
}

.area-card__count {
	font-size: 13px;
	color: var(--color-text-muted);
}

/* ===== 業種バッジ ===== */
/* ===== 券種カード ===== */
.coupon-type-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 600px) {
	.coupon-type-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.coupon-type-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--color-bg);
	border: 2px solid var(--color-border);
	border-radius: var(--radius);
	padding: 24px;
	font-weight: 600;
	font-size: var(--font-size-base);
	color: var(--color-text);
	transition: border-color var(--transition), box-shadow var(--transition);
	box-shadow: var(--shadow);
}

.coupon-type-card:hover {
	border-color: var(--color-primary);
	box-shadow: var(--shadow-hover);
}

.coupon-type-card__label {
	font-weight: 700;
}

/* ===== フィルターバー ===== */
.filter-bar {
	background: var(--color-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 20px 24px;
	margin-bottom: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.filter-bar__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-text-muted);
	white-space: nowrap;
}

.filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	flex: 1;
}

.filter-btn {
	padding: 6px 16px;
	border-radius: var(--radius-pill);
	font-size: 13px;
	font-weight: 600;
	border: 1.5px solid var(--color-border);
	background: var(--color-bg);
	color: var(--color-text);
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
	text-decoration: none;
	display: inline-block;
}

.filter-btn:hover,
.filter-btn.is-active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

.filter-divider {
	width: 1px;
	height: 32px;
	background: var(--color-border);
}

@media (max-width: 768px) {
	.filter-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.filter-divider {
		width: 100%;
		height: 1px;
	}
}

/* ===== ページヘッダー（タクソノミーアーカイブ） ===== */
.page-header {
	background: var(--color-primary-light);
	padding: 16px 0 20px;
	border-bottom: 2px solid rgba(214, 51, 108, .15);
}

.page-header__title {
	font-size: clamp(20px, 3.5vw, 26px);
	font-weight: 700;
	color: var(--color-text);
	margin: 4px 0 0;
}

.page-header__desc {
	color: var(--color-text-muted);
	font-size: 13px;
	margin-top: 4px;
}

.breadcrumb {
	padding: 6px 0 0;
	font-size: 13px;
	color: var(--color-text-muted);
	display: flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumb a {
	color: var(--color-accent);
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* ===== 店舗グリッド／カード ===== */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}

.shop-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
}

.shop-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.shop-card__link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: var(--color-text);
}

.shop-card__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--color-primary-light), rgba(214, 51, 108, .08));
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	flex-shrink: 0;
}

.shop-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.shop-card__thumb .shop-card__thumb--logo {
	width: 52px !important;
	height: 52px !important;
	object-fit: contain;
	opacity: 0.15;
	filter: grayscale(1);
}

/* バッジ：fupo.jp風リボンデザイン */
.shop-card__badge {
	position: absolute;
	top: 10px;
	left: 0;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px 4px 10px;
	border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
	z-index: 2;
	white-space: nowrap;
	background: var(--color-badge);
	box-shadow: 2px 2px 6px rgba(0,0,0,.18);
	letter-spacing: .03em;
}

.shop-card__badge--line {
	background: var(--color-campaign);
}

.shop-card__badge--voucher {
	background: var(--color-voucher);
}

.shop-card__body {
	padding: 14px 16px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* 登録日 */
.shop-card__date {
	font-size: 12px;
	color: var(--color-text-muted);
	margin: 0 0 6px;
}

/* エリア・業種メタ（リンク） */
.shop-card__meta {
	font-size: 12px;
	color: var(--color-text-muted);
	margin: 0 0 8px;
	line-height: 1.4;
}

.shop-card__meta-link {
	color: var(--color-primary-dark);
	text-decoration: none;
	position: relative;
	z-index: 1;
}

.shop-card__meta-link:hover {
	color: var(--color-accent);
	text-decoration: underline;
}

.shop-card__meta-sep {
	color: var(--color-text-muted);
}

/* 紹介文抜粋 */
.shop-card__excerpt {
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 住所 */
.shop-card__address {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	font-size: 12px;
	color: var(--color-text-muted);
	margin: auto 0 0;
	padding-top: 10px;
}

.shop-card__address svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* タグ（詳細ページ・フィルター用に残す） */
.tag {
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 6px;
}

.tag--area {
	background: rgba(74, 124, 89, .12);
	color: var(--color-primary-dark);
}

.tag--industry {
	background: var(--color-primary-light);
	color: var(--color-text-muted);
}

.tag--service {
	background: rgba(6, 199, 85, .12);
	color: #059952;
	font-weight: 700;
}

.shop-card__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
	pointer-events: none;
}

/* ===== 注目のお店（横スクロール） ===== */
.shop-grid--scroll {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}

.shop-grid--scroll .shop-card {
	flex: 0 0 200px;
	scroll-snap-align: start;
}

@media (min-width: 600px) {
	.shop-grid--scroll .shop-card {
		flex: 0 0 220px;
	}
}

@media (min-width: 900px) {
	.shop-grid--scroll .shop-card {
		flex: 0 0 240px;
	}
}

.shop-grid--dense {
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.shop-grid--dense .shop-card__link {
	flex-direction: row;
}

.shop-grid--dense .shop-card__thumb {
	width: 90px;
	height: auto;
	flex: 0 0 90px;
	min-height: 80px;
}

.shop-grid--dense .shop-card__body {
	flex: 1;
	padding: 10px 12px;
	min-width: 0;
}

.shop-grid--dense .shop-card__title {
	font-size: 13px;
	margin: 0;
}

.shop-grid--dense .shop-card__meta {
	font-size: 10px;
	margin-bottom: 4px;
}

.shop-grid--dense .shop-card__badge {
	font-size: 10px;
	padding: 2px 7px;
}

@media (min-width: 600px) {
	.shop-grid--dense {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 900px) {
	.shop-grid--dense {
		grid-template-columns: repeat(5, 1fr);
	}

	.shop-grid--dense .shop-card__link {
		flex-direction: column;
	}

	.shop-grid--dense .shop-card__thumb {
		width: 100%;
		flex: none;
		height: 120px;
	}
}

@media (max-width: 768px) {
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.shop-grid--scroll {
		grid-template-columns: 1fr;
	}
}

/* ===== お知らせ ===== */
.notice-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--color-border);
}

.notice-list__item {
	border-bottom: 1px solid var(--color-border);
}

.notice-list__item a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 4px;
	color: var(--color-text);
	transition: color var(--transition);
}

.notice-list__item a:hover {
	color: var(--color-primary);
}

.notice-list__date {
	color: var(--color-text-muted);
	font-size: 14px;
	flex: 0 0 56px;
}

.notice-list__title {
	flex: 1;
}

.notice-list__arrow {
	color: var(--color-text-muted);
}

/* ===== ページネーション ===== */
.pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	white-space: nowrap;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 600;
	border: 1.5px solid var(--color-border);
	transition: all var(--transition);
}

.pagination a:hover,
.pagination .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* ===== no-results ===== */
.no-results {
	text-align: center;
	padding: 60px 20px;
	color: var(--color-text-muted);
}

.no-results p {
	font-size: 16px;
	margin-bottom: 16px;
}

/* ===== 店舗詳細 ===== */
.shop-layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

.shop-hero-img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: var(--radius);
	margin-bottom: 28px;
}

.shop-hero-placeholder {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, var(--color-primary-light), rgba(214, 51, 108, .08));
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 88px;
	margin-bottom: 28px;
}

.shop-detail__tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.shop-detail__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}

.shop-intro {
	font-size: 15px;
	line-height: 1.9;
	color: var(--color-text);
	margin: 20px 0 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

/* サイドバーカード */
.info-card {
	background: var(--color-bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	margin-bottom: 20px;
}

.info-card__header {
	background: #333;
	color: #fff;
	padding: 12px 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .05em;
	display: flex;
	align-items: center;
	gap: 6px;
}

.info-card__body {
	padding: 16px 18px;
}

.info-row {
	display: flex;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 14px;
	align-items: flex-start;
}

.info-row:last-child {
	border-bottom: none;
}

.info-row__label {
	color: var(--color-text-muted);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	min-width: 64px;
	padding-top: 2px;
}

.info-row__value {
	flex: 1;
	line-height: 1.5;
}

.info-row__value a {
	color: var(--color-primary);
}

.info-row__value a:hover {
	text-decoration: underline;
}

/* SNSリンク */
.sns-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.sns-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 18px;
	border-radius: var(--radius-pill);
	font-size: 13px;
	font-weight: 600;
	transition: opacity var(--transition), transform var(--transition);
	color: #fff;
}

.sns-link:hover {
	opacity: .85;
	transform: translateY(-2px);
}

.sns-link--instagram {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sns-link--twitter {
	background: #000000;
}

.sns-link--facebook {
	background: #1877F2;
}

.sns-link--line {
	background: #06C755;
}

.sns-link--tiktok {
	background: #010101;
}

.sns-link--web {
	background: var(--color-primary);
}

/* 地図ボタン */
.map-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 11px;
	border-radius: var(--radius);
	background: var(--color-primary-light);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text);
	transition: background var(--transition);
}

.map-btn:hover {
	background: var(--color-border);
}

/* ギャラリー */
.shop-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.shop-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
}

/* プレミアムバッジ */
.tag--premium {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: linear-gradient(135deg, #f5a623 0%, #e8721c 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 4px 10px;
	border-radius: 6px;
}

/* お買い物券タグ（voucherモード時・タグ行に表示） */
.tag--voucher {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: linear-gradient(135deg, #bf5a10 0%, #e8721c 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 4px 10px;
	border-radius: 6px;
}

/* 店舗情報ヘッダー内プレミアムバッジ */
.info-card__header {
	justify-content: space-between;
}

.info-card__header-left {
	display: flex;
	align-items: center;
	gap: 6px;
}

.info-card__premium-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255,255,255,.2);
	border: 1px solid rgba(255,255,255,.4);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: .04em;
}

/* 店舗詳細セクション見出し */
.shop-section-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	border-left: 3px solid var(--color-primary);
	padding-left: 10px;
	margin: 28px 0 14px;
}

/* クーポン種別バッジ（サイドバー） */
.coupon-type-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Googleマップ */
.shop-map {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--color-border);
	margin-bottom: 8px;
}

/* 一覧に戻るリンク */
.shop-back-link {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	padding: 12px;
	border-radius: var(--radius);
	border: 1.5px solid var(--color-border);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition);
}

.shop-back-link:hover {
	background: var(--color-primary-light);
	border-color: var(--color-primary);
	text-decoration: none;
}

/* スマホ：カードをシンプル化（紹介文・住所を非表示）、縦積みレイアウト */
@media (max-width: 599px) {
	.shop-card__excerpt,
	.shop-card__address {
		display: none;
	}

	.shop-card__body {
		padding: 10px 12px 12px;
	}

	.shop-card__title {
		font-size: 14px;
	}

	.shop-card__meta {
		font-size: 11px;
		margin-bottom: 0;
	}

	/* dense グリッド：モバイルは1列 */
	.shop-grid--dense {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	/* dense カードはモバイルでも画像上・テキスト下の縦積み */
	.shop-grid--dense .shop-card__link {
		flex-direction: column;
	}

	.shop-grid--dense .shop-card__thumb {
		width: 100%;
		flex: none;
		aspect-ratio: 16 / 9;
		min-height: unset;
	}

	.shop-grid--dense .shop-card__body {
		padding: 8px 10px 10px;
	}

	.shop-grid--dense .shop-card__title {
		font-size: 13px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (max-width: 768px) {
	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-sidebar {
		order: -1;
	}

	.shop-hero-img,
	.shop-hero-placeholder {
		height: 220px;
	}
}

/* ===== ヒーロー直下アナウンス帯 ===== */
.announce-bar {
	background: #f0f0f0;
	border-top: 1px solid #d8d8d8;
	border-bottom: 1px solid #d8d8d8;
	padding: 13px 0;
}

.announce-bar__text {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #222;
	line-height: 1.6;
	border-left: 3px solid #555;
	padding-left: 14px;
}

.announce-bar__icon {
	display: flex;
	flex-shrink: 0;
	color: #444;
}

@media (max-width: 767px) {
	.announce-bar__text {
		font-size: 14px;
	}
}

/* ===== バナー広告エリア ===== */
.banner-ad-area {
	background: #f5f5f5;
	border-top: 1px solid var(--color-border);
	padding: 28px 0;
}

.banner-ad-area__label {
	font-size: 11px;
	font-weight: 600;
	color: var(--color-text-muted);
	letter-spacing: .08em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 14px;
}

.banner-ad-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.banner-ad-item {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	transition: opacity var(--transition), box-shadow var(--transition);
	box-shadow: var(--shadow);
	background: var(--color-border);
}

.banner-ad-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.banner-ad-item:hover {
	opacity: .85;
	box-shadow: var(--shadow-hover);
	text-decoration: none;
}

.banner-ad-item--nolink {
	cursor: default;
}

.banner-ad-item--nolink:hover {
	opacity: 1;
	box-shadow: var(--shadow);
}

@media (max-width: 767px) {
	.banner-ad-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* ===== ユーティリティ ===== */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* =================================================================
   ポップデザイン（案1）— トップページ専用
   基本カラー: #d6336c / セクション背景: #fff7fb / 角丸: 24px/18px
================================================================= */

/* ── ヒーロー（グラデーション・イラスト） ── */
.hero-pop {
	position: relative;
	overflow: hidden;
	padding: 80px 0 88px;
	text-align: center;
	background: linear-gradient(160deg, #fff7fb 0%, #fce9f2 40%, #fdf5fb 80%, #fff7fb 100%);
	border-bottom: 1px solid rgba(214, 51, 108, .08);
}

.hero-pop--voucher {
	background: linear-gradient(160deg, #fff8f0 0%, #fde8d4 40%, #fff5ee 100%);
}

.hero-pop--campaign {
	background: linear-gradient(160deg, #f0fbf5 0%, #d4f3e4 40%, #edfaf4 100%);
}

/* 紙吹雪SVG */
.hero-pop__confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-pop__confetti-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* フローティングイラスト */
.hero-pop__floats {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.hero-pop__float {
	position: absolute;
	filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}

@keyframes pop-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%       { transform: translateY(-12px) rotate(4deg); }
}
@keyframes pop-float-r {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%       { transform: translateY(-10px) rotate(-5deg); }
}

.hero-pop__float--station {
	bottom: 10%;
	right: 4%;
	animation: pop-float 7s ease-in-out infinite;
}

.hero-pop__float--dino {
	bottom: 8%;
	left: 2%;
	animation: pop-float-r 8s ease-in-out infinite 1s;
}

.hero-pop__float--coffee {
	top: 14%;
	right: 14%;
	animation: pop-float 6s ease-in-out infinite .5s;
}

.hero-pop__float--bag {
	top: 18%;
	left: 12%;
	animation: pop-float-r 9s ease-in-out infinite 2s;
}

.hero-pop__float--street {
	bottom: 5%;
	left: 28%;
	animation: pop-float 10s ease-in-out infinite .8s;
}

@media (max-width: 768px) {
	.hero-pop__float--street,
	.hero-pop__float--coffee { display: none; }
	.hero-pop__float--dino   { width: 80px; }
	.hero-pop__float--station { width: 66px; }
	.hero-pop__float--bag    { width: 58px; top: 10%; left: 6%; }
}

/* ヒーロー本文 */
.hero-pop__inner {
	position: relative;
	z-index: 2;
	max-width: 560px;
	margin: 0 auto;
}

/* アイキャッチリボン */
.hero-pop__eyebrow {
	display: inline-block;
	background: #d6336c;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 6px 20px;
	border-radius: 999px;
	margin: 0 0 20px;
	letter-spacing: .04em;
}

.hero-pop--voucher .hero-pop__eyebrow { background: var(--color-voucher); }
.hero-pop--campaign .hero-pop__eyebrow { background: var(--color-campaign); }

/* メイン見出し */
.hero-pop__title {
	font-size: clamp(32px, 7vw, 54px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: .02em;
	color: var(--color-text);
	margin: 0 0 18px;
}

.hero-pop__accent {
	color: #d6336c;
}

/* 金額バッジ */
.hero-pop__amount {
	display: inline-block;
	background: #fff;
	border: 3px solid #d6336c;
	color: #d6336c;
	font-size: 18px;
	font-weight: 900;
	padding: 8px 24px;
	border-radius: 12px;
	margin: 0 0 16px;
	box-shadow: 0 4px 12px rgba(214,51,108,.15);
}

/* 利用期間 */
.hero-pop__period {
	font-size: 13px;
	color: var(--color-text-muted);
	margin: 0 0 20px;
}
.hero-pop__period-label {
	background: rgba(214,51,108,.1);
	color: #d6336c;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	margin-right: 6px;
}

/* ヒーローボタン */
.hero-pop__btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 28px;
}

/* ヒーロー検索欄 */
.hero-pop__search {
	background: rgba(255,255,255,.85);
	border-radius: 20px;
	padding: 4px;
	box-shadow: 0 4px 20px rgba(214,51,108,.12);
}

@media (max-width: 768px) {
	.hero-pop { padding: 56px 0 64px; }
}

/* ── ポップボタン ── */
.pop-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 14px 32px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .18s, box-shadow .18s, opacity .18s;
	cursor: pointer;
}

.pop-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.pop-btn--primary {
	background: #d6336c;
	color: #fff;
	box-shadow: 0 4px 16px rgba(214,51,108,.35);
}

.pop-btn--primary:hover {
	opacity: .9;
	box-shadow: 0 6px 22px rgba(214,51,108,.45);
	color: #fff;
}

.pop-btn--outline {
	background: #fff;
	color: #d6336c;
	border: 2px solid #d6336c;
	box-shadow: 0 2px 8px rgba(214,51,108,.12);
}

.pop-btn--outline:hover {
	background: #fce9f2;
	color: #d6336c;
}

.pop-btn--line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #06c755;
	color: #fff;
	border: none;
}
.pop-btn--line:hover { background: #05b34b; color: #fff; }

/* ── ポップセクション共通 ── */
.pop-section {
	padding: 64px 0;
}

.pop-section--white {
	background: #fff;
}

.pop-section--pink {
	background: #fff7fb;
}

/* セクションヘッダー（中央） */
.pop-section__hd {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

/* 左揃えヘッダー（お知らせ等） */
.pop-section__hd--left {
	justify-content: space-between;
}

.pop-section__title {
	font-size: clamp(20px, 3.5vw, 26px);
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	position: relative;
}

/* 見出しの下線デコレーション */
.pop-section__title::after {
	content: '';
	display: block;
	width: 40px;
	height: 4px;
	background: #d6336c;
	border-radius: 999px;
	margin: 8px auto 0;
}

.pop-section__hd--left .pop-section__title::after {
	margin: 8px 0 0;
}

.pop-section__sparkle {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.pop-section__desc {
	width: 100%;
	text-align: center;
	color: var(--color-text-muted);
	font-size: 14px;
	margin: 8px 0 0;
}

.pop-section__more-link {
	font-size: 14px;
	color: #d6336c;
	font-weight: 600;
	white-space: nowrap;
	align-self: flex-end;
	margin-bottom: 4px;
}

.pop-section__empty {
	text-align: center;
	color: var(--color-text-muted);
}

@media (max-width: 768px) {
	.pop-section { padding: 48px 0; }
}

/* ── エリアアイコングリッド ── */
.area-icon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 150px));
	gap: 20px;
	justify-content: center;
}

.area-icon-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	text-decoration: none;
	color: var(--color-text);
	transition: transform .2s;
}

.area-icon-card:hover {
	transform: translateY(-4px);
	text-decoration: none;
	color: var(--color-text);
}

.area-icon-card__circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow .2s;
	padding: 20px;
}

.area-icon-card:hover .area-icon-card__circle {
	box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.area-icon-card__circle svg {
	width: 80px;
	height: 80px;
}

.area-icon-card__name {
	font-size: 13px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

.area-icon-card__count {
	display: inline-block;
	background: rgba(214,51,108,.1);
	color: #d6336c;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
}

@media (max-width: 600px) {
	.area-icon-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
	.area-icon-card__circle {
		width: 80px;
		height: 80px;
		padding: 14px;
	}
	.area-icon-card__circle svg {
		width: 52px;
		height: 52px;
	}
}

@media (max-width: 380px) {
	.area-icon-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── 業種カード（ポップ） ── */
.cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 160px));
	gap: 14px;
	justify-content: center;
	max-width: 840px;
	margin: 0 auto;
}

/* エリアグリッド：常に2列 */
.area-card-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 640px;
}

.area-card-grid .cat-badge {
	padding: 24px 16px;
	font-size: 15px;
}

.area-card-grid .cat-badge__name {
	font-size: 16px;
	margin-bottom: 6px;
}

@media (min-width: 600px) {
	.area-card-grid {
		grid-template-columns: repeat(2, minmax(0, 280px));
		gap: 24px;
	}
	.area-card-grid .cat-badge {
		padding: 36px 40px;
		font-size: 16px;
	}
	.area-card-grid .cat-badge__name {
		font-size: 18px;
	}
}

/* 業種グリッド：1行固定（5列） */
.cat-grid--row1 {
	grid-template-columns: repeat(5, 1fr);
	max-width: 900px;
}

@media (max-width: 600px) {
	.cat-grid--row1 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cat-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 12px;
	border-radius: 18px;
	font-size: 14px;
	font-weight: 700;
	border: 2px solid rgba(214,51,108,.2);
	background: #fff;
	color: var(--color-text);
	text-align: center;
	box-shadow: 0 2px 8px rgba(214,51,108,.07);
	transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
	text-decoration: none;
	line-height: 1.4;
}

.cat-badge__name {
	display: block;
	font-size: 14px;
	font-weight: 700;
}

.cat-badge__count {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #d6336c;
	margin-top: 4px;
	opacity: .9;
}

.cat-badge:hover {
	background: #d6336c;
	color: #fff;
	border-color: #d6336c;
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(214,51,108,.25);
	text-decoration: none;
}

.cat-badge:hover .cat-badge__count {
	color: rgba(255,255,255,.85);
}

@media (max-width: 600px) {
	.cat-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	.cat-badge {
		padding: 16px 8px;
		font-size: 13px;
		border-radius: 14px;
	}
}

@media (max-width: 380px) {
	.cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── クーポンセクション ── */
.pop-coupon-wrap {
	background: #fff;
	border-radius: 24px;
	padding: 48px 40px;
	box-shadow: 0 2px 16px rgba(214,51,108,.08);
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

.pop-coupon__ticket-icon {
	display: block;
	margin: 0 auto 12px;
}

.pop-coupon-types {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin: 24px 0;
}

.pop-coupon-type-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	background: #d6336c;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(214,51,108,.3);
	transition: opacity .18s, transform .18s;
}

.pop-coupon-type-btn:hover {
	opacity: .88;
	transform: translateY(-2px);
	color: #fff;
	text-decoration: none;
}

.pop-coupon-search {
	margin-top: 20px;
}

@media (max-width: 600px) {
	.pop-coupon-wrap {
		padding: 32px 20px;
		border-radius: 18px;
	}
}

/* ── お知らせリスト ── */
.pop-notice-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pop-notice-list__item {
	border-bottom: 1px solid rgba(214,51,108,.1);
}

.pop-notice-list__item:first-child {
	border-top: 1px solid rgba(214,51,108,.1);
}

.pop-notice-list__item a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 4px;
	color: var(--color-text);
	text-decoration: none;
	transition: background .15s;
}

.pop-notice-list__item a:hover {
	background: #fff7fb;
	color: var(--color-text);
	text-decoration: none;
}

.pop-notice__date {
	flex-shrink: 0;
	font-size: 13px;
	color: var(--color-text-muted);
	font-weight: 600;
	min-width: 80px;
}

.pop-notice__title {
	flex: 1;
	font-size: 15px;
}

.pop-notice__arrow {
	flex-shrink: 0;
	font-size: 18px;
	color: #d6336c;
}

/* ── 注目のお店グリッドのカード調整 ── */
.pop-section .shop-card {
	border-radius: 18px;
	overflow: hidden;
}

.pop-section .shop-card__thumb {
	border-radius: 0;
}

.pop-section .shop-card__excerpt {
	display: none;
}

/* ── section__more ボタン override ── */
.pop-section .section__more {
	margin-top: 32px;
}

/* ── スマホ用 pop-section__hd 調整 ── */
@media (max-width: 600px) {
	.pop-section__hd--left {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}
.mb-40 { margin-bottom: 40px; }

/* ── 店舗詳細ページ ─────────────────────────────── */

/* タグ+タイトル共通ヘッダー（2カラム外） */
.shop-header {
	margin-bottom: 20px;
}

/* モード連動クーポンバナー */
.shop-coupon-banner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 28px;
	border-radius: 16px;
	margin-bottom: 28px;
}

.shop-coupon-banner--line {
	background: linear-gradient(135deg, #04a649 0%, #06c755 100%);
	color: #fff;
}

.shop-coupon-banner--voucher {
	background: linear-gradient(135deg, #bf5a10 0%, #e8721c 100%);
	color: #fff;
}

.shop-coupon-banner__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.shop-coupon-banner__body {
	flex: 1;
}

.shop-coupon-banner__label {
	font-size: clamp(16px, 2.2vw, 20px);
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

.shop-coupon-banner__sub {
	font-size: 13px;
	margin: 4px 0 0;
	opacity: .85;
}

.shop-coupon-banner__btn {
	flex-shrink: 0;
	display: inline-block;
	background: #fff;
	color: #06c755;
	font-weight: 700;
	font-size: 14px;
	padding: 12px 22px;
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity .2s;
}

.shop-coupon-banner--voucher .shop-coupon-banner__btn {
	color: #bf5a10;
}

.shop-coupon-banner__btn:hover {
	opacity: .85;
	text-decoration: none;
}

/* スマホ: 縦並び */
@media (max-width: 640px) {
	.shop-coupon-banner {
		flex-direction: column;
		text-align: center;
		gap: 14px;
		padding: 20px;
	}
	.shop-coupon-banner__btn {
		width: 100%;
		text-align: center;
	}
}

/* スマホ並び順: 本文(写真+紹介文)を先、サイドバー(店舗情報+MAP)を後に */
@media (max-width: 768px) {
	.shop-layout {
		display: flex;
		flex-direction: column;
		/* 縦積み時は子要素を全幅に伸ばす。align-items:start だと縦長画像の
		   実寸幅(例:165px)に列全体が縮んで画像が小さく表示される不具合を防ぐ。 */
		align-items: stretch;
	}
	.shop-main    { order: 1; }
	.shop-sidebar { order: 2; }
}

/* MAPボタン・戻るリンクのモノトーン調整 */
.map-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	background: #f5f5f5;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
	text-decoration: none;
	transition: background .15s;
}

.map-btn:hover {
	background: #ebebeb;
	text-decoration: none;
}

.shop-back-link {
	display: block;
	text-align: center;
	color: #555;
	font-size: 14px;
	margin-top: 20px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	text-decoration: none;
	transition: background .15s;
}

.shop-back-link:hover {
	background: #f5f5f5;
	text-decoration: none;
}

/* ── 店舗情報カード内リンク ─────────────────────── */

/* 住所 → Googleマップリンク */
.info-map-link {
	color: var(--color-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
.info-map-link:hover { opacity: .75; }

/* 電話リンク（PC: カーソルデフォルト / スマホ: タップリンク） */
.info-tel-link {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
}
@media (max-width: 768px) {
	.info-tel-link {
		color: var(--color-accent);
		text-decoration: underline;
		text-underline-offset: 2px;
	}
}

/* ウェブサイトリンク */
.info-url-link {
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 600;
}
.info-url-link:hover { opacity: .75; text-decoration: none; }

/* SNSリンク一覧（縦並び） */
.info-sns-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.info-sns-link {
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	padding: 2px 0;
}

.info-sns-link--instagram { color: #c13584; }
.info-sns-link--twitter   { color: #1d9bf0; }
.info-sns-link--facebook  { color: #1877f2; }
.info-sns-link--line      { color: #06c755; }
.info-sns-link--tiktok    { color: #010101; }

.info-sns-link:hover { opacity: .75; text-decoration: underline; }

/* ── スマホ: サイドバー全幅 ─────────────────────── */
@media (max-width: 768px) {
	.shop-sidebar {
		width: 100%;
	}
	.info-card {
		width: 100%;
		border-radius: var(--radius);
	}
	.shop-map {
		border-radius: var(--radius);
		overflow: hidden;
	}
	.shop-map iframe {
		width: 100%;
		height: 220px;
	}
}

/* ── メイン画像バッジオーバーレイ ─────────────────── */
.shop-hero-wrap {
	position: relative;
	margin-bottom: 28px;
}

.shop-hero-wrap .shop-hero-img,
.shop-hero-wrap .shop-hero-placeholder {
	margin-bottom: 0;
}

.shop-hero-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	backdrop-filter: blur(4px);
	box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.shop-hero-badge--voucher {
	background: linear-gradient(135deg, #bf5a10 0%, #e8721c 100%);
	color: #fff;
}

/* ── フローティングLINEカード ─────────────────────── */
.line-float-card {
	position: fixed;
	right: 20px;
	bottom: 32px;
	z-index: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	width: 240px;
	background: #fff;
	border: 2px solid #06c755;
	outline: 1px solid rgba(6,199,85,.25);
	outline-offset: 3px;
	border-radius: 14px;
	box-shadow: 0 4px 20px rgba(0,0,0,.12);
	text-decoration: none;
	color: var(--color-text);
	transition: transform .2s, box-shadow .2s;
}

.line-float-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0,0,0,.15);
	text-decoration: none;
	color: var(--color-text);
}

.line-float-card__icon {
	flex-shrink: 0;
	display: flex;
}

.line-float-card__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.line-float-card__main {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	color: #222;
}

.line-float-card__sub {
	font-size: 11px;
	color: #06c755;
	font-weight: 700;
}

.line-float-card__arrow {
	display: inline-block;
	transition: transform .2s;
}

.line-float-card:hover .line-float-card__arrow {
	transform: translateX(3px);
}

/* スマホ: 画面最下部に全幅バー */
@media (max-width: 768px) {
	.line-float-card {
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		border-radius: 0;
		border: none;
		border-top: 3px solid #06c755;
		outline: none;
		box-shadow: 0 -2px 12px rgba(0,0,0,.1);
		background: #fff;
		padding: 10px 20px;
		justify-content: center;
		gap: 10px;
	}

	.line-float-card__main {
		font-size: 13px;
	}

	/* スマホ下部バー分のpadding確保 */
	body {
		padding-bottom: 60px;
	}
}

/* ================================================================
   ▼ プレミアムレイアウト
   ================================================================ */

/* ── ヒーロー ── */
.premium-hero {
	position: relative;
	min-height: 420px;
	background: #222 center/cover no-repeat;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.premium-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}

.premium-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 48px;
	padding-bottom: 48px;
}

.shop-detail__tags--hero .tag {
	color: #fff;
	border-color: rgba(255,255,255,.6);
	background: rgba(0,0,0,.25);
}

.shop-detail__tags--hero .tag--voucher {
	background: var(--color-voucher);
	border-color: transparent;
}

.tag--premium-hero {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 700;
	border-radius: 6px;
	background: linear-gradient(135deg, #f5d020, #f5a623);
	color: #5a3a00;
	border: 1px solid rgba(255,255,255,.4);
}

.premium-hero__title {
	margin: 12px 0 8px;
	font-size: clamp(28px, 5vw, 48px);
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.premium-hero__catch {
	margin: 0;
	font-size: clamp(13px, 2vw, 16px);
	color: rgba(255,255,255,.9);
	line-height: 1.7;
	text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* プレミアムバッジ（右下） */
.premium-hero__badge {
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f5d020, #e8940a);
	color: #5a3a00;
	font-size: 10px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	border: 3px solid rgba(255,255,255,.6);
	box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* 装飾ダイヤ */
.premium-hero__deco {
	position: absolute;
	font-size: 14px;
	opacity: .7;
	pointer-events: none;
	animation: deco-float 4s ease-in-out infinite;
}
.premium-hero__deco--1 { top: 15%; left: 5%;  color: #f5d020; font-size: 18px; animation-delay: 0s; }
.premium-hero__deco--2 { top: 10%; right: 18%; color: #ff6eb4; font-size: 12px; animation-delay: 1s; }
.premium-hero__deco--3 { bottom: 30%; left: 12%; color: #7ecef4; font-size: 10px; animation-delay: 2s; }
.premium-hero__deco--4 { top: 40%; right: 8%; color: #f5d020; font-size: 16px; animation-delay: .5s; }

@keyframes deco-float {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-6px); }
}

/* ── セクション共通 ── */
.premium-body {
	background: #fff;
	padding: 0 0 40px;
}

.premium-section {
	padding: 40px 0;
	border-bottom: 1px solid #f0f0f0;
}

.premium-section:last-of-type {
	border-bottom: none;
}

.premium-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.premium-section__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 20px;
	font-weight: 800;
	color: var(--color-text);
	margin: 0;
}

.premium-section__sparkle {
	color: var(--color-accent);
	font-size: 14px;
}

.premium-section__link {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--color-accent);
	font-weight: 600;
	white-space: nowrap;
}

.premium-badge-pill {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 20px;
	background: var(--color-accent);
	color: #fff;
}

/* ── 店舗紹介 ── */
.premium-intro-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

.premium-intro__text {
	font-size: 15px;
	line-height: 1.9;
	color: var(--color-text);
}

/* ギャラリースライダー */
.premium-gallery-slider {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.premium-gallery-slider__track {
	display: flex;
	gap: 6px;
	will-change: transform;
}

.premium-gallery-slider__slide {
	flex: 0 0 calc(50% - 3px);
	min-width: calc(50% - 3px);
	aspect-ratio: 4/3;
}

.premium-gallery-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.premium-gallery-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 0 4px;
}

.premium-gallery-slider__prev,
.premium-gallery-slider__next {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	transition: background .2s;
}

.premium-gallery-slider__prev:hover,
.premium-gallery-slider__next:hover {
	background: #f5f5f5;
}

.premium-gallery-slider__dots {
	display: flex;
	gap: 5px;
}

.premium-gallery-slider__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ccc;
	transition: background .2s;
}

.premium-gallery-slider__dot.is-active {
	background: var(--color-accent);
}

/* ── LINEクーポン ── */
.premium-section--coupon {
	background: linear-gradient(135deg, #f0fff5 0%, #fff 100%);
	border-radius: 16px;
	padding: 32px;
	margin: 0 -20px;
	border-bottom: none;
}

/* LINE友達追加リンク（セクションヘッダー右に小さく） */
.premium-line-friend-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 700;
	color: #06c755;
	border: 1.5px solid #06c755;
	border-radius: 20px;
	padding: 5px 14px;
	white-space: nowrap;
	text-decoration: none;
	transition: background .2s, color .2s;
}

.premium-line-friend-link:hover {
	background: #06c755;
	color: #fff;
	text-decoration: none;
}

.premium-coupon-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.premium-coupon-card {
	background: #fff;
	border: 2px solid #06c755;
	border-radius: 12px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: center;
}

.premium-coupon-card__num {
	background: #06c755;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 6px;
	border-radius: 4px;
	letter-spacing: .05em;
}

.premium-coupon-card__title {
	font-size: 14px;
	font-weight: 800;
	color: var(--color-accent);
	line-height: 1.4;
	flex: 1;
}

.premium-coupon-card__valid {
	font-size: 10px;
	color: #888;
	line-height: 1.5;
}

.premium-coupon-card__btn {
	display: block;
	background: #06c755;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 7px 4px;
	border-radius: 8px;
	text-decoration: none;
	margin-top: 4px;
	transition: opacity .2s;
}

.premium-coupon-card__btn:hover {
	opacity: .85;
	color: #fff;
	text-decoration: none;
}

.premium-coupon-card__btn--disabled {
	background: #ccc;
	cursor: default;
}

.premium-coupon-note {
	font-size: 11px;
	color: #888;
	margin-top: 12px;
}

/* ── お知らせ（横長リスト） ── */
.premium-news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
}

.premium-news-row {
	display: grid;
	grid-template-columns: 90px 1fr 2fr 80px;
	gap: 0;
	align-items: stretch;
	border-bottom: 1px solid #eee;
	min-height: 80px;
}

.premium-news-row:last-child {
	border-bottom: none;
}

.premium-news-row__img {
	width: 90px;
	flex-shrink: 0;
	overflow: hidden;
	background: #f5f5f5;
}

.premium-news-row__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.premium-news-row__img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 80px;
	background: linear-gradient(135deg, #fce9f2, #f5f5f5);
}

.premium-news-row__img--clickable {
	cursor: zoom-in;
	position: relative;
}

.premium-news-row__img--clickable::after {
	content: '🔍';
	position: absolute;
	bottom: 4px;
	right: 4px;
	font-size: 12px;
	opacity: .7;
}

.premium-news-row__title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	padding: 14px 12px;
	display: flex;
	align-items: center;
	border-right: 1px solid #f0f0f0;
}

.premium-news-row__excerpt {
	font-size: 12px;
	color: #666;
	line-height: 1.6;
	padding: 14px 12px;
	display: flex;
	align-items: center;
	border-right: 1px solid #f0f0f0;
}

.premium-news-row__date {
	font-size: 11px;
	color: #aaa;
	padding: 14px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
}

/* ── 画像モーダル ── */
.news-modal {
	position: fixed;
	inset: 0;
	z-index: 9000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-modal[hidden] {
	display: none;
}

.news-modal {
	cursor: pointer;
	background: rgba(0,0,0,.72);
}

.news-modal__content {
	cursor: default;
}

.news-modal__content {
	position: relative;
	z-index: 1;
	max-width: 92vw;
	width: 480px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.news-modal__img {
	width: 100%;
	max-height: 60vh;
	object-fit: contain;
	background: #f0f0f0;
	display: block;
}

.news-modal__body {
	padding: 20px;
	overflow-y: auto;
}

.news-modal__date {
	font-size: 12px;
	color: #aaa;
	margin-bottom: 6px;
}

.news-modal__title {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 12px;
	line-height: 1.5;
}

.news-modal__excerpt {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	white-space: pre-line;
}

.news-modal__close {
	display: block;
	margin: 12px 0 0 auto;
	padding: 8px 16px;
	background: #f0f0f0;
	border: none;
	border-radius: 20px;
	color: #555;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.premium-news-row {
	cursor: pointer;
}
.premium-news-row:hover {
	background: #f9f9f9;
}

@media (max-width: 768px) {
	.premium-news-row {
		grid-template-columns: 72px 1fr 80px;
	}

	.premium-news-row__excerpt {
		display: none;
	}

	.premium-news-row__img {
		width: 72px;
	}
}

/* ── 店舗情報（横並び） ── */
.premium-info-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.premium-map-wrap {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #eee;
}

.premium-map-wrap iframe {
	display: block;
	width: 100%;
	min-height: 300px;
}

.premium-map-wrap .map-btn {
	border-radius: 0;
}

/* ── SNSアイコン ── */
.premium-sns-icons {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.premium-sns-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid #eee;
	background: #f8f8f8;
	color: #444;
	transition: background .2s, color .2s, border-color .2s;
	text-decoration: none;
}

.premium-sns-icon:hover {
	text-decoration: none;
}

.premium-sns-icon--instagram { color: #e1306c; }
.premium-sns-icon--instagram:hover { background: #e1306c; color: #fff; border-color: #e1306c; }
.premium-sns-icon--twitter:hover { background: #000; color: #fff; border-color: #000; }
.premium-sns-icon--facebook { color: #1877f2; }
.premium-sns-icon--facebook:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.premium-sns-icon--line:hover { background: #06c755; border-color: #06c755; }
.premium-sns-icon--tiktok:hover { background: #000; color: #fff; border-color: #000; }

/* ── レスポンシブ ── */
@media (max-width: 768px) {
	.premium-hero {
		min-height: 300px;
	}

	.premium-hero__badge {
		width: 64px;
		height: 64px;
		font-size: 9px;
		right: 12px;
		bottom: 12px;
	}

	.premium-intro-wrap {
		grid-template-columns: 1fr;
	}

	.premium-coupon-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.premium-news-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.premium-info-wrap {
		grid-template-columns: 1fr;
	}

	.premium-section--coupon {
		margin: 0 -16px;
		border-radius: 0;
	}
}

@media (max-width: 480px) {
	.premium-coupon-grid {
		grid-template-columns: 1fr 1fr;
	}

	.premium-news-grid {
		grid-template-columns: 1fr;
	}
}

/* ── 紹介文ブロック（プレミアム） ── */
.intro-blocks { display: flex; flex-direction: column; gap: 40px; padding: 24px; }
.intro-block { display: flex; flex-direction: column; gap: 16px; }
.intro-block__img img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 8px;
}
.intro-block__text {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	white-space: pre-line;
}
@media (min-width: 768px) {
	.intro-block { flex-direction: row; align-items: flex-start; gap: 28px; }
	.intro-block__img { flex: 0 0 45%; }
	.intro-block__text { flex: 1; padding-top: 8px; }
	.intro-block:nth-child(even) { flex-direction: row-reverse; }
	/* スマホは上下も逆（テキスト→画像の順） */
}

/* ================================================================
   お買い物券キャンペーンセクション
   ================================================================ */
.voucher-campaign {
	background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
	border-top: 4px solid #e8721c;
	padding: 48px 0;
}

/* キャッチコピー */
.voucher-campaign__catch {
	margin-bottom: 40px;
	text-align: center;
}
.voucher-campaign__headline {
	font-size: clamp(20px, 3.5vw, 34px);
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1.5;
}
.voucher-campaign__highlight {
	position: relative;
	display: inline;
}
.voucher-campaign__highlight::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.35em;
	background: #e8b84b;
	z-index: -1;
	border-radius: 2px;
}

/* ステップ */
.voucher-campaign__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.voucher-step {
	background: #fff;
	border-radius: 20px;
	border: 2px solid #e0e0e0;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
	padding: 44px 16px 20px;
	width: 155px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
/* リボン風ラベル（左上） */
.voucher-step__ribbon {
	position: absolute;
	top: 0;
	left: 0;
	background: #e8721c;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	padding: 5px 14px 5px 12px;
	border-radius: 0 0 14px 0;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
}
.voucher-step--line .voucher-step__ribbon  { background: #06c755; }
.voucher-step--draw .voucher-step__ribbon  { background: #f0b429; color: #5a3e00; }
.voucher-step--win  .voucher-step__ribbon  { background: #f0b429; color: #5a3e00; }
.voucher-step--goal .voucher-step__ribbon  { background: #e8234a; }
.voucher-step__icon {
	font-size: 36px;
	line-height: 1;
	margin-bottom: 10px;
	display: block;
}
.voucher-step__title {
	font-size: 15px;
	font-weight: 900;
	color: #1a1a1a;
	margin-bottom: 6px;
	line-height: 1.4;
}
.voucher-step__desc {
	font-size: 12px;
	color: #666;
	line-height: 1.6;
}
.voucher-step__arrow {
	display: flex;
	align-items: center;
	font-size: 28px;
	color: #ccc;
	font-weight: 900;
	flex-shrink: 0;
	line-height: 1;
}
@media (max-width: 599px) {
	.voucher-step { width: calc(50% - 36px); padding: 40px 10px 16px; }
	.voucher-step__icon { font-size: 28px; }
	.voucher-step__title { font-size: 13px; }
	.voucher-step__ribbon { font-size: 11px; padding: 4px 10px 4px 8px; }
	.voucher-step__arrow { font-size: 20px; }
}

/* 詳細情報 */
.voucher-campaign__info {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	margin-bottom: 32px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.voucher-info-table { display: flex; flex-direction: column; }
.voucher-info-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid #eee;
}
.voucher-info-row:last-child { border-bottom: none; }
.voucher-info-label {
	background: #1e2d4e;
	color: #fff;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	white-space: nowrap;
	min-width: 90px;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 1.5;
	flex-shrink: 0;
}
.voucher-info-val { flex: 1; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.voucher-info-main {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1.2;
}
.voucher-price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.voucher-price-prefix { font-size: 18px; font-weight: 700; color: #1a1a1a; }
.voucher-price-main {
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1;
	letter-spacing: -0.02em;
}
.voucher-price-badge-border {
	border: 2px solid #1a1a1a;
	border-radius: 8px;
	padding: 6px 14px;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.5;
	white-space: nowrap;
}
.voucher-price-badge-border strong { font-size: 22px; }
.voucher-price-badge-gold {
	background: #f0b429;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 900;
	color: #5a3e00;
	text-align: center;
	white-space: nowrap;
	line-height: 1.5;
}
.voucher-info-note { font-size: 12px; color: #777; line-height: 1.7; }
@media (max-width: 599px) {
	.voucher-info-label { font-size: 12px; min-width: 72px; padding: 5px 10px; }
	.voucher-info-main { font-size: 18px; }
	.voucher-price-row { gap: 8px; }
}

/* CTAボタン */
.voucher-hero-cta {
	background: #f5f5e8;
	padding: 20px 16px;
	text-align: center;
}
.voucher-campaign__cta {
	text-align: center;
}
.voucher-campaign__cta-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.voucher-cta-btn--outline {
	background: #fff !important;
	color: #222 !important;
	border: 2px solid #f97316;
	box-shadow: 0 4px 16px rgba(249,115,22,.2);
}
.voucher-cta-btn--outline:hover {
	background: #fff7f0 !important;
	color: #222 !important;
	box-shadow: 0 8px 24px rgba(249,115,22,.3);
}
.voucher-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #06c755;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	padding: 18px 40px;
	border-radius: 60px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(6,199,85,.35);
	transition: transform 0.15s, box-shadow 0.15s;
}
.voucher-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(6,199,85,.45);
}
.voucher-cta-btn__note {
	font-size: 12px;
	color: #888;
	margin-top: 8px;
}

@media (max-width: 599px) {
	.voucher-campaign__headline { font-size: 18px; }
	.voucher-cta-btn { font-size: 15px; padding: 16px 24px; }
}
