/* =============================================================================
   04-frontpage.css
   フロントページ（front-page.php）のセクション群。
   メインビジュアル / カテゴリ / 商品グリッド / タブ / 価格比較表 /
   特長 / 会社案内 / サイズ比較 / フッターCTA。
   ============================================================================= */

@layer frontpage {

	/* ==========================================================================
	   Main Visual
	   ========================================================================== */
	.mv-section {
		background: linear-gradient(to right, #f4f7fa 62%, #ffffff 62%);
		padding-top: 40px;
		position: relative;
	}
	.mv-section2 {
		background: linear-gradient(to top, #0083E7, #A9DAFF);
		position: relative;
	}
	.mv-container {
		max-width: 1240px;
		margin: 0 auto;
		padding: 0;
		text-align: center;

		img { display: block; width: 100%; height: auto; }
	}
	.mv-flex {
		align-items: center;
		min-height: 400px;

		@media (max-width: 1024px) { flex-direction: column; text-align: center; }
	}
	.mv-text-content {
		flex: 1;
		text-align: left;

		@media (max-width: 1024px) { text-align: center; margin-bottom: 30px; }
	}
	.mv-badge {
		display: inline-block;
		border: 1px solid #004494;
		color: #004494;
		padding: 3px 10px;
		font-size: 13px;
		font-weight: bold;
		margin-bottom: 20px;
	}
	.mv-copy {
		font-size: 40px;
		line-height: 1.3;
		color: #333;
		margin-bottom: 20px;

		@media (max-width: 600px) { font-size: 28px; }

		span { color: #f24e00; }
	}
	.mv-lead { font-size: 15px; line-height: 1.6; color: #333; }

	.mv-image-area {
		flex: 1;
		text-align: right;

		img { max-width: 100%; height: auto; }
	}

	.mv-feature-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
		margin-top: -50px;
		padding-bottom: 50px;
		width: 100%;

		@media (max-width: 1024px) { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
	}
	.feat-box {
		background: #fff;
		padding: 20px 10px;
		border-radius: 8px;
		box-shadow: 0 10px 25px rgba(0,0,0,0.05);
		text-align: center;

		i { font-size: 28px; color: #004494; margin-bottom: 10px; }
	}
	.feat-label { font-size: 12px; font-weight: bold; margin-bottom: 5px; line-height: 1.3; }
	.feat-val {
		color: #f24e00;
		font-weight: bold;
		font-size: 14px;

		span { font-size: 26px; }
	}

	/* ==========================================================================
	   Bag Types Banner（MV直下の3カラム）
	   ========================================================================== */
	.bag-types-section {
		background: #f7f9fc;
		border-top: 1px solid #e4ebf3;
		border-bottom: 1px solid #e4ebf3;
		padding: 28px 0;

		@media (max-width: 1024px) { padding: 30px 0; }
	}

	/* 3連バナーは左右余白をなくして 1240px 幅いっぱいに広げる。
	   ヘッダー共通の .header-container (@layer layout) を流用しているため、
	   ここ (@layer frontpage) で上書きしてこのセクション内だけ余白を消す。 */
	.bag-types-section .header-container {
		padding: 0;

		/* 1カラムに切り替わる幅ではカードが画面端に貼り付かないよう左右ガターを残す */
		@media (max-width: 1024px) { padding: 0 16px; }
	}

	.bag-types-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		width: 100%;

		@media (max-width: 1024px) { grid-template-columns: 1fr; gap: 16px; }
	}
	.bag-type-card {
		background: #fff;
		border: 1px solid #e4ebf3;
		border-radius: 6px;
		display: flex;
		align-items: stretch;
		overflow: hidden;
		text-decoration: none;
		color: inherit;
		transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

		&:hover {
			transform: translateY(-3px);
			box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
			border-color: var(--color-secondary);

			.bag-type-arrow { background: var(--color-primary); }
		}
	}
	.bag-type-content {
		flex: 1;
		padding: 14px 18px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		min-width: 0;
	}
	.bag-type-lead {
		font-size: 13px;
		color: #333;
		margin: 0;
		line-height: 1.4;

		.hl { color: var(--color-primary); font-weight: bold; }
	}
	.bag-type-title {
		font-size: 20px;
		font-weight: bold;
		color: #004494;
		margin: 0;
		letter-spacing: 0.02em;
	}
	.bag-type-image {
		width: 90px;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 6px;

		img {
			max-width: 100%;
			max-height: 70px;
			height: auto;
			object-fit: contain;
		}
	}
	.bag-type-arrow {
		background: var(--color-secondary);
		color: #fff;
		width: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		font-size: 12px;
		transition: background-color 0.3s ease;
	}

	/* ==========================================================================
	   フルブリード背景（container制約のセクションに帯背景を敷く）
	   ========================================================================== */
	.tab-section,
	.pricing-comparison-section {
		background: #f7f9fc;
		box-shadow: 0 0 0 100vmax #f7f9fc;
		clip-path: inset(0 -100vmax);
		padding: 60px 20px;
	}
	.size-comparison-section { background: #f7f9fc; padding: 60px 0; }

	/* ==========================================================================
	   セクション見出し（フロントページ用）
	   ========================================================================== */
	.section-title {
		text-align: center;
		font-size: 24px;
		margin-bottom: 40px;
	}

	.section-banner {
		max-width: 1240px;
		margin: 0 auto 30px;
		text-align: center;

		img { width: 100%; height: auto; display: block; }
	}

	.section-footer { text-align: center; }
	.btn-round-outline {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 12px 60px;
		border: 1px solid #004494;
		border-radius: 50px;
		color: #004494;
		text-decoration: none;
		font-weight: bold;
		font-size: 16px;
		transition: all 0.3s;

		@media (max-width: 600px) { width: 100%; padding: 12px 20px; }

		&:hover { background-color: #004494; color: #fff; }

		span { margin-left: 10px; font-size: 18px; }
	}

	/* ==========================================================================
	   Category
	   ========================================================================== */
	.category-grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 15px;
		margin-bottom: 40px;

		@media (max-width: 1024px) { grid-template-columns: repeat(3, 1fr); }
		@media (max-width: 600px) { grid-template-columns: repeat(2, 1fr); }
	}
	.category-card {
		border: 1px solid #dce4f1;
		border-radius: 8px;
		overflow: hidden;
		text-align: center;
		background: #fff;
		transition: transform 0.2s ease-in-out;

		&:hover {
			transform: translateY(-3px);
			box-shadow: 0 5px 15px rgba(0,0,0,0.05);
		}
	}
	.category-img {
		height: 140px;
		background-color: #fff;
		border-bottom: none;
	}
	.category-name {
		background-color: #fff;
		padding: 12px 5px;
		font-size: 14px;
		font-weight: bold;
		color: #004494;
		margin: 0;
		border-top: 1px solid #dce4f1;
	}

	/* ==========================================================================
	   フロントページ：タブUI（main.js が制御）
	   ========================================================================== */
	.tab-menu {
		display: flex;
		justify-content: center;
		border-bottom: 2px solid #dcdcdc;
		margin-bottom: 30px;
	}
	.tab-btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 15px 30px;
		/* 非アクティブも視認できるよう、薄いピーチ系の地色＋太字濃いめ文字＋
		   ブランドカラー寄りの枠線で「カード」感を持たせる。
		   アクティブの白タブとは色相で差別化し、メリハリは維持。 */
		border: 2px solid var(--color-accent-border);
		border-bottom: none;
		background: #fdecd9;
		cursor: pointer;
		font-weight: bold;
		color: #444;
		transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
		border-radius: 8px 8px 0 0;
		margin: 0 2px;
		font-family: inherit;
		font-size: 14px;

		&:hover {
			background: #fbdebb;
			color: var(--color-primary);
			border-color: #e8c79a;
		}
		&.active {
			background: #fff;
			color: var(--color-primary);
			border-color: #dcdcdc;
			border-top: 3px solid var(--color-primary);
			margin-bottom: -2px;
			padding-top: 14px;
		}
	}

	.tab-panel {
		display: none;

		&.active {
			display: block;
			animation: tabFadeIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);

			&.is-leaving { animation: tabFadeOut 0.18s ease forwards; }
		}
	}

	@keyframes tabFadeIn {
		from { opacity: 0; transform: translateY(6px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	@keyframes tabFadeOut {
		from { opacity: 1; transform: translateY(0); }
		to   { opacity: 0; transform: translateY(-4px); }
	}

	.tab-footer-link {
		text-align: center;
		margin-top: 30px;

		a {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			padding: 12px 60px;
			border: 1px solid #004494;
			border-radius: 50px;
			color: #004494;
			background: #fff;
			text-decoration: none;
			font-weight: bold;
			font-size: 16px;
			transition: all 0.3s;

			@media (max-width: 600px) { width: 100%; padding: 12px 20px; }

			&:hover { background-color: #004494; color: #fff; }

			span { margin-left: 10px; font-size: 18px; }
		}
	}

	/* ==========================================================================
	   Product Grid / Card（フロントページ・タブ内）
	   ========================================================================== */
	.product-grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 12px;
		margin-top: 20px;
		align-items: stretch;

		@media (max-width: 1024px) { grid-template-columns: repeat(3, 1fr); }
		/* スマホは横並びリストにするため1列。カード内レイアウトは下部の @media で上書き。 */
		@media (max-width: 600px) { grid-template-columns: 1fr; gap: 10px; }
	}
	.product-card {
		border: 1px solid #e5e5e5;
		border-radius: 6px;
		padding: 15px 10px;
		position: relative;
		text-align: center;
		background: #fff;
		display: flex;
		flex-direction: column;

		h3 { font-size: 16px; margin: 5px 0 2px; }
	}
	.badge-circle {
		position: absolute;
		top: 10px;
		left: 10px;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		color: #fff;
		font-size: 10px;
		font-weight: bold;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1.2;
		z-index: 5;
		box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	}
	.badge-orange { background-color: #f24e00; }
	.badge-brown  { background-color: #a67c52; }
	.badge-blue   { background-color: #004494; }

	.product-img {
		/* 商品画像は元の縦横比のまま全体を表示し、高さは画像サイズに自動追従させる
		   （.img-box の object-fit:cover による切り抜きを打ち消す）。
		   画像が無い／極端に低い場合のみプレースホルダ用に最低高さを確保。 */
		min-height: 140px;
		margin: 10px auto;
		background-color: #f0f0f0;
		width: 100%;

		img {
			width: 100%;
			height: auto;
			object-fit: contain;
		}
	}
	.size-text { font-size: 11px; color: #777; margin-bottom: 10px; }

	.info-tags {
		display: flex;
		justify-content: center;
		gap: 4px;
		margin-bottom: 15px;
	}
	.tag {
		font-size: 10px;
		background: #fff;
		border: 1px solid #ddd;
		padding: 2px 4px;
		border-radius: 2px;
		color: #333;
		display: flex;
		align-items: center;
		gap: 3px;
	}

	.price-box {
		margin-top: auto;
		color: #004494;
		margin-bottom: 15px;

		.currency { font-size: 14px; margin-right: 2px; }
		.amount   { font-size: 24px; font-weight: bold; }
		.suffix   { font-size: 16px; }
	}
	.tax-info { font-size: 10px; color: #888; margin-top: -5px; }

	.btn-order {
		background-color: #f24e00;
		color: #fff;
		text-decoration: none;
		font-weight: bold;
		font-size: 13px;
		padding: 10px 5px;
		border-radius: 4px;
		transition: 0.2s;
		display: block;

		&:hover { background-color: #d64500; }
	}

	/* 画像＋商品名を商品ページへのリンクにする（07-product.css はフロントでは未読込のため再定義） */
	.product-card-link {
		display: block;
		text-decoration: none;
		color: inherit;

		h3 { transition: color 0.2s; }
		&:hover h3 { color: var(--color-primary); }
	}

	/* 規格サイズ商品が未登録のタブの空表示 */
	.tab-empty {
		text-align: center;
		color: #777;
		padding: 40px 0;
	}

	/* ==========================================================================
	   スマホ：商品カードを横並びリスト（画像左＋情報右）に切替
	   PC・タブレット (>600px) の縦カードは変更しない。
	   .product-grid 側で 1 列にし、ここで .product-card 内をグリッド化する。
	   ========================================================================== */
	@media (max-width: 600px) {
		.tab-section .product-card {
			display: grid;
			grid-template-columns: 110px 1fr;
			grid-template-areas:
				"img title"
				"img size"
				"img tags"
				"img price"
				"btn  btn";
			column-gap: 12px;
			row-gap: 4px;
			padding: 10px;
			text-align: left;
		}

		/* <a class="product-card-link"> は画像+タイトルを包んでいる。
		   display:contents で透過させ、子要素を grid 直下要素として配置する。 */
		.tab-section .product-card-link {
			display: contents;
		}

		.tab-section .product-card .product-img {
			grid-area: img;
			margin: 0;
			min-height: 0;
			align-self: center;
		}
		.tab-section .product-card h3 {
			grid-area: title;
			font-size: 14px;
			line-height: 1.4;
			margin: 0;
		}
		.tab-section .product-card .size-text {
			grid-area: size;
			margin: 0;
		}
		.tab-section .product-card .info-tags {
			grid-area: tags;
			justify-content: flex-start;
			flex-wrap: wrap;
			margin: 0;
		}
		.tab-section .product-card .price-box {
			grid-area: price;
			margin: 0;

			.amount { font-size: 20px; }
		}
		.tab-section .product-card .btn-order {
			grid-area: btn;
			padding: 8px;
			font-size: 12px;
			margin-top: 4px;
		}
	}

	/* ==========================================================================
	   Pricing Comparison Table（料金比較表）
	   ========================================================================== */
	.pricing-comparison-section {
		max-width: 1240px;
		margin: 60px auto;
	}
	.comparison-table-wrapper { padding: 20px 10px; overflow-x: auto; }
	.comparison-table {
		width: 100%;
		border-collapse: separate;
		border-spacing: 0;
		background: #fff;
		border: 1px solid #e0e0e0;
		border-radius: 12px;
		table-layout: fixed;

		th, td {
			padding: 20px 10px;
			text-align: center;
			border-bottom: 1px solid #e0e0e0;
			border-right: 1px solid #e0e0e0;
			font-size: 14px;
			vertical-align: middle;
		}
		tr:last-child td { border-bottom: none; }
		th:last-child, td:last-child { border-right: none; }
		th span { font-size: 10px; font-weight: normal; }

		th .lineup-name {
			display: block;
			font-size: inherit;
			font-weight: inherit;
			line-height: 1.35;
			margin-bottom: 10px;
		}
		th .lineup-img-wrap {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			height: 120px;
			margin: 0 auto 12px;
		}
		th .lineup-img {
			display: block;
			max-width: 160px;
			max-height: 100%;
			width: auto;
			height: auto;
			object-fit: contain;
		}
		th .lineup-link { margin-top: 4px; }
	}

	.row-label {
		background: #fcfcfc;
		font-weight: bold;
		width: 140px;
	}

	.col-highlight {
		background: #fffafa !important;
		position: relative;
		z-index: 2;
		border-left: 3px solid #f24e00 !important;
		border-right: 3px solid #f24e00 !important;
		box-shadow: 0 8px 20px rgba(242, 78, 0, 0.12);
	}
	th.col-highlight {
		border-top: 3px solid #f24e00 !important;
		padding-top: 30px !important;
		font-size: 18px;
		color: #f24e00;
	}
	td.col-highlight.footer-hl { border-bottom: 3px solid #f24e00 !important; }

	.recommend-badge-fixed {
		position: absolute;
		top: -18px;
		left: 50%;
		transform: translateX(-50%);
		background: linear-gradient(to bottom, #ff8c5a, #f24e00);
		color: #fff;
		padding: 4px 24px;
		border-radius: 30px;
		font-size: 12px;
		font-weight: bold;
		white-space: nowrap;
		border: 2px solid #fff;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	}

	.price-hl    { color: #f24e00 !important; font-weight: 800 !important; font-size: 1.3em; }
	.deadline-hl { color: #f24e00 !important; font-weight: 800 !important; text-decoration: underline; }
	.feat-hl     { color: #f24e00 !important; font-weight: 800 !important; }

	.color-brown { border-top: 4px solid #bda07b; }
	.color-blue  { border-top: 4px solid #7ea1c4; }
	.color-green { border-top: 4px solid #8fc9ad; }

	.lineup-link-row td { padding-top: 18px; padding-bottom: 22px; }
	.lineup-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 160px;
		padding: 6px 22px;
		border: 1.5px solid currentColor;
		border-radius: 999px;
		font-size: 12px;
		font-weight: bold;
		letter-spacing: 0.02em;
		text-decoration: none;
		background: #fff;
		transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;

		&:hover {
			box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
			transform: translateY(-1px);

			span { transform: translateX(3px); }
		}
		span { margin-left: 4px; transition: transform 0.25s ease; }

	}
	/* 注：native CSS nesting では `&--xxx` が無効になるため、修飾子はフラットに定義する */
	.lineup-link--primary {
		color: #fff;
		background: #f24e00;
		border-color: #f24e00;

		&:hover { background: #d64500; border-color: #d64500; color: #fff; }
	}
	.lineup-link--brown {
		color: #a07e4f;
		&:hover { background: #a07e4f; color: #fff; }
	}
	.lineup-link--blue {
		color: #4a7ba6;
		&:hover { background: #4a7ba6; color: #fff; }
	}
	.lineup-link--green {
		color: #4d9b73;
		&:hover { background: #4d9b73; color: #fff; }
	}

	.table-note { font-size: 12px; color: #888; margin-top: 15px; text-align: center; }

	/* --------------------------------------------------------------------------
	   モバイル：ラインナップをカード型で表示（PCはテーブル、SPはカード）
	   -------------------------------------------------------------------------- */
	.comparison-cards { display: none; }

	@media (max-width: 600px) {
		.comparison-table-wrapper { display: none; }
		.comparison-cards {
			display: grid;
			gap: 28px;
			padding: 20px 0 4px;
		}

		.lineup-card {
			background: #fff;
			border: 1px solid #e0e0e0;
			border-radius: 12px;
			padding: 18px 16px 20px;
			text-align: center;
			position: relative;
			border-top-width: 4px;
		}
		.lineup-card--primary {
			border: 2px solid #f24e00;
			box-shadow: 0 8px 20px rgba(242, 78, 0, 0.12);
			padding-top: 28px;
		}
		.lineup-card--brown { border-top-color: #bda07b; }
		.lineup-card--blue  { border-top-color: #7ea1c4; }
		.lineup-card--green { border-top-color: #8fc9ad; }

		.lineup-card .recommend-badge-fixed {
			position: absolute;
			top: -14px;
			left: 50%;
			transform: translateX(-50%);
		}

		.lineup-card-header {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 4px;
			margin-bottom: 12px;
		}
		.lineup-card-img-wrap {
			width: 100%;
			max-width: 200px;
			height: 110px;
			display: flex;
			align-items: center;
			justify-content: center;

			img {
				max-width: 100%;
				max-height: 100%;
				width: auto;
				height: auto;
				object-fit: contain;
			}
		}
		.lineup-card-title {
			margin: 4px 0 0;
			font-size: 16px;
			font-weight: bold;
			line-height: 1.4;
		}
		.lineup-card--primary .lineup-card-title { color: #f24e00; font-size: 18px; }

		.lineup-card-spec {
			margin: 0 0 16px;
			padding: 0;
			border-top: 1px solid #ececec;
		}
		.lineup-card-spec-row {
			display: grid;
			grid-template-columns: 88px 1fr;
			align-items: start;
			gap: 12px;
			padding: 10px 4px;
			border-bottom: 1px solid #ececec;
			text-align: left;
			font-size: 13px;
			line-height: 1.5;

			dt {
				color: #666;
				font-weight: bold;
				font-size: 12px;
				padding-top: 1px;
			}
			dd {
				margin: 0;
				color: #333;
			}
		}
		.lineup-card-spec .cell-note {
			display: inline-block;
			margin-left: 4px;
			color: #888;
			font-size: 10px;
		}
		.lineup-card-price-hl    { color: #f24e00; font-weight: 800; font-size: 1.25em; }
		.lineup-card-deadline-hl { color: #f24e00; font-weight: 800; text-decoration: underline; }
		.lineup-card-feat-hl     { color: #f24e00; font-weight: 800; }

		.lineup-card .lineup-link {
			display: inline-flex;
			width: 100%;
			min-width: 0;
			padding: 10px 16px;
			font-size: 13px;
		}
	}

	/* ==========================================================================
	   特長（4つの理由）
	   ========================================================================== */
	.reasons-section {
		position: relative;
		max-width: 1240px;
		padding: 60px 20px;
		isolation: isolate;

		&::before {
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 100vw;
			background: #fbfae4;
			z-index: -1;
		}
	}
	.reasons-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
		background: transparent;
		padding: 20px 0 30px;
		text-align: left;

		@media (max-width: 1024px) { grid-template-columns: repeat(2, 1fr); }
		@media (max-width: 600px) { grid-template-columns: 1fr; }
	}
	.reason-item {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 6px;
		margin-top: 40px;            /* 上にはみ出す半円ぶんの余白 */
		background: #fff;
		padding: 48px 18px 24px;     /* 上は円の下半分ぶんを確保 */
		box-shadow: 4px 4px 0 #d5d3bc;
	}
	/* 枠の上部中心に円アイコンを配置し、上半分を枠からはみ出させる */
	.reason-icon {
		position: absolute;
		top: -36px;                  /* 直径72pxの半分だけ上にはみ出す */
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		justify-content: center;
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background: var(--color-primary);
		color: #fff;
		font-size: 28px;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	}
	.reason-text {
		h3 { font-size: 16px; margin-bottom: 5px; }
		p  { font-size: 13px; line-height: 1.4; }
	}

	/* ==========================================================================
	   About Block（あいさつ）
	   ========================================================================== */
	.about-block {
		background: url('../images/bg_01.png') no-repeat center center;
		background-size: cover;
		padding: 60px 0;
		margin: 60px 0 0;

		@media (max-width: 600px) { padding: 40px 0; }

		> .container {
			max-width: 1240px;
			margin: 0 auto;
			padding: 0 20px;
			text-align: left;
		}
		.about-box {
			background: rgba(255, 255, 255, 0.9);
			padding: 40px 50px 30px;
			border-radius: 12px;
			box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);

			@media (max-width: 600px) { padding: 24px 20px; }
		}
		.title {
			font-size: 26px;
			font-weight: bold;
			line-height: 1.5;
			margin: 0 0 30px;
			text-align: center;
			color: #333;

			@media (max-width: 600px) { font-size: 20px; margin-bottom: 20px; }

			.strong {
				color: var(--color-primary);
				font-size: 36px;

				@media (max-width: 600px) { font-size: 26px; }
			}
		}
		.about-text {
			p {
				font-size: 14px;
				line-height: 1.9;
				color: #444;
				margin: 0 0 1.5rem;

				@media (max-width: 600px) { font-size: 13px; line-height: 1.85; }

				&:last-child { margin-bottom: 0; }
			}
			strong { color: #222; }
			a {
				color: var(--color-primary);
				text-decoration: underline;

				&:hover { color: #c0400a; }
			}
		}
	}

	/* ==========================================================================
	   Size Comparison
	   ========================================================================== */
	.size-comparison-section { padding: 30px 0; }
	.size-comparison-box {
		background: #fff;
		border: 1px solid #eee;
		border-radius: 10px;
		padding: 40px;
		position: relative;
		margin-top: 50px;
	}
	.size-label-circle {
		position: absolute;
		top: -25px;
		left: 40px;
		width: 70px;
		height: 70px;
		background: #fff;
		border: 2px solid var(--color-secondary);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		color: var(--color-secondary);
		text-align: center;
		font-size: 14px;
	}
	.comparison-flex {
		display: flex;
		align-items: flex-end;
		justify-content: space-around;

		@media (max-width: 768px) { flex-direction: column; align-items: center; text-align: center; }
	}
	.model-view { text-align: center; }
	.model-img { width: 150px; height: 250px; }
	.model-caption { font-size: 12px; margin-top: 10px; }

	.bag-list {
		display: flex;
		align-items: flex-end;
		gap: 20px;
		flex: 1;
		justify-content: space-around;

		@media (max-width: 768px) {
			flex-direction: column;
			align-items: center;
			text-align: center;
			gap: 40px;
			margin-top: 40px;
		}
	}
	.bag-item { text-align: center; }
	.bag-name { display: block; font-weight: bold; font-size: 18px; }
	.bag-w    { display: block; font-size: 12px; margin-bottom: 10px; }
	.bag-img-s  { width: 60px;  height: 80px;  }
	.bag-img-m  { width: 80px;  height: 100px; }
	.bag-img-l  { width: 80px;  height: 130px; }
	.bag-img-ll { width: 100px; height: 140px; }
	.bag-img-a4 { width: 70px;  height: 95px;  }
	.unit-text  { text-align: right; font-size: 12px; color: #999; margin-top: 10px; }

	/* ==========================================================================
	   Footer CTA
	   ========================================================================== */
	.footer-cta-section { padding: 60px 0; background: #fff; }
	.cta-flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 40px;
		text-align: left;

		@media (max-width: 768px) { flex-direction: column; align-items: center; text-align: center; }
	}
	.cta-left {
		h2 { font-size: 24px; margin-bottom: 10px; }
		p  { font-size: 14px; color: #555; }
	}
	.cta-btns { display: flex; gap: 15px; margin-top: 25px; }

	.btn-outline {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 12px 30px;
		border: 1px solid #004494;
		color: #004494;
		border-radius: 30px;
		text-decoration: none;
		font-weight: bold;
		font-size: 14px;

		&:hover { background: #004494; color: #fff; }
	}
	.btn-primary {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 12px 30px;
		background: #f24e00;
		color: #fff;
		border-radius: 30px;
		text-decoration: none;
		font-weight: bold;
		font-size: 14px;

		&:hover { background: #d64500; }
	}

	.blue-tag {
		color: var(--color-secondary);
		font-weight: bold;
		border-left: 3px solid var(--color-secondary);
		padding-left: 10px;
		margin-bottom: 10px;
	}
	.operator-box { display: flex; align-items: center; gap: 20px; }
	.operator-img {
		width: 120px;
		height: 120px;
		border-radius: 50%;
		overflow: hidden;
		flex-shrink: 0;

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

}
