/* =========================================
   Reset & Base Styles
   ========================================= */

@font-face {
	font-family: "Mont, Noto Sans JP, sans-serif";
	src: url("/cdn/shop/files/MontForAnker-Book.woff2?v=1736241676") format("woff2");
	font-weight: 200;
	font-style: normal;
}
.page-container {
	transform: initial !important;
}

html {
	scroll-behavior: smooth;
}

@keyframes float-horizontal {
	0%, 100% {
		transform: translateX(-10px);
	}
	50% {
		transform: translateX(10px);
	}
}
/* --- DESIGN TOKENS --- */
.fb-page-wrapper {
	/* Colors */
	--fb-blue: #00A9E0;
	--fb-red: #B81C22;
	--fb-black: #1a1a1a;
	--fb-white: #ffffff;
	--fb-gray: #F4F4F4;
	--fb-gray2: rgb(107 114 128);
	--fb-gold: #D69A4A;
	--fb-border: #e5e7eb;
	--fb-white60: rgba(255, 255, 255, 0.6);
	
	/* Spacing */
	--sp-80: 80px;
	--sp-60: 60px;
	--sp-40: 40px;
	--sp-30: 30px;
	--sp-20: 20px;
	--sp-10: 10px;

	/* UI Elements */
	--radius-l: 24px;
	--radius-m: 12px;
	--radius-s: 4px;
	--shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
	--shadow-md: 0 15px 40px rgba(0,0,0,0.08);

	--font-en: "Mont, Noto Sans JP, sans-serif";
	--font-jp: 'Noto Sans JP, sans-serif';

	scroll-behavior: smooth;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--fb-black);
	background: var(--fb-white);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;

	* {
		box-sizing: border-box;
		font-feature-settings: "palt";
	}

	.m-sp {
		display: initial !important;
		@media screen and (min-width: 960px) {
			display: none !important;
		}
	}

	.m-pc {
		display: none !important;
		@media screen and (min-width: 960px) {
			display: initial !important;
		}
	}

	.m-en {
		font-family: var(--font-en);
		font-size: 1.2em;
		line-height: 1em;
		padding-top: .2em;
	}

	.fb-container {
		max-width: 800px;
		margin: 0 auto;
		padding: 0 20px;
		@media screen and (min-width: 960px) {
			max-width: 1080px;
		}
	}

	/* --- COMPONENTS: STICKY HEADER --- */
	.fb-sticky-header {
		position: fixed !important;
		top: -100px;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		z-index: 9;
		box-shadow: 0 2px 15px rgba(0,0,0,0.08);
		transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		border-bottom: 3px solid var(--fb-gold);
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;

		&.is-active {
			/* top位置はJavaScriptで動的に設定される */
		}

		@media screen and (min-width: 960px) {
			display: block !important;
			visibility: visible !important;
			opacity: 1 !important;
			position: fixed !important;
		}
	}

	.fb-sticky-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 58px;
		padding: 0 15px;
		@media screen and (min-width: 960px) {
			height: 70px;
			padding: 0;
		}
	}

	.fb-sticky-logo {
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 700;
		max-height: 100px;
		color: var(--fb-blue);
		text-decoration: none;
		white-space: nowrap;
		@media screen and (min-width: 960px) {
			font-size: 20px;
		}
		img {
			width: auto;
			max-height: 20px;
			@media screen and (min-width: 960px) {
				max-height: 30px;
			}
		}
	}

	.fb-sticky-nav {
		display: flex;
		gap: 5px;
		@media screen and (min-width: 960px) {
			gap: 10px;
		}
	}

	/* --- COMPONENTS: BUTTONS --- */
	.fb-btn {
		display: inline-block;
		padding: 16px 36px;
		border-radius: var(--radius-s);
		text-decoration: none;
		font-weight: 700;
		transition: all 0.3s;
		cursor: pointer;
		border: none;
		font-size: 14px;
		text-align: center;
		@media screen and (min-width: 960px) {
			padding: 18px 36px;
			font-size: 16px;
		}
		&:hover {
			@media screen and (min-width: 960px) {
				opacity: 0.8;
				transform: translateY(-2px);
			}
		}
	}

	.fb-btn-primary {
		background: var(--fb-blue);
		color: var(--fb-white);
	}

	.fb-btn-outline {
		background: transparent;
		color: var(--fb-white);
		border: 2px solid var(--fb-white);
	}

	.fb-btn-white {
		background: var(--fb-white);
		color: var(--fb-blue);
	}

	.fb-btn-mini {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		padding: 8px 16px;
		font-size: 11px;
		line-height: 1.2;
		@media screen and (min-width: 960px) {
			padding: 12px 16px;
			font-size: 14px;
		}
	}

	.fb-btn-rounded {
		border-radius: 50px;
	}

	.fb-btn-red {
		background: var(--fb-red);
		color: #fff;
	}
	.fb-btn-gold {
		background: var(--fb-gold);
		color: #fff;
	}

	.fb-btn-disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}

	/* --- COMPONENTS: SECTION HERO (Static Headers) --- */
	.fb-section-hero {
		width: 100%;
		height: 400px;
		background-size: cover;
		background-position: center;
		margin-bottom: var(--sp-80);
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		overflow: hidden;
		@media screen and (min-width: 960px) {
			height: 480px;
		}
		/* ぼかした背景画像レイヤー */
		&.has-bg-image::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: var(--hero-bg-image);
			background-size: 110%;
			background-position: center;
			background-repeat: no-repeat;
			filter: blur(20px);
			opacity: 0.4;
			z-index: 0;
			transform: scale(1.05);
		}
		picture {
			width: 100%;
			height: 100%;
			position: relative;
			z-index: 1;
			img {
				width: 100%;
				height: 100%;
				object-fit: contain;
			}
		}
	}

	.fb-hero-online {
		background-color: var(--fb-blue);
	}

	.fb-hero-store {
		background-color: var(--fb-red);
	}

	.fb-hero-label {
		background: rgba(255, 255, 255, 0.95);
		padding: var(--sp-10) var(--sp-20);
		border-radius: var(--radius-s);
		box-shadow: var(--shadow-md);
		text-align: center;

		span {
			display: block;
			font-size: 14px;
			font-weight: 700;
			letter-spacing: 0.2em;
			color: #666;
			margin-bottom: 4px;
		}

		h2 {
			font-size: 28px;
			font-weight: 700;
			margin: 0;
			letter-spacing: 0.1em;
		}
	}

	.fb-hero-label-blue {
		color: var(--fb-blue);
	}

	.fb-hero-label-red {
		color: var(--fb-red);
	}

	/* --- SECTIONS: MAIN HERO --- */
	.fb-main-hero {
		background: var(--fb-blue);
		padding: var(--sp-80) 0;
		text-align: center;
		color: var(--fb-white);
		position: relative;
		overflow: hidden;
		background-image: 
			linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.06) 75%, rgba(255,255,255,0.06)), 
			linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.06) 75%, rgba(255,255,255,0.06));
		background-size: 150px 150px;
		background-position: 0 0, 75px 75px;

		&::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 80px;
			background: linear-gradient(to bottom, transparent, var(--fb-white));
		}
		.fb-container {
			position: relative;
			display: flex;
			flex-direction: column;
			gap: var(--sp-30);
			z-index: 3;
			@media screen and (min-width: 960px) {
				gap: var(--sp-40);
			}
		}
		.fb-anker-logo {
			max-width: 100px;
			margin: 0 auto;
			@media screen and (min-width: 960px) {
				max-width: none;
				margin: 0;
			}
		}
	}

	.fb-main-hero-deco {
		position: absolute;
		top: 0;
		left: 50%;
		width: 100%;
		max-width: 1080px;
		height: 100%;
		transform: translateX(-50%);
		z-index: 0;
		.deco01,
		.deco02,
		.deco03,
		.deco04 {
			position: absolute;
		}
		.deco01,
		.deco02 {
			width: clamp(200px, calc(200 / 400 * 100vw), 240px);
			@media screen and (min-width: 960px) {
				width: clamp(360px, calc(360 / 1440 * 100vw), 480px);
			}
		}
		.deco01 {
			top: 0;
			right: max(-20%, -100px);
			transform: rotate(180deg);
			@media screen and (min-width: 960px) {
				right: -16%;
			}
		}
		.deco02 {
			bottom: 0;
			left: max(-15%, -100px);
			@media screen and (min-width: 960px) {
				left: -16%;
			}
		}
		.deco03 {
			top: 20px;
			left: -30px;
			animation: float-horizontal 5s ease-in-out infinite;
			width: clamp(100px, calc(100 / 400 * 100vw), 150px);
			@media screen and (min-width: 960px) {
				width: auto;
			}
		}
		.deco04 {
			bottom: 40%;
			right: -30px;
			animation: float-horizontal 5.5s ease-in-out infinite;
			animation-delay: 0.5s;
			width: clamp(100px, calc(100 / 400 * 100vw), 120px);
			@media screen and (min-width: 960px) {
				bottom: 20px;
				width: auto;
			}
		}
	}

	.fb-hero-title {
		max-width: 600px;
		margin: 0 auto var(--sp-20);
		@media screen and (min-width: 960px) {
			margin: 0 auto var(--sp-40);
		}
	}

	.fb-hero-date {
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 50px;
		font-family: 'Montserrat', sans-serif;
	}

	.fb-hero-ctas {
		display: flex;
		gap: 10px;
		justify-content: center;
		align-items: center;
	}

	/* --- SECTIONS: DESCRIPTION --- */
	.fb-description {
		padding: var(--sp-40) 0 var(--sp-80);
		text-align: center;
		background: var(--fb-white);
	}

	.fb-desc-title {
		font-size: 32px;
		font-weight: 700;
		margin-bottom: var(--sp-20);
		line-height: 1.4;
		letter-spacing: 0.05em;
		padding-left: var(--sp-30);
	}

	.fb-desc-text {
		font-size: 16px;
		color: #333;
		max-width: 850px;
		margin: 0 auto;
		line-height: 2;

		p {
			margin-bottom: 0;

			+ p {
				margin-top: var(--sp-10);
			}
		}
	}

	/* --- SECTIONS: ONLINE --- */
	.fb-online-area {
		padding-bottom: var(--sp-80);
		background: var(--fb-gray);
	}

	.fb-sec-head {
		text-align: center;
		margin-bottom: var(--sp-30);
		@media screen and (min-width: 960px) {
			margin-bottom: var(--sp-40);
		}
		&::after {
			content: '';
			display: block;
			position: relative;
			width: 40px;
			height: 3px;
			margin: 0 auto;
			border-radius: 10px;
			background: var(--fb-blue);
			margin-top: var(--sp-30);
		}
		&.fb-red {
			&::after {
				background: var(--fb-red);
			}
		}
	}

	.fb-sec-title {
		font-size: 24px;
		font-weight: 700;
		text-align: center;
		margin-bottom: var(--sp-20);
		letter-spacing: 0.05em;
		@media screen and (min-width: 960px) {
			font-size: 32px;
		}
	}

	.fb-sec-schedule {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		flex-wrap: wrap;
		animation: fadeInUp 0.8s ease forwards;
	}

	.fb-schedule-label {
		font-size: 11px;
		font-weight: 700;
		padding: 2px 8px;
		border-radius: 4px;
		color: var(--fb-white);
		letter-spacing: 0.05em;
		@media screen and (min-width: 960px) {
			font-size: 13px;
			padding: 3px 12px;
		}
	}

	.fb-schedule-date {
		font-size: 14px;
		font-weight: 700;
		margin: 0;
		letter-spacing: 0.02em;
		color: var(--fb-gray2);
		text-align: left;
		line-height: 1.4;
		@media screen and (min-width: 960px) {
			font-size: 18px;
			text-align: center;
		}
	}

	/* Color variations */
	.fb-schedule-blue .fb-schedule-label {
		background: var(--fb-blue);
	}
	
	.fb-schedule-red .fb-schedule-label {
		background: var(--fb-red);
	}

	/* Benefits Grid */
	.fb-benefit {
		position: relative;
		margin-bottom: var(--sp-40);
		background-color: var(--fb-blue);
		padding: var(--sp-30) var(--sp-20);
		border-radius: var(--radius-m);
		overflow: hidden;
		@media screen and (min-width: 960px) {
			padding: var(--sp-40) var(--sp-30);
		}
		& > * {
			z-index: 3;
		}
		&::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: url('/cdn/shop/files/tex_seigaiha.webp?v=1765777286') repeat center center;
			background-size: 70px 70px;
			z-index: 0;
			mix-blend-mode: color-burn;
			opacity: 0.04;

			@media screen and (min-width: 960px) {
				background-size: 100px 100px;
			}
		}

		.fb-benefit-title {
			font-size: 20px;
			font-weight: 700;
			text-align: center;
			margin-bottom: var(--sp-30);
			color: var(--fb-white);
			line-height: 1.4;
			@media screen and (min-width: 960px) {
				font-size: 24px;
			}
		}
		.benefits-grid {
			display: grid;
			grid-template-columns: 1fr;
			gap: 20px;
		
			@media screen and (min-width: 960px) {
				grid-template-columns: repeat(3, 1fr);
			}
		}

		.benefit-card {
			background: rgba(255, 255, 255, 0.95);
			padding: 20px 20px 30px;
			border-radius: 12px;
			text-align: center;
			color: var(--c-anker-dark);
			border: 2px solid var(--c-gold);
			position: relative;
		
			@media screen and (min-width: 960px) {
				padding: 40px 20px;
			}
		
			&::before {
				content: '';
				position: absolute;
				top: -10px;
				left: 50%;
				transform: translateX(-50%);
				width: 40px;
				height: 20px;
				background-color: var(--c-gold-bright);
				border-radius: 20px;
				opacity: 0.8;
				display: none;
			}
		}
		
		.benefit-icon {
			font-size: 48px;
			display: block;
			text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
		}
		
		.benefit-title {
			font-size: 18px;
			font-weight: 700;
			margin-bottom: 12px;
			color: var(--c-anker-blue);
		
			@media screen and (min-width: 960px) {
				font-size: 20px;
			}
		}
		
		.benefit-desc {
			font-size: 14px;
			color: var(--c-text-gray);
			line-height: 1.8;
		}
	}

	.fb-benefit-card {
		background: var(--fb-white);
		padding: var(--sp-30) var(--sp-20);
		text-align: center;
		border-radius: var(--radius-m);
		position: relative;
		border: 1px solid var(--fb-border);
		@media screen and (min-width: 960px) {
			padding: var(--sp-40) var(--sp-30);
		}

		i {
			font-size: 56px;
			color: var(--fb-blue);
			margin-bottom: var(--sp-10);
			display: block;
		}
	}

	.fb-badge {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: -10px;
		right: -10px;
		width: 80px;
		height: 80px;
		border-radius: 50%;
		background: var(--fb-blue);
		color: #fff;
		font-size: 13px;
		font-weight: 700;
		line-height: 1.4;
		border-radius: 50px;
		border: 2px solid var(--fb-white);
	}

	.fb-badge-gold {
		background: var(--fb-gold);
	}

	.fb-icon-gold {
		color: var(--fb-gold);
	}

	.fb-benefit-name {
		font-weight: 700;
		font-size: 16px;
		margin-bottom: 10px;
		@media screen and (min-width: 960px) {
			font-size: 20px;
		}
	}

	/* Product Grid & Cards */
	.fb-product-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		margin-bottom: var(--sp-40);
		@media screen and (min-width: 960px) {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
		}
	}

	.fb-card {
		max-width: 370px;
		width: 100%;
		background: var(--fb-white);
		border-radius: var(--radius-m);
		overflow: hidden;
		display: flex;
		flex-direction: column;
		box-shadow: var(--shadow-sm);
		border: 1px solid var(--fb-border);
		transition: box-shadow 0.3s ease;
		@media screen and (min-width: 960px) {
			max-width: unset;
		}
		&:hover {
			box-shadow: var(--shadow-md);
		}
	}

	.fb-card-image {
		height: 300px;
		background: var(--fb-blue);
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		overflow: hidden;

		a {
			display: block;
			width: 100%;
			height: 100%;
		}

		img {
			width: 100%;
			height: 100%;
			object-fit: contain;
			transition: transform 0.4s ease;
		}
	}

	.fb-card-image-placeholder {
		background: #f8fafb;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #999;
	}

	.fb-card-body {
		padding: var(--sp-20);
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		@media screen and (min-width: 960px) {
			padding: var(--sp-30);
		}
	}

	.fb-card-tag {
		font-size: 13px;
		font-weight: 700;
		color: var(--fb-blue);
		margin-bottom: 10px;
	}

	.fb-card-name {
		font-size: 16px;
		font-weight: 700;
		margin: 0 0 20px;
		line-height: 1.4;
		@media screen and (min-width: 960px) {
			font-size: 20px;
		}

		a {
			color: inherit;
			text-decoration: none;
		}
	}

	.fb-card-list {
		list-style: none;
		padding: 0;
		margin: 0 0 var(--sp-20);
		flex-grow: 1;
		border-top: 1px solid #f0f0f0;
		padding-top: var(--sp-20);

		li {
			font-size: 14px;
			margin-bottom: 4px;
			color: #444;
			display: flex;
			align-items: center;
			&::before {
				content: "●";
				color: var(--fb-blue);
				font-size: 8px;
				margin-right: 6px;
			}
			@media screen and (min-width: 960px) {
				margin-bottom: var(--sp-10);
				font-size: 15px;
			}
			

		}
	}

	.fb-card-footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-top: 1px solid #f0f0f0;
		padding-top: var(--sp-10);
	}

	.fb-card-price {
		font-size: 26px;
		font-weight: 700;

		small {
			font-size: 13px;
			color: #888;
			font-weight: 400;
		}
		.product-price-v2 {
			flex-shrink: 0;
			flex-wrap: nowrap;
			flex-direction: row;
			font-size: 20px;
		}
		.product-price-v2-unit {
			flex-wrap: nowrap;
			flex-direction: row;
		}
	}

	/* --- SECTIONS: STORE --- */
	.fb-store-area {
		padding-bottom: var(--sp-80);
		background: var(--fb-white);
	}

	.fb-store-msg {
		max-width: 850px;
		margin: 0 auto var(--sp-40);
		text-align: left;
		@media screen and (min-width: 960px) {
			text-align: center;
		}
		p {
			font-size: 14px;
		}
	}

	.fb-store-table-wrapper {
		position: relative;
		padding-top: var(--sp-40);
		border-top: 1px solid var(--fb-border);
	}

	/* Tab Styles */
	#region-tabs {
		display: flex;
		overflow-x: auto;
		gap: 8px;
		padding: 0 4px 4px;
		margin-bottom: var(--sp-40);
		scrollbar-width: none;
		-ms-overflow-style: none;
		scroll-snap-type: x mandatory;
		&::-webkit-scrollbar {
			display: none;
		}
	}

	.no-scrollbar {
		scrollbar-width: none;
		-ms-overflow-style: none;
		&::-webkit-scrollbar {
			display: none;
		}
	}

	.fb-tab-button {
		padding: 10px 20px;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 600;
		white-space: nowrap;
		flex-shrink: 0;
		cursor: pointer;
		border: 2px solid var(--fb-border);
		background: var(--fb-white);
		color: var(--fb-black);
		transition: all 0.3s ease;
		@media screen and (min-width: 960px) {
			padding: 12px 24px;
			font-size: 15px;
		}
		&:hover {
			background: #f9fafb;
			border-color: var(--fb-red);
			color: var(--fb-red);
		}
		&.fb-tab-button-active {
			background: var(--fb-red);
			border-color: var(--fb-red);
			color: var(--fb-white);
			&:hover {
				background: #a0161c;
				border-color: #a0161c;
			}
		}
	}

	/* Region Content Styles */

	.fb-region-content {
		opacity: 1;
		transition: opacity 0.3s ease;
		margin-bottom: 48px;
		&:last-child {
			margin-bottom: 0;
		}
		&.fb-region-content-hidden {
			display: none;
		}
		&.fb-region-content-opacity {
			opacity: 0;
		}
	}

	.fb-region-header {
		display: flex;
		align-items: center;
		margin-bottom: 16px;
		padding-left: 4px;
		border-left: 4px solid var(--fb-red);
		@media screen and (min-width: 960px) {
			margin-bottom: 20px;
		}
	}

	.fb-region-title {
		font-size: 20px;
		font-weight: 700;
		color: var(--fb-black);
		padding-left: 8px;
		margin: 0;
		@media screen and (min-width: 960px) {
			font-size: 24px;
		}
	}

	.fb-store-table-container {
		background: var(--fb-white);
		border-radius: var(--radius-m);
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
		border: 1px solid var(--fb-border);
		overflow: hidden;
	}

	.fb-store-table-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scrollbar-color: #cbd5e1 transparent;
		&::-webkit-scrollbar {
			height: 8px;
		}
		&::-webkit-scrollbar-track {
			background: #f1f5f9;
		}
		&::-webkit-scrollbar-thumb {
			background: #cbd5e1;
			border-radius: 4px;
			&:hover {
				background: #94a3b8;
			}
		}
	}

	.fb-store-table {
		width: 100%;
		border-collapse: collapse;
		margin: 0;
		min-width: 800px;

		th {
			text-align: left;
			background: #fdfdfd;
			padding: 16px;
			border-bottom: 3px solid var(--fb-red);
			font-size: 14px;
			font-weight: 700;
			color: var(--fb-black);
			white-space: nowrap;
			@media screen and (min-width: 960px) {
				padding: 20px;
				font-size: 15px;
			}
		}

		td {
			padding: 16px;
			border-bottom: 1px solid #f2f2f2;
			font-size: 14px;
			vertical-align: top;
			@media screen and (min-width: 960px) {
				padding: 20px;
				font-size: 16px;
			}
		}

		.fb-store-table-row {
			transition: background-color 0.2s ease;
			cursor: pointer;
			&:hover {
				background-color: #f9fafb;
			}
		}

		.fb-store-name {
			font-weight: 700;
			color: var(--fb-black);
			min-width: 140px;
		}

		.fb-store-date {
			text-align: center;
			white-space: nowrap;
			min-width: 60px;
			&.fb-store-uncertain {
				color: var(--fb-red);
				font-weight: 700;
			}
		}

		.fb-store-ticket {
			text-align: center;
			white-space: nowrap;
			min-width: 50px;
			&.fb-store-no-ticket {
				opacity: 0.5;
			}
		}

		.fb-store-location {
			min-width: 160px;
		}

		.fb-store-location-inner {
			display: flex;
			flex-direction: column;
			gap: 4px;
		}

		.fb-store-location-text {
			font-weight: 600;
			color: #374151;
			font-size: 13px;
			line-height: 1.5;
			@media screen and (min-width: 960px) {
				font-size: 14px;
			}
		}

		.fb-store-time {
			font-size: 12px;
			color: #6b7280;
			line-height: 1.5;
			&.fb-store-time-uncertain {
				color: var(--fb-red);
				font-weight: 700;
			}
			@media screen and (min-width: 960px) {
				font-size: 13px;
			}
		}

		.fb-store-link {
			text-align: center;
			white-space: nowrap;
			min-width: 90px;
		}

		.fb-store-link-btn {
			display: inline-block;
			padding: 6px 12px;
			background: var(--fb-gold);
			color: var(--fb-white);
			font-size: 11px;
			font-weight: 700;
			border-radius: 4px;
			text-decoration: none;
			transition: background-color 0.2s ease;
			&:hover {
				background: #0052a3;
			}
			@media screen and (min-width: 960px) {
				padding: 8px 16px;
				font-size: 12px;
			}
		}

		.fb-store-link-empty {
			color: #d1d5db;
			font-size: 12px;
		}

		.fb-store-th-name {
			min-width: 140px;
		}

		.fb-store-th-date {
			min-width: 60px;
			text-align: center;
		}

		.fb-store-th-ticket {
			min-width: 50px;
			text-align: center;
		}

		.fb-store-th-location {
			min-width: 160px;
		}

		.fb-store-th-link {
			min-width: 90px;
			text-align: center;
		}
	}

	/* Responsive Styles for Store Table */
	@media screen and (max-width: 959px) {
		.fb-store-table-wrapper {
			border-radius: var(--radius-s);
		}

		#region-tabs {
			gap: 6px;
			padding: 0 2px 4px;
		}

		.fb-tab-button {
			padding: 8px 16px;
			font-size: 13px;
		}

		.fb-store-table-scroll {
			-webkit-overflow-scrolling: touch;
		}

		.fb-store-table {
			min-width: 700px;
			th, td {
				padding: 12px 8px;
				font-size: 13px;
			}

			.fb-store-name {
				min-width: 120px;
				font-size: 13px;
			}

			.fb-store-date {
				vertical-align: middle;
				min-width: 50px;
				font-size: 12px;
			}

			.fb-store-ticket {
				min-width: 45px;
				font-size: 12px;
			}

			.fb-store-location {
				min-width: 140px;
			}

			.fb-store-link {
				min-width: 80px;
			}

			.fb-store-link-btn {
				padding: 5px 10px;
				font-size: 10px;
			}
		}

		.fb-region-title {
			font-size: 18px;
		}
	}

	/* Text styling for HTML content in table cells */
	.fb-store-location-text,
	.fb-store-time {
		.text-xs {
			font-size: 11px;
			@media screen and (min-width: 960px) {
				font-size: 12px;
			}
		}
		.text-gray-500 {
			color: #6b7280;
		}
	}

	.fb-date-val {
		font-weight: 700;
		font-size: 18px;
		color: var(--fb-black);
	}

	/* --- SECTIONS: CAUTIONS --- */
	.fb-caution {
		padding: var(--sp-30) var(--sp-20);
		border-radius: var(--radius-m);
		font-size: 14px;
		margin-top: var(--sp-40);
		border: 1px solid var(--fb-border);
		background: rgb(249 250 251);
		@media screen and (min-width: 960px) {
			padding: var(--sp-40) var(--sp-20);
		}

		h3 {
			margin: 0 0 var(--sp-20);
			font-size: 18px;
			line-height: 1.6;
			@media screen and (min-width: 960px) {
				font-size: 20px;
			}
		}

		ul {
			margin: 0;
		}

		li {
			color: #333;
			font-size: 13px;
			line-height: 1.8;
			&::before {
				content: "・";
				padding-right: .3em;
				font-weight: 700;
			}
			& + li {
			margin-top: 6px;
			}
		}
	}

	/* --- RESPONSIVE --- */
	--sp-80: 60px;
	--sp-40: 40px;
	--sp-30: 30px;
	--sp-20: 20px;
	--sp-10: 10px;

	.fb-hero-title {
		font-size: 48px;
	}

	.fb-hero-ctas {
		flex-direction: column;
		align-items: center;
		gap: 6px;
		.fb-btn {
			width: 100%;
		}
	}

	.fb-btn {
		max-width: 320px;
	}

	.fb-benefit-grid,
	.fb-product-grid {
		grid-template-columns: 1fr;
	}

	.fb-card {
		flex-direction: column;
	}

	.fb-card-image {
		height: 240px;
	}

	.fb-desc-title {
		padding-left: 0;
		font-size: 22px;
	}

	.fb-desc-text {
		font-size: 14px;
	}

	.fb-sticky-header {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	@media screen and (min-width: 960px) {
		--sp-80: 80px;
		--sp-40: 40px;
		--sp-30: 30px;
		--sp-20: 20px;
		--sp-10: 10px;


		.fb-hero-ctas {
			flex-direction: row;
			.fb-btn {
				width: auto;
			}
		}

		.fb-btn {
			max-width: none;
		}

		.fb-benefit-grid {
			grid-template-columns: repeat(3, 1fr);
		}

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

		.fb-card-image {
			height: 300px;
		}

		.fb-desc-title {
			padding-left: var(--sp-30);
			font-size: 32px;
		}

		.fb-desc-text {
			font-size: 16px;
		}
	}

}

/* v2-header-main内の.containerは除外 */
.v2-header-main .container {
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	position: static;
	z-index: auto;
}
