/* ===== スクロールフェードイン ===== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ===== ヒーロー ===== */
section.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	min-height: 100svh;
	padding-block: 0;
	overflow: hidden;
	background: #FFD23F;
}

/* ヒーロースライドショー */
.hero__bg {
	position: absolute;
	inset: 0;
	background: #2c1a08;
}

.hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.hero__slide.is-active {
	opacity: 1;
}

/* SP画像（〜767px） */
@media (max-width: 767px) {
	.hero__slide:nth-child(1) { background-image: url('../images/hero-1_sp.jpg'); }
	.hero__slide:nth-child(2) { background-image: url('../images/hero-2_sp.jpg'); }
	.hero__slide:nth-child(3) { background-image: url('../images/hero-3_sp.jpg'); }
	.hero__slide:nth-child(4) { background-image: url('../images/hero-4_sp.jpg'); }
}

/* PC画像（768px〜） */
@media (min-width: 768px) {
	.hero__slide:nth-child(1) { background-image: url('../images/hero-1.jpg'); }
	.hero__slide:nth-child(2) { background-image: url('../images/hero-2.jpg'); }
	.hero__slide:nth-child(3) { background-image: url('../images/hero-3.jpg'); }
	.hero__slide:nth-child(4) { background-image: url('../images/hero-4.jpg'); }
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.55) 100%),
		linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
	pointer-events: none;
}

.site-main .hero {
	margin-top: calc(-1 * var(--header-height));
}

.hero__inner {
	position: relative;
	z-index: 1;
	padding: calc(var(--header-height) + 56px) 32px 56px;
}

.hero__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: var(--color-primary-orange);
}

.hero__label-line {
	display: block;
	width: 24px;
	height: 1px;
	background: currentColor;
	flex-shrink: 0;
}

.hero__label-text {
	font-family: 'Roboto', var(--font-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	line-height: 1;
}

.hero__title {
	display: flex;
	flex-direction: column;
	font-family: 'Roboto', var(--font-sans);
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	margin-bottom: 12px;
}

.hero__title-white  { color: #FFFFFF; }
.hero__title-orange { 
	color: var(--color-primary-orange);
	margin-top: 12px;
}

.hero__sub {
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.025em;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
	line-height: 1.5;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: var(--radius-pill);
	font-family: 'Roboto', var(--font-sans);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.025em;
	text-decoration: none;
	transition: opacity var(--transition-base), transform var(--transition-base);
	white-space: nowrap;
}

.hero__btn:active { transform: scale(0.97); }

.hero__btn--primary {
	background: var(--color-primary-orange);
	color: #FFFFFF;
	padding: 12px 24px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

.hero__btn--primary:hover { opacity: 0.9; }

.hero__btn--ghost {
	color: #FFFFFF;
	padding: 13px 25px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.hero__btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.hero__scroll {
	position: absolute;
	bottom: 48px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 1;
}

.hero__scroll-text {
	font-family: 'Roboto', var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.4);
	line-height: 15px;
}

.hero__scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

.hero__gradient-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 12px;
	background: linear-gradient(90deg, var(--color-primary-orange) 0%, var(--color-primary-yellow) 50%, var(--color-primary-pink) 100%);
}

@media (min-width: 768px) {
	.hero__inner {
		display: flex;
		align-items: center;
		gap: 48px;
		padding: calc(var(--header-height) + 80px) 32px 80px;
	}

	.hero__content {
		flex: 1;
		min-width: 0;
	}

	.hero__title {
		font-size: 62px;
	}

	.hero__sub {
		font-size: 22px;
		line-height: 28px;
	}
}

@media (min-width: 1280px) {
	.hero__inner {
		padding-inline: 48px;
	}
}

@media (min-width: 1440px) {
	.hero__inner {
		padding-inline: 96px;
	}

	.hero__title {
		font-size: 84px;
	}
}

/* ===== カテゴリーグリッド（デスクトップのみ表示） ===== */
.hero__categories {
	display: none;
}

@media (min-width: 768px) {
	.hero__categories {
		display: block;
		flex: 1;
		min-width: 0;
		background: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border: 1px solid rgba(255, 255, 255, 0.4);
		border-radius: 16px;
		padding: 21px;
	}
}

.hero__categories-label {
	font-family: 'Roboto', var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: #6B7280;
	margin-bottom: 16px;
}

.hero__categories-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hero__cat-item {
	position: relative;
	flex: 0 0 calc((100% - 24px) / 4);
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	transition: opacity var(--transition-base);
}

.hero__cat-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero__cat-item:hover {
	opacity: 0.85;
}

.hero__cat-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	padding: 0 4px;
	height: 15px;
	line-height: 15px;
	font-family: 'Roboto', var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	color: #FFFFFF;
	z-index: 1;
}


/* ===== セクション見出し共通 ===== */
.section-heading {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 900;
	line-height: 45px;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.section-heading__black  { display: block; color: #111827; }
.section-heading__orange { display: block; color: var(--color-primary-orange); }

/* ===== ストーリーセクション ===== */
section.story {
	background: var(--color-bg-light-yellow);
	padding-block: 0;
}

.story__header {
	padding-top: 64px;
	padding-bottom: 56px;
}

.story__desc {
	font-size: 18px;
	line-height: 26px;
	color: #4B5563;
	max-width: 560px;
	margin-bottom: 0;
}

/* ストーリーカード */
.story__cards {
	display: flex;
	flex-direction: column;
}

/* モバイル: 画像上 / テキスト下（縦積み） */
.story-card {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.story-card__image {
	position: relative;
	flex-shrink: 0;
	height: 256px;
	overflow: hidden;
}

.story-card--1 .story-card__image {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/story-01.jpg');
	background-size: cover;
	background-position: center;
}
.story-card--2 .story-card__image {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/story-02.jpg');
	background-size: cover;
	background-position: center;
}
.story-card--3 .story-card__image {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/story-03.jpg');
	background-size: cover;
	background-position: center;
}
.story-card--4 .story-card__image {
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/story-04.jpg');
	background-size: cover;
	background-position: center;
}

.story-card__number {
	position: absolute;
	top: 24px;
	left: 24px;
	font-family: 'Roboto', var(--font-sans);
	font-size: 96px;
	font-weight: 900;
	line-height: 96px;
	color: rgba(255, 255, 255, 0.2);
	pointer-events: none;
}

.story-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px 20px;
}

.story-card__label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.story-card--1 .story-card__label { color: #FF6B35; }
.story-card--2 .story-card__label { color: #FF6B9D; }
.story-card--3 .story-card__label { color: #96CEB4; }
.story-card--4 .story-card__label { color: #5BC0FF; }

.story-card__label-line {
	display: block;
	width: 24px;
	height: 1px;
	background: currentColor;
	flex-shrink: 0;
}

.story-card__label-text {
	font-family: 'Roboto', var(--font-sans);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.25em;
	line-height: 16px;
}

.story-card__title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 900;
	line-height: 27.5px;
	color: #111827;
	margin-bottom: 20px;
}

.story-card__text {
	font-size: 16px;
	line-height: 22.75px;
	color: #4B5563;
}

/* デスクトップ: 交互配置（奇数=画像左・テキスト右、偶数=テキスト左・画像右） */
@media (min-width: 768px) {
	.story__header {
		max-width: 1280px;
		margin-inline: auto;
		padding-inline: 64px;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.story-card {
		flex-direction: row;
		height: 480px;
	}

	/* 偶数カード（02, 04）は画像を右に */
	.story-card:nth-child(even) {
		flex-direction: row-reverse;
	}

	.story-card__image {
		flex: 0 0 50%;
		height: 100%;
	}

	.story-card__body {
		flex: 0 0 50%;
		height: 100%;
		padding: 48px 40px;
	}

	.story-card__title {
		font-size: 30px;
		line-height: 36px;
	}
}

/* ===== 店舗セクション ===== */
section.front-shops {
	background: var(--color-bg-light-yellow);
}

.front-shops__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
	.front-shops__header {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		margin-bottom: 56px;
	}
}

.front-shops__desc {
	font-size: 18px;
	line-height: 24px;
	color: #4B5563;
	margin-top: 12px;
}

/* 「すべての店舗を見る」ボタン — Figma: #111827 border, pill */
.front-shops__view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border: 2px solid #111827;
	border-radius: var(--radius-pill);
	font-family: 'Roboto', var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	color: #111827;
	text-decoration: none;
	transition: opacity var(--transition-base);
	flex-shrink: 0;
}

.front-shops__view-all:hover { opacity: 0.7; }

/* 加盟CTAバナー */
.shop-cta-banner {
	display: block;
	margin-top: 64px;
	border-radius: 16px;
	height: 192px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	background:
		linear-gradient(90deg, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.6) 50%, rgba(0,0,0,0) 100%),
		url('../images/shop-cta-banner.jpg') center / cover no-repeat;
	transition: opacity 0.2s;
}

.shop-cta-banner:hover { opacity: 0.9; }

.shop-cta-banner__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 40px;
}

.shop-cta-banner__label {
	font-family: 'Roboto', var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 4px;
}

.shop-cta-banner__heading {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 900;
	line-height: 32px;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.shop-cta-banner__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	background: var(--color-primary-orange);
	border-radius: var(--radius-pill);
	font-family: 'Roboto', var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	color: #FFFFFF;
	width: fit-content;
}

/* フロントページのショップグリッドは1カラム → 2カラム */
.front-shops .shop-grid {
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.front-shops .shop-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ===== イベント・ニュースセクション ===== */
section.front-events-news {
	background: #FFFFFF;
	padding-block: 0;
}

/* イベント部分 */
.front-events {
	border-bottom: 1px solid #F3F4F6;
	padding-block: 96px;
}

.front-events__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

.front-events__header .section-heading {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.front-events__header {
		margin-bottom: 48px;
	}
}

/* ニュース部分 */
.front-news {
	padding-block: 96px;
}

.front-news__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

.front-news__header .section-heading {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.front-news__header {
		margin-bottom: 48px;
	}
}

/* ── ニュースグリッド（2カラム） ── */
.news-grid {
	display: flex;
	flex-direction: column;
}

.news-col--right {
	border-top: 1px solid #F3F4F6;
	padding-top: 25px;
}

@media (min-width: 768px) {
	.news-grid {
		flex-direction: row;
	}

	.news-col {
		flex: 0 0 50%;
		min-width: 0;
	}

	.news-col--left {
		padding-right: 48px;
	}

	.news-col--right {
		border-top: none;
		border-left: 1px solid #F3F4F6;
		padding-top: 0;
		padding-left: 49px;
	}
}

/* ── ニュース行 ── */
/* .news-row → news.css に移動済み */

/* ===== 「すべて見る」リンク共通 ===== */
.section-more-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: 'Roboto', var(--font-sans);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-primary-orange);
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	padding-top: 8px;
	transition: opacity var(--transition-base);
}

.section-more-link:hover { opacity: 0.7; }

/* ===== 加盟セクション ===== */
section.membership {
	background: var(--color-bg-light-yellow);
}

.membership__layout {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 960px) {
	.membership__layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 64px;
	}

	.membership__left  { flex: 1; min-width: 0; }
	.membership__right { flex: 0 0 480px; }
}

.membership__desc {
	font-size: 18px;
	line-height: 1.75;
	color: #4B5563;
	margin-bottom: 32px;
}

.benefit-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #FFFFFF;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.benefit-item__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary-yellow), var(--color-primary-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #FFFFFF;
}

.benefit-item__body { flex: 1; }

.benefit-item__title {
	font-size: var(--font-size-sm);
	font-weight: 700;
	color: #111827;
	margin-bottom: 4px;
	line-height: 1.3;
}

.benefit-item__desc {
	font-size: var(--font-size-xs);
	color: #6B7280;
	line-height: 1.65;
}

/* form-card / form-toggle のスタイルは contact.css で定義 */

/* ===== ヒーロー 店舗マップ（モック） ===== */
.hero__map {
	display: none;
}

@media (min-width: 768px) {
	.hero__map {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-width: 0;
		gap: 12px;
		background: #ffffff;
		border: 1px solid rgba(0, 0, 0, 0.06);
		border-radius: 16px;
		padding: 18px;
	}
}

.hero__map-label {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 900;
	color: #111827;
	flex-shrink: 0;
	text-align: center;
}

.hero__map-container {
	flex: 1;
	min-height: 380px;
	border-radius: 10px;
	overflow: hidden;
	z-index: 0;
}

/* Leaflet ポップアップ内リンク */
.hero-map-popup__link {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-primary-orange);
	text-decoration: none;
	word-break: break-all;
}
.hero-map-popup__link:hover {
	text-decoration: underline;
}

.hero-map-popup__cat {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: #6B7280;
}

/* Leaflet attribution を最小化（表示義務あり・削除不可） */
#hero-map .leaflet-control-attribution {
	font-size: 11px;
	opacity: 0.45;
	background: transparent;
	box-shadow: none;
	padding: 0 4px;
}

/*
======================================================
FV クラッカー＆アイコンアニメーション（一時コメントアウト）
復活させる場合はこのブロックごとコメントを外す。
hero.php 側のコメントも合わせて解除すること。

アイコン調整プロパティ:
  角度 → @keyframes icon-enter-left/right の 100% フレームの rotate()
  サイズ → .hero-cracker-icon img の width / height
======================================================

.hero-crackers {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 50;
	overflow: hidden;
}

.hero-cracker-icon {
	position: fixed;
	bottom: 0;
	opacity: 0;
	will-change: transform, opacity;
}

.hero-cracker-icon img {
	display: block;
	width: 180px;
	height: 180px;
}

.hero-cracker-icon--left {
	left: 0;
	transform: translateX(-160px) translateY(160px) rotate(-30deg);
}

.hero-cracker-icon--right {
	right: 0;
	transform: translateX(160px) translateY(160px) rotate(30deg);
}

@keyframes icon-enter-left {
	0%   { transform: translateX(-160px) translateY(160px) rotate(-30deg); opacity: 0; }
	30%  { opacity: 1; }
	50%  { transform: translateX(-60px) translateY(20px) rotate(-30deg); }
	78%  { transform: translateX(10px) translateY(-10px) rotate(-30deg); }
	90%  { transform: translateX(-3px) translateY(3px) rotate(-30deg); }
	100% { transform: translateX(0) translateY(0) rotate(-30deg); opacity: 1; }
}

@keyframes icon-enter-right {
	0%   { transform: translateX(160px) translateY(160px) rotate(30deg); opacity: 0; }
	30%  { opacity: 1; }
	50%  { transform: translateX(60px) translateY(20px) rotate(30deg); }
	78%  { transform: translateX(-10px) translateY(-10px) rotate(30deg); }
	90%  { transform: translateX(3px) translateY(3px) rotate(30deg); }
	100% { transform: translateX(0) translateY(0) rotate(30deg); opacity: 1; }
}

.hero-cracker-icon--left.is-in {
	animation: icon-enter-left 0.8s ease-out forwards;
}

.hero-cracker-icon--right.is-in {
	animation: icon-enter-right 0.8s ease-out forwards;
}

@keyframes icon-pop-left {
	0%   { opacity: 1; transform: translateX(0) translateY(0) rotate(-30deg) scale(1); }
	40%  { opacity: 0.9; transform: translateX(0) translateY(0) rotate(-30deg) scale(1.3); }
	100% { opacity: 0; transform: translateX(0) translateY(0) rotate(-30deg) scale(1.8); }
}

@keyframes icon-pop-right {
	0%   { opacity: 1; transform: translateX(0) translateY(0) rotate(30deg) scale(1); }
	40%  { opacity: 0.9; transform: translateX(0) translateY(0) rotate(30deg) scale(1.3); }
	100% { opacity: 0; transform: translateX(0) translateY(0) rotate(30deg) scale(1.8); }
}

.hero-cracker-icon--left.is-pop {
	animation: icon-pop-left 0.4s ease-out forwards !important;
}

.hero-cracker-icon--right.is-pop {
	animation: icon-pop-right 0.4s ease-out forwards !important;
}

.hero-cracker {
	position: absolute;
	top: 75%;
	font-size: 96px;
	line-height: 1;
	opacity: 0;
	will-change: transform, opacity;
}

.hero-cracker--left {
	left: 0;
	transform: translateX(-140px);
}

.hero-cracker--right {
	right: 0;
	transform: translateX(140px) scaleX(-1);
}

.hero-cracker--left.is-in {
	opacity: 1;
	transform: translateX(-12px);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.hero-cracker--right.is-in {
	opacity: 1;
	transform: translateX(12px) scaleX(-1);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

@keyframes cracker-shake-left {
	0%, 100% { transform: translateX(-12px) rotate(0deg); }
	25%       { transform: translateX(-6px) rotate(7deg); }
	75%       { transform: translateX(-18px) rotate(-7deg); }
}

@keyframes cracker-shake-right {
	0%, 100% { transform: translateX(12px) scaleX(-1) rotate(0deg); }
	25%       { transform: translateX(6px) scaleX(-1) rotate(-7deg); }
	75%       { transform: translateX(18px) scaleX(-1) rotate(7deg); }
}

.hero-cracker--left.is-shake {
	animation: cracker-shake-left 0.5s ease-in-out;
}

.hero-cracker--right.is-shake {
	animation: cracker-shake-right 0.5s ease-in-out;
}

@keyframes cracker-pop-left {
	0%   { transform: translateX(-12px) scale(1); opacity: 1; }
	40%  { transform: translateX(-12px) scale(1.5); opacity: 0.9; }
	100% { transform: translateX(-12px) scale(2.2); opacity: 0; }
}

@keyframes cracker-pop-right {
	0%   { transform: translateX(12px) scaleX(-1) scale(1); opacity: 1; }
	40%  { transform: translateX(12px) scaleX(-1) scale(1.5); opacity: 0.9; }
	100% { transform: translateX(12px) scaleX(-1) scale(2.2); opacity: 0; }
}

.hero-cracker--left.is-pop {
	animation: cracker-pop-left 0.4s ease-out forwards !important;
}

.hero-cracker--right.is-pop {
	animation: cracker-pop-right 0.4s ease-out forwards !important;
}
*/
