/** Shopify CDN: Minification failed

Line 744:0 Expected "}" to go with "{"

**/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.02em;
	color: #000;
	background: #fff;
}

img {
	display: block;
	max-width: 100%;
}

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

ul,
ol {
	list-style: none;
}

.disp_pc {
	display: block !important;
}
.disp_pc_flex {
	display: flex !important;
}
.disp_sp {
	display: none !important;
}
@media screen and (max-width: 767px) {
	.disp_pc {
		display: none !important;
	}
	.disp_pc_flex {
		display: none !important;
	}
	.disp_sp {
		display: block !important;
	}
}

/* ===== VARIABLES ===== */
:root {
	--green: #009944;
	--gold: #d3af37;
	--brown: #7e5022;
	--black: #000000;
	--orange: #c86a00;
	--white: #ffffff;
	--max-w: 1080px;
	--max-w_2: 1180px;
	--max-w_3: 1280px;
	--font-body: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
	--font-heading: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

/* ===== UTILITY ===== */
.zen {
	font-family: var(--font-heading);
	font-weight: 700;
}

.pop {
	font-family: var(--font-body);
	font-weight: 500;
}

.noto {
	font-family: var(--font-body);
	font-weight: 400;
}

.inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 40px;
}

.sec-title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	text-align: center;
}

.btn-green {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: var(--green);
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 16px;
	padding: 10px 20px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.btn-green:hover {
	opacity: 0.85;
}

.btn-green .arrow {
	width: 28px;
	/* height: 28px; */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

/* ===== HEADER ===== */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
}

.header-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 52px;
}

.header-logo img {
	height: 28px;
}

.header-nav {
	display: none;
}

.header-nav ul {
	display: flex;
	gap: 32px;
}

.header-nav a {
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	transition: color 0.2s;
}

.header-nav a:hover {
	color: var(--gold);
}

/* ===== MENU BAR ===== */
#menubar {
	background: var(--green);
	padding: 12px 0;
}

.menubar-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	gap: 40px;
	justify-content: center;
}

.menubar-inner a {
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.04em;
	transition: color 0.2s;
}

.menubar-inner a:hover {
	color: var(--gold);
}

/* ===== HERO / MV ===== */
#mv,
.mv-slider-section {
	position: relative;
}

.mv-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.mv-slider-track {
	display: flex;
	padding-bottom: 50px;
}

.mv-slider-slide {
	flex-shrink: 0;
	width: 100%;
}

.mv-slider-link {
	display: block;
}

.mv-slider-picture {
	display: block;
	width: 100%;
}

.mv-slider-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: top;
}

.mv-slider-controls {
	position: absolute;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.mv-slider-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.2s;
}

.mv-slider-btn img {
	display: block;
	width: 19px;
	height: 19px;
}

.mv-slider-btn:hover {
	opacity: 0.7;
}

.mv-slider-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.mv-slider-pagination {
	position: static;
	left: auto;
	right: auto;
	bottom: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: auto;
}

.mv-slider-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0;
	border-radius: 50%;
	background: #d9d9d9;
	opacity: 1;
	transition: background 0.2s;
}

.mv-slider-pagination .swiper-pagination-bullet-active {
	background: var(--green);
}

.mv-bg {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv-inner {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
}

.mv-content {
	position: absolute;
	bottom: 3vw;
	left: 50%;
	transform: translateX(-50%);
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
@media (max-width: 980px) {
	.mv-content {
		bottom: 5vw;
	}
}
.mv-catch {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.4;
	color: #fff;
	text-shadow: 2px 2px 0 var(--dark);
	transform: rotate(-8deg);
	display: inline-block;
	position: relative;
	padding: 0 32px;
	margin-bottom: 18px;
}

.mv-catch::before,
.mv-catch::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 42px;
	height: 2px;
	background: rgba(255, 255, 255, 0.65);
	transform: translateY(-50%) rotate(-14deg);
}

.mv-catch::before {
	left: -16px;
}

.mv-catch::after {
	right: -16px;
}

.mv-catch .highlight {
	color: var(--green);
}

.mv-crown {
	width: 64px;
	height: 44px;
	margin: 0 auto 10px;
	filter: drop-shadow(2px 2px 0 var(--dark));
}

.mv-title {
	font-family: var(--font-heading);
	font-weight: 700;
	color: #fff;
	text-shadow: 3px 4px 0 var(--dark);
	line-height: 1.1;
	margin-bottom: 32px;
}

.mv-title .line1 {
	font-size: 44px;
	display: block;
}

.mv-title .line2 {
	font-size: 58px;
	color: var(--gold);
	display: block;
}

.mv-title .line3 {
	font-size: 52px;
	display: block;
}

.mv-btns {
	display: flex;
	flex-direction: row;
	gap: 30px;
	justify-content: center;
	max-width: 860px;
	margin: 0 auto;
}

.mv-btn-primary {
	border-radius: 50px;
	cursor: pointer;
	transition: opacity 0.2s;
	min-width: 380px;
}

.mv-btn-primary:hover {
	opacity: 0.85;
}

.mv-btn-secondary {
	border-radius: 50px;
	cursor: pointer;
	transition: opacity 0.2s;
	min-width: 380px;
}

.mv-btn-secondary:hover {
	opacity: 0.85;
}

.mv-btn-ico {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 26px;
}

.mv-btn-ico svg {
	width: 100%;
	height: 100%;
}

.mv-btn-icon {
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.75);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-left: auto;
}

.mv-top-badges {
	position: absolute;
	top: 110px;
	right: 96px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 3;
}

.mv-badge {
	display: inline-block;
	background: #fff;
	color: #111;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	padding: 8px 22px;
	transform: skewX(-18deg);
	width: fit-content;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.mv-badge > span {
	display: inline-block;
	transform: skewX(18deg);
}

.mv-guide-badge {
	background: rgba(255, 255, 255, 0.15);
	border: 3px solid #fff;
	border-radius: 50%;
	width: 160px;
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--green);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	background: #fff;
	position: absolute;
	left: 40px;
	bottom: 86px;
	z-index: 3;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mv-guide-badge .mv-guide-icon {
	width: 44px;
	height: 44px;
	margin-bottom: 8px;
}

.mv-guide-badge .mv-guide-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.mv-fixed-badge {
	background: #b81c1c;
	color: #fff;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	padding: 18px 12px;
	border-radius: 12px;
	text-align: center;
	position: absolute;
	right: 32px;
	top: 120px;
	z-index: 3;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

@media (max-width: 980px) {
	.mv-inner {
		padding: 96px 20px 72px;
	}

	.mv-guide-badge {
		left: 16px;
		bottom: 24px;
		transform: scale(0.9);
		transform-origin: left bottom;
	}

	.mv-top-badges {
		right: 16px;
		top: 70px;
	}

	.mv-fixed-badge {
		right: 16px;
		top: 80px;
		padding: 14px 10px;
	}

	.mv-title .line1 {
		font-size: 34px;
	}

	.mv-title .line2 {
		font-size: 44px;
	}

	.mv-title .line3 {
		font-size: 40px;
	}

	.mv-btns {
		align-items: center;
	}

	.mv-btn-primary,
	.mv-btn-secondary {
		min-width: 145px;
		width: min(420px, 100%);
	}
}

/* ===== カテゴリ一覧（LP） ===== */
#categories.lp-categories {
	padding: 30px 0 10px;
	background: #fff;
}

@media (max-width: 980px) {
	#categories.lp-categories {
		padding: 25px 0;
	}
}

.categories-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 40px;
}

.categories-heading {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 32px;
	color: #000;
	text-align: center;
}

@media (max-width: 980px) {
	.categories-heading {
		font-size: 22px;
	}
}

.categories-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
	gap: 28px 20px;
	justify-items: center;
	max-width: 100%;
}

.categories-item {
	margin: 0;
	padding: 0;
}

.categories-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.categories-link:hover {
	opacity: 0.85;
}

.categories-thumb {
	display: block;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	overflow: hidden;
	background: #eee;
	border: 1px solid var(--gold);
}

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

.categories-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 13px;
	font-weight: 700;
	color: #888;
	background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
}

.categories-name {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 13px;
	line-height: 1.35;
	color: #000;
	text-align: center;
	word-break: break-word;
	max-width: 112px;
}

@media (max-width: 767px) {
	.categories-inner {
		padding: 0 16px;
	}

	.categories-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px 20px;
	}

	.categories-thumb {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		max-width: none;
	}

	.categories-name {
		font-size: 11px;
		max-width: 100%;
	}
}

.categories-empty {
	text-align: center;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	max-width: 520px;
	margin: 0 auto;
}

.categories-more-wrap {
	margin: 0 auto 40px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 980px) {
