/* Variables */
:root {
	/* Colors */
	--color-primary: #ab49d5;
	--color-primary-1: #720b9e;
	--color-secondary: #ffd700;
	--color-alert: #d72828;
	--color-gray-0: #111111;
	--color-white: #ffffff;
	--color-gray-2: #656565;
	--color-gray-3: #d4d4d4;

	/* New Color Variables */
	--color-blue: #387bd1;
	--color-blue-dark: #2a5a9a;
	--color-blue-light: #c3d3ea;
	--color-yellow: #ffe600;
	--color-yellow-light: #eed7a0;

	/* Background Colors */
	--bg-purple-light: #f3e5f5;
	--bg-purple-lighter: #eedbf7;
	--bg-modal: #f3e6fa;

	/* Gradient */
	--gradient-gold: linear-gradient(90deg, #b88c38 0%, #e2c349 19%, #dab43a 38%, #edd351 58%, #d3af45 84%, #b88c38 93%);

	/* Spacing */
	--spacing-sm: 8px;
	--spacing-md: 16px;
	--spacing-lg: 32px;
	--spacing-xl: 64px;

	/* Font Sizes */
	--font-size-base: 16px;
	--font-size-h2: 2.5rem;
	--font-size-h3: 1.5rem;

	/* Max Width */
	--container-width: 860px;
}

/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px; /* 固定ヘッダー分の余白 */
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: var(--color-gray-0);
	background-color: var(--color-white);
	font-size: var(--font-size-base);
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

ul {
	list-style: none;
}

/* Utilities */
.text-primary {
	color: var(--color-primary);
	font-weight: bold;
}

.text-alert {
	color: var(--color-alert);
}

.u-sp-only {
	display: none;
}

@media (max-width: 1023px) {
	.u-sp-only {
		display: inline;
	}
}

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	min-width: 200px;
	border: none;
}

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

.btn--secondary {
	background-color: var(--color-gray-0);
	color: var(--color-white);
}

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

.btn--shadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* =========================================
   Header (PC First)
   ========================================= */
.header {
	width: 100%;
	background-color: var(--color-white);
	z-index: 100;
}

/* Scroll Fixed Header */
.header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	animation: headerSlideDown 0.4s ease forwards;
}

/* PC: 固定時はinnerを隠す */
.header.is-fixed .header__inner {
	display: none;
}

@keyframes headerSlideDown {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

.header__inner {
	max-width: none;
	width: 100%;
	margin: 0 auto;
	padding: 0 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 86px; /* PC Default */
	position: relative;
	z-index: 2001;
}

.header__left {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.header__logo img {
	width: auto;
	height: 50px; /* PC Default */
	display: block;
}

.header__desc {
	font-size: 0.75rem;
	line-height: 1.4;
	font-weight: bold;
	color: var(--color-gray-0);
	display: block; /* PC Default */
}

/* Header Right (PC Default: Display Flex) */
.header__right {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.header__tel-box {
	display: flex;
	align-items: center;
}

.header__dial {
	height: 40px; /* PC Default */
	width: auto;
}

.header__hours-box {
	padding: 0;
	text-align: center;
	font-size: 0.6rem;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	min-width: 180px;
	height: 40px;
	justify-content: space-between;
}

.header__hours-label {
	border: 1px solid var(--color-gray-0);
	display: block;
	margin-bottom: 2px;
	font-weight: bold;
	padding: 2px 5px;
}

.header__hours-text {
	display: block;
	white-space: nowrap;
	font-size: 0.6rem;
}

/* Hamburger (PC Default: None) */
.header__hamburger {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 2000;
}

.header__hamburger span {
	position: absolute;
	left: 50%;
	width: 24px;
	height: 2px;
	background-color: var(--color-primary);
	transform: translateX(-50%);
	transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
	top: 12px;
}
.header__hamburger span:nth-child(2) {
	top: 21px;
}
.header__hamburger span:nth-child(3) {
	top: 30px;
}

.header__hamburger.is-active span:nth-child(1) {
	top: 21px;
	transform: translateX(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
	opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
	top: 21px;
	transform: translateX(-50%) rotate(-45deg);
}

/* Navigation (PC Default: Horizontal) */
.header__nav {
	background-color: var(--color-primary);
	color: var(--color-white);
	min-height: 56px;
	height: auto;
	display: flex;
	align-items: center;
	padding: 5px 0;
}

.header__nav-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	align-items: center;
	overflow-x: visible;
	gap: 0;
}

.header__nav-item {
	flex: 0 1 auto;
}

.header__nav-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 var(--spacing-md);
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: bold;
	white-space: nowrap;
	transition: background-color 0.3s;
	width: 100%;
	color: var(--color-white);
}

.header__nav-item a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	opacity: 1;
}

/* SP Content in Menu (PC Default: None) */
.header__sp-content {
	display: none;
}

.header__sp-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.header__alert-text--sp {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.8rem;
	color: var(--color-alert);
	font-weight: bold;
	background-color: #ffeaea;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
}

/* Alert Bar (PC Default: Flex) */
.header__alert {
	background-color: var(--color-secondary);
	text-align: center;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}

.header__alert-text {
	color: var(--color-alert);
	font-weight: bold;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.header__alert-icon {
	color: var(--color-alert);
}

/* =========================================
   Header SP/Tablet Overrides (Max-Width)
   ========================================= */
@media (max-width: 1023px) {
	/* Header Inner */
	.header__inner {
		height: 56px; /* SP Height */
		padding: 0 5%	;
	}

	/* SP: 固定時もinnerを表示 */
	.header.is-fixed .header__inner {
		display: flex;
	}

	.header__left {
		gap: var(--spacing-sm); /* var(--spacing-md) -> var(--spacing-sm) */
	}

	.header__logo img {
		height: 30px; /* 40px -> 30px */
	}

	.header__desc {
		display: block; /* none -> block */
		font-size: 0.6rem; /* サイズ調整 */
	}

	.header__right {
		display: none; /* メニュー内へ */
	}

	.header__dial {
		height: 30px;
	}

	.header__hamburger {
		display: block;
	}

	.header__alert {
		display: none;
	}

	/* Drawer Navigation */
	.header__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		color: var(--color-gray-0);
		z-index: 1500;
		padding: 56px 20px 40px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.header__nav.is-active {
		transform: translateX(0);
	}

	.header__nav-list {
		flex-direction: column;
		width: 100%;
		gap: 0;
		max-width: none;
		margin: 0;
	}

	.header__nav-item {
		width: 100%;
		border-bottom: 1px solid var(--color-gray-3);
		flex: none;
	}

	.header__nav-item:first-child {
		border-top: 1px solid var(--color-gray-3);
	}

	.header__nav-item a {
		color: var(--color-gray-0);
		padding: 10px 20px;
		height: auto;
		font-size: 1rem;
		justify-content: center;
	}

	.header__nav-item a:hover {
		background-color: #f5f5f5;
	}

	.header__sp-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 30px;
		width: 100%;
		gap: 20px;
	}
}
/* =========================================
   Hero Section (PC First)
   ========================================= */
.hero {
	text-align: center;
	overflow: hidden;
	position: relative;
}

.hero__bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;

	/* PC Default (16:9) */
	aspect-ratio: 16 / 9;
	background-image: url('./assets/bg_kv.jpg');

	/* コンテンツ配置用 */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: var(--spacing-xl) 0; /* PC Padding */
	position: relative;
	z-index: 0;
}

.hero__content {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-lg); /* PC Gap */
	height: 100%;
	justify-content: center;
	position: relative;
	z-index: 10;
}

.hero__content picture {
	width: 60%; /* PC Width */
	display: flex;
	justify-content: center;
}

.hero__img-title,
.hero__img-badge {
	width: 100%;
	height: auto;
}

/* スライドショーコンテナ (PC) */
.hero__slide-container {
	position: absolute;
	bottom: 0%;
	width: 18vw; /* PC Size */
	max-width: 400px;
	aspect-ratio: 1 / 1.5;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	border-radius: 8px;
}

.hero__slide-left {
	left: 1%;
}

.hero__slide-right {
	right: 1%;
}

.hero__slide-img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	position: absolute;
	top: 0;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	filter: url('#glow-filter');
}

/* ... existing code ... */

/* Popup Custom Styles */
.popup-price {
	display: block;
	font-weight: bold;
	color: var(--color-alert);
	font-size: 1.4rem;
	margin-top: 10px;
	line-height: 1.4;
}

.hero__slide-left .hero__slide-img {
	right: 0;
	left: auto;
	object-position: right center;
	transform-origin: right center;
}

.hero__slide-right .hero__slide-img {
	left: 0;
	right: auto;
	object-position: left center;
	transform-origin: left center;
}

.hero__slide-img.active {
	opacity: 1;
	z-index: 1;
}

.hero__slide-img.next {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.hero__footer-bar {
	background-color: var(--color-primary-1);
	width: 100%;
	padding: var(--spacing-md); /* PC Padding */
	margin-top: auto;
}

.hero__footer-text {
	color: var(--color-white);
	font-weight: bold;
	font-size: clamp(16px, 1.5vw, 24px); /* PC Font Size */
	line-height: 1.4;
}

.hero__footer-br {
	display: none; /* PC Default: Hide BR */
}

.text-yellow {
	color: var(--color-secondary);
	font-weight: 900;
}

/* =========================================
   Hero Section SP/Tablet Overrides
   ========================================= */
@media (max-width: 1023px) {
	/* 光彩フィルターの調整: SVGフィルターからCSS drop-shadowへ変更して自然にする */
	.hero__slide-img {
		filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
	}
}

@media (max-width: 767px) {
	/* 768px未満をSPとする場合、または1024px未満か？ KV画像切り替えは元々max-width: 767pxだった(index.html). CSSのgap切り替え等はmin-width: 768pxだった。 -> 767px以下をSP扱いにする */
	.hero__bg {
		aspect-ratio: auto; /* またはSP用比率 */
		/* SP Default (3:4) - 元のCSSコメント参照 */
		background-image: url('./assets/kv_sp.jpg');
		padding: 48px 0; /* SP Padding Override */
	}

	.hero__content {
		gap: 40px; /* SP Gap Override */
	}

	.hero__content picture {
		width: 85%; /* SP Width Override */
	}

	.hero__slide-container {
		width: 23vw; /* SP Size */
		max-width: 300px;
		bottom: 18%;
	}

	.hero__footer-bar {
		padding: var(--spacing-sm) var(--spacing-md);
	}

	.hero__footer-text {
		font-size: clamp(14px, 3vw, 18px);
	}

	.hero__footer-br {
		display: inline; /* SP: Show BR */
	}
}

/* Rate Section */
.rate {
	background-color: var(--color-white);
	padding: var(--spacing-lg) var(--spacing-md);
}

.rate__content {
	text-align: center;
}

.rate__img {
	max-width: 100%;
	height: auto;
	border-radius: 11px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Common Section Styles */
.section {
	padding: 120px var(--spacing-md); /* PC Default */
}

@media (max-width: 1023px) {
	.section {
		padding: 20px var(--spacing-md);
	}
}

.section__container {
	max-width: var(--container-width);
	margin: 0 auto;
}

.section__title {
	text-align: center;
	margin-bottom: var(--spacing-xl);
}

.section__title-en {
	display: none;
}

.section__title-ja {
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	padding-bottom: 20px;
}

.section__title-ja::after {
	content: '';
	display: block;
	width: 80px;
	height: 6px;
	background-color: var(--color-primary);
	border-radius: 4px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

/* Section Wrapper */
.section-wrapper {
	background-color: rgba(171, 73, 213, 0.2);
	position: relative;
	padding-bottom: 1px;
}

.section-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('./assets/bg_waves.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	opacity: 1;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 0;
}

/* Categories */
.categories {
	background-color: transparent;
	position: relative;
	z-index: 1;
}

.categories__box {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--color-white);
	border-radius: 11px;
}

.categories__frame-top,
.categories__frame-bottom {
	display: block;
	width: 100%;
	height: auto;
	line-height: 0;
}

.categories__frame-top {
	margin-bottom: -1px;
}

.categories__frame-bottom {
	margin-top: -1px;
}

.categories__content {
	background-color: #fff;
	padding: 20px 40px; /* PC Default */
}

.categories__note {
	text-align: center;
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 30px;
}

.categories__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* PC Default */
	gap: 20px; /* PC Default */
}

@media (max-width: 767px) {
	.categories__content {
		padding: 20px;
	}

	.categories__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

.categories__item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.categories__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
	opacity: 0.33;
}

.categories__item:hover img {
	transform: scale(1.05);
}

.categories__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(44, 32, 49, 0.5);
	z-index: 1;
	pointer-events: none;
}

.categories__item p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 1.2rem;
	z-index: 2;
	padding: 0 10px;
	line-height: 1.4;
}

/* Offer (Tab Design) */
.offer {
	padding-bottom: var(--spacing-xl);
	position: relative;
	z-index: 1;
}

.offer__container {
	max-width: 900px;
}

/* Tabs */
.offer__tabs {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: -1px;
	z-index: 2;
	position: relative;
}

.offer__tab {
	flex: 1;
	padding: 15px;
	background-color: var(--color-yellow-light);
	border: none;
	border-radius: 10px 10px 0 0;
	font-weight: bold;
	font-size: 1.1rem;
	color: #666;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.offer__tab[data-target='tab-store'] {
	background-color: #ddd;
}

.offer__tab.active {
	color: #000;
}

.offer__tab[data-target='tab-delivery'].active {
	background-color: var(--color-yellow);
}

.offer__tab[data-target='tab-store'].active {
	background-color: #fff;
}

/* Content Wrapper */
.offer__wrapper {
	background-color: var(--color-yellow);
	border: none;
	padding: 40px; /* PC Default */
	border-radius: 0 0 10px 10px;
	transition: background-color 0.3s;
}

@media (max-width: 767px) {
	.offer__wrapper {
		padding: 10px;
	}
}

.offer__wrapper.bg-white {
	background-color: #fff;
}

.offer__content {
	display: none;
}

.offer__content.active {
	display: block;
	animation: fadeIn 0.3s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.offer__visual {
	width: 100%;
	border-radius: 8px 8px 0 0;
	overflow: hidden;
	background-color: #fff;
}

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

/* Steps */
.offer__steps-section {
	background-color: var(--color-blue-light);
	margin-bottom: 20px;
	border-radius: 0 0 8px 8px;
}

.offer__steps-head {
	background-color: var(--color-blue);
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 1.2rem;
	font-weight: bold;
}

.offer__steps-list {
	display: flex;
	justify-content: center;
	padding: 20px 10px;
	gap: 5%;
	flex-wrap: wrap;
}

.offer__step {
	text-align: center;
	width: 19%;
	min-width: 80px;
	display: flex;
	flex-direction: column;
}

.offer__step-label {
	color: var(--color-blue);
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 1.5rem;
	font-family: 'Times New Roman', Times, serif;
}

.offer__step-card {
	padding: 20px 0;
	background-color: #fff;
	border-radius: 12px;
	flex: 1;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}

.offer__step-card::after {
	content: '▶';
	position: absolute;
	display: block;
	left: 113.2%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--color-blue);
	font-size: 1.5rem;
}

.offer__step:last-child .offer__step-card::after {
	display: none;
}

.offer__step--two {
	width: 46%;
}

.offer__step--two .offer__step-card::after {
	left: 105.5%;
}

.offer__step--three {
	width: 28%;
}

.offer__step--three .offer__step-card::after {
	left: 109%;
}

.offer__step-desc {
	padding: 0 20px;
	font-size: 0.9rem;
	text-align: left;
	margin-top: 15px;
	line-height: 1.6;
	color: var(--color-gray-0);
	font-weight: normal;
}

.offer__step-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 15px;
}

.offer__step-text {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.3;
	color: var(--color-blue);
}

@media (max-width: 1023px) {
	.offer__steps-list {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	.offer__step {
		width: 100%;
	}

	.offer__step .offer__step-card::after {
		top: auto;
		bottom: -35px; /* Gap 40pxの中央付近に調整 */
		left: 50%;
		right: auto;
		transform: translateX(-50%) rotate(90deg);
	}
}

/* Identity Docs */
.identity-docs {
	margin-top: 20px;
	text-align: left;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.identity-docs__details {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
}

.identity-docs__summary {
	padding: 15px;
	background-color: #f9f9f9;
	font-weight: bold;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 40px;
}

.identity-docs__summary::-webkit-details-marker {
	display: none;
}

.identity-docs__summary::after {
	content: '+';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: normal;
}

.identity-docs__details[open] .identity-docs__summary::after {
	content: '-';
}

.identity-docs__content {
	padding: 20px;
	border-top: 1px solid #eee;
}

.identity-docs__list {
	display: grid;
	grid-template-columns: 1fr 1fr; /* PC Default */
	gap: 10px;
	margin-bottom: 20px;
	list-style: disc;
	padding-left: 20px;
}

@media (max-width: 767px) {
	.identity-docs__list {
		grid-template-columns: 1fr;
	}
}

.identity-docs__note {
	color: var(--color-alert);
	font-size: 0.85rem;
	line-height: 1.6;
}

/* CTA */
.offer__cta-section {
	text-align: center;
	padding: 30px 20px;
	background-color: #fff;
	border-radius: 8px;
}

.offer__cta-head {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.offer__cta-tel-link {
	display: inline-block;
	margin-bottom: 10px;
}

.offer__cta-dial {
	width: auto;
	display: block;
}

.offer__cta-hours {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.offer__cta-btn {
	background-color: var(--color-blue);
	color: #fff;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 1.2rem;
	box-shadow: none;
	width: 100%;
	max-width: 400px;
	border: none;
}

.offer__cta-btn:hover {
	background-color: var(--color-blue-dark);
	transform: translateY(-2px);
}

/* Shop Info */
.offer__shop-info {
	margin-top: 30px;
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	border: 2px solid var(--color-primary);
}

.offer__shop-title {
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 20px;
	text-align: center;
	color: var(--color-primary);
	border-bottom: 1px dashed #ccc;
	padding-bottom: 10px;
}

.offer__shop-dl {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.offer__shop-row {
	display: flex;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.offer__shop-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.offer__shop-dt {
	width: 100px;
	font-weight: bold;
	flex-shrink: 0;
}

.offer__shop-dd {
	flex: 1;
}

.offer__shop-map {
	margin-top: 20px;
	width: 100%;
	height: 250px;
	border: 0;
}

@media (max-width: 600px) {
	.offer__shop-row {
		flex-direction: column;
		gap: 5px;
	}
	.offer__shop-dt {
		width: 100%;
		color: var(--color-primary);
	}
}
/* Achievements */
.achievements {
	background-color: transparent;
	position: relative;
	z-index: 1;
}

.achievements__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* PC Default */
	gap: 20px; /* PC Default */
}

@media (max-width: 767px) {
	.achievements__grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
}

.achievements__item {
	background-color: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border: none;
	display: flex;
	flex-direction: column;
}

.achievements__img {
	width: 100%;
	height: 200px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
}

.achievements__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s;
}

.achievements__item:hover .achievements__img img {
	transform: scale(1.05);
}

.achievements__content {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.achievements__name {
	font-size: 0.9rem;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.4;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.achievements__price-label {
	font-size: 0.7rem;
	color: var(--color-gray-2);
	margin-bottom: 2px;
}

.achievements__price {
	color: var(--color-alert);
	font-weight: bold;
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.achievements__date {
	font-size: 0.6rem;
	color: var(--color-gray-2);
	margin-top: auto;
}

.achievements__more-wrapper {
	text-align: center;
	margin-top: 40px;
}

.achievements__more-link {
	background-color: transparent;
	padding: 0 20px;
	color: var(--color-primary);
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	justify-content: center;
}

.achievements__more-link::before,
.achievements__more-link::after {
	content: '';
	height: 1px;
	background-color: var(--color-primary);
	flex: 1;
	max-width: 30%;
}

.achievements__more {
	display: none;
}

/* Reasons */
.reasons {
	background-color: var(--color-white);
}

.reasons__list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xl);
}

.reasons__item {
	background-color: var(--bg-purple-light);
}

.reasons__header {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: var(--spacing-md);
	text-align: center;
	width: 100%;
	margin: 0;
	display: block;
}

.reasons__num {
	display: none;
}

.reasons__head {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
}

.reasons__body {
	padding: var(--spacing-xl); /* PC Default */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-md);
}

@media (max-width: 767px) {
	.reasons__body {
		padding: 30px 20px;
	}
}

.reasons__img {
	width: 100%;
	height: auto;
	border-radius: 0;
}

.reasons__desc {
	font-size: 1rem;
	line-height: 1.8;
	background-color: transparent;
	padding: 0;
	color: var(--color-gray-0);
	text-align: left;
	width: 100%;
}

/* Reviews */
.reviews {
	background-image: url('./assets/bg_city.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.reviews__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.review-card {
	background-color: #fff;
	border: 3px solid #b05ad5; /* 紫色の太枠 */
	border-radius: 12px;
	padding: 30px;
	width: 100%;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.review-card__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 1.1rem;
}

.review-card__stars {
	color: #f39c12; /* 星の色（オレンジ） */
	font-size: 1.2rem;
	letter-spacing: 2px;
}

.review-card__score {
	color: #f39c12;
	font-weight: bold;
	font-size: 1.2rem;
	margin-left: 5px;
}

.review-card__title {
	font-size: 1.3rem;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.4;
}

.review-card__body {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.review-card.flip .review-card__body {
	flex-direction: row-reverse;
}

.review-card__icon-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	width: 120px;
}

.review-card__icon-bg {
	width: 100px;
	height: 100px;
	background-color: #f3e6fa; /* 薄い紫背景 */
	border-radius: 50%;
	display: flex;
	align-items: flex-end; /* 下揃えで画像を表示 */
	justify-content: center;
	overflow: hidden;
}

.review-card__icon {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.review-card__meta {
	font-weight: bold;
	font-size: 0.9rem;
	text-align: center;
}

.review-card__text {
	font-size: 1rem;
	line-height: 1.8;
	flex: 1;
}

.review-card__title-br {
	display: none;
}

@media (max-width: 1023px) {
	.review-card {
		padding: 20px;
	}

	.review-card__header {
		justify-content: center;
	}

	.review-card__body {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.review-card.flip .review-card__body {
		flex-direction: column;
	}

	.review-card__icon-area {
		width: auto;
	}
	
	.review-card__title {
		font-size: 1.1rem;
		text-align: center;
	}

	.review-card__title-br {
		display: inline;
	}
}

/* FAQ */
.faq {
	background-color: var(--bg-purple-lighter);
}

.faq__container {
	max-width: 800px;
	margin: 0 auto;
}

.faq__box {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	margin: 0 auto;
}

.faq__header {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: var(--spacing-md);
	text-align: center;
	font-weight: bold;
	font-size: 1.2rem;
	margin: 0;
}

.faq__list {
	padding: 0;
}

.faq__item {
	border-bottom: 1px solid var(--color-gray-3);
}

.faq__item:last-child {
	border-bottom: none;
}

.faq__q {
	display: block;
	padding: var(--spacing-md);
	padding-right: 3rem;
	padding-left: 3rem;
	position: relative;
	font-weight: bold;
	cursor: pointer;
	list-style: none;
	background-color: #fff;
	color: var(--color-text);
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__q::before {
	content: 'Q.';
	position: absolute;
	left: 1rem;
	font-size: 1.2rem;
	font-weight: bold;
}

.faq__q::after {
	content: '';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid var(--color-primary);
	transition: transform 0.3s;
}

.faq__item[open] .faq__q::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq__a {
	padding: var(--spacing-md);
	line-height: 1.8;
	color: var(--color-gray-0);
	padding-left: 3rem;
	position: relative;
	background-color: #fff;
}

.faq__a::before {
	content: 'A';
	color: var(--color-alert);
	font-weight: bold;
	font-size: 1.2rem;
	position: absolute;
	left: 1rem;
}

/* SweetAlert2 Custom Styles */
.custom-swal-popup {
	background-color: var(--bg-modal) !important;
	border-radius: 0 !important;
	padding: 0 !important;
	max-width: 1000px !important;
	width: 90% !important;
}

.custom-swal-header {
	position: relative;
	width: 100%;
	padding: 50px 20px;
	overflow: hidden;
	background-color: rgba(44, 32, 49, 0.28);
}

.custom-swal-header-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.33;
	z-index: 1;
}

.custom-swal-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.custom-swal-title {
	color: #fff !important;
	font-size: 2rem !important;
	font-weight: bold !important;
	position: relative;
	z-index: 3;
	text-align: center;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
	padding: 0 !important;
}

.swal-body-content {
	padding: 30px 50px;
}

.swal-body-content .faq__q {
	cursor: default;
	padding-right: var(--spacing-md);
}

.swal-body-content .faq__q::after {
	display: none;
}

.swal-content-wrapper {
	text-align: left;
}

.swal-img-wrapper {
	background-color: #fff;
	margin-bottom: 20px;
}

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

.swal-desc {
	font-weight: bold;
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.5;
	color: #000;
}

.swal-note {
	color: #d32f2f;
	font-size: 0.75rem;
	margin-bottom: 20px;
	line-height: 1.5;
	text-align: left;
	margin-top: 20px;
}

.swal-close-btn {
	margin: 0 auto;
	background: none;
	border: none;
	color: #9d4edd;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	padding: 10px 20px;
	display: block;
	transition: transform 0.3s;
}

/* Access (Company Profile) */
.access {
	background-color: var(--bg-purple-lighter);
}

.access__content {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 800px;
	margin: 0 auto;
}

.access__map {
	width: 100%;
	height: auto;
	min-height: 300px;
	border-radius: 0;
	overflow: hidden;
}

.access__info {
	width: 100%;
	background-color: var(--color-white);
	padding: 0;
	border-radius: 0;
}

.access__list {
	display: flex;
	flex-direction: column;
}

.access__row {
	display: flex;
	border-bottom: 1px solid var(--color-gray-3);
	padding: var(--spacing-md);
	align-items: center;
}

.access__row:last-child {
	border-bottom: none;
}

.access__row dt {
	width: 30%;
	min-width: 120px;
	font-weight: bold;
}

.access__row dd {
	flex: 1;
}

@media (max-width: 1023px) {
	.access__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.access__row dt {
		width: 100%;
		margin-bottom: var(--spacing-sm);
	}
}

/* Contact Page */
.contact-page {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

/* Thanks Page */
.thanks-page {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
	min-height: 60vh;
}

.thanks-page__content {
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--color-white);
	padding: var(--spacing-xl);
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
}

@media (max-width: 1023px) {
	.thanks-page__content {
		padding: var(--spacing-lg);
	}
}

.thanks-page__text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: var(--spacing-lg);
}

.thanks-page__note {
	font-size: 0.9rem;
	color: var(--color-gray-2);
	margin-bottom: var(--spacing-xl);
	line-height: 1.6;
}

.thanks-page__back {
	text-align: center;
}

.contact-page__lead {
	text-align: center;
	margin-bottom: var(--spacing-xl);
	line-height: 1.6;
	padding: 0 20px;
}

.contact-form {
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--color-white);
	padding: var(--spacing-xl); /* PC Default */
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1023px) {
	.contact-form {
		padding: var(--spacing-lg);
		margin: 0 20px;
	}
}

.contact-form__row {
	display: flex;
	flex-direction: row; /* PC Default */
	align-items: flex-start; /* PC Default */
	margin-bottom: var(--spacing-lg);
	gap: 8px;
}

@media (max-width: 1023px) {
	.contact-form__row {
		flex-direction: column;
		align-items: stretch;
	}
}

.contact-form__label {
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 200px; /* PC Default */
	flex-shrink: 0; /* PC Default */
	padding-top: 10px; /* PC Default */
}

@media (max-width: 1023px) {
	.contact-form__label {
		width: 100%;
		flex-shrink: 1;
		padding-top: 0;
	}
}

.badge-required {
	background-color: var(--color-alert);
	color: #fff;
	font-size: 0.7em;
	padding: 2px 6px;
	border-radius: 4px;
	vertical-align: middle;
}

.contact-form__input-wrapper {
	flex-grow: 1;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
	border-color: var(--color-primary-1);
	outline: none;
}

.contact-form__row--privacy {
	text-align: center;
	margin-top: var(--spacing-xl);
	align-items: center;
	justify-content: center; /* PC Default */
}

.contact-form__privacy-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: bold;
}

.text-link {
	color: var(--color-primary-1);
	text-decoration: underline;
}

.contact-form__submit {
	text-align: center;
	margin-top: var(--spacing-lg);
}

.contact-form__submit .btn--primary {
	background-color: var(--color-primary);
}

.contact-form__submit .btn--primary:hover {
	background-color: var(--color-primary-1);
}

.btn--large {
	padding: 1rem 4rem;
	font-size: 1.2rem;
}

/* Contact Form 7 Styles - 静的サイトと完全に同じ構造 */
.wpcf7-form,
.contact-form {
	max-width: 1000px;
	margin: 0 auto;
	background-color: var(--color-white);
	padding: var(--spacing-xl);
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1023px) {
	.wpcf7-form,
	.contact-form {
		padding: var(--spacing-lg);
	}
}

/* フォーム行のスタイル */
.wpcf7-form .contact-form__row,
.contact-form__row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	margin-bottom: var(--spacing-lg);
	gap: 8px;
}

@media (max-width: 1023px) {
	.wpcf7-form .contact-form__row,
	.contact-form__row {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ラベルのスタイル */
.wpcf7-form .contact-form__label,
.contact-form__label {
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 200px;
	flex-shrink: 0;
	padding-top: 10px;
}

@media (max-width: 1023px) {
	.wpcf7-form .contact-form__label,
	.contact-form__label {
		width: 100%;
		flex-shrink: 1;
		padding-top: 0;
		margin-bottom: 8px;
	}
}

/* 必須バッジ */
.wpcf7-form .badge-required,
.badge-required {
	background-color: var(--color-alert);
	color: #fff;
	font-size: 0.7em;
	padding: 2px 6px;
	border-radius: 4px;
	vertical-align: middle;
}

/* 入力フィールドラッパー */
.wpcf7-form .contact-form__input-wrapper,
.contact-form__input-wrapper {
	flex-grow: 1;
}

/* 入力フィールドのスタイル */
.wpcf7-form .contact-form__input,
.wpcf7-form .contact-form__select,
.wpcf7-form .contact-form__textarea,
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.wpcf7-form .contact-form__input:focus,
.wpcf7-form .contact-form__select:focus,
.wpcf7-form .contact-form__textarea:focus,
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
	border-color: var(--color-primary-1);
	outline: none;
}

/* プライバシーポリシー同意 */
.wpcf7-form .contact-form__row--privacy,
.contact-form__row--privacy {
	text-align: center;
	margin-top: var(--spacing-xl);
	align-items: center;
	justify-content: center;
}

.wpcf7-form .contact-form__privacy-check,
.contact-form__privacy-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: bold;
}

.wpcf7-form .contact-form__privacy-check label,
.contact-form__privacy-check label {
	white-space: nowrap;
	margin: 0;
	padding-top: 0;
	width: auto;
}

.wpcf7-form .text-link,
.text-link {
	color: var(--color-primary-1);
	text-decoration: underline;
}

/* 送信ボタン */
.wpcf7-form .contact-form__submit,
.contact-form__submit {
	text-align: center;
	margin-top: var(--spacing-lg);
}

.wpcf7-form .contact-form__submit .btn--primary,
.contact-form__submit .btn--primary,
.wpcf7-form input[type="submit"] {
	background-color: var(--color-primary);
	color: white;
	padding: 1rem 4rem;
	font-size: 1.2rem;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s;
	display: block;
	margin: 0 auto;
}

.wpcf7-form .contact-form__submit .btn--primary:hover,
.contact-form__submit .btn--primary:hover,
.wpcf7-form input[type="submit"]:hover {
	background-color: var(--color-primary-1);
}

/* Google reCAPTCHA非表示 */
.grecaptcha-badge {
	visibility: hidden !important;
	opacity: 0 !important;
	display: none !important;
}

/* section rate非表示 */
.rate {
	display: none !important;
}

/* Floating Contact Button */
.floating-contact {
	position: fixed;
	bottom: 30px; /* PC Default */
	right: 30px; /* PC Default */
	z-index: 999;
	transition: transform 0.3s ease;
	width: auto;
}

@media (max-width: 1023px) {
	.floating-contact {
		bottom: 20px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 90%;
		max-width: 600px; /* 広がりすぎ防止 */
	}
}

.floating-contact:hover {
	transform: translateY(-5px);
}

.floating-contact.is-hidden {
	transform: translateY(200%);
	pointer-events: none;
}

.floating-contact__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--color-alert);
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	padding: 20px 40px; /* PC Default */
	border-radius: 50px;
	font-size: 1.2rem; /* PC Default */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
}

@media (max-width: 1023px) {
	.floating-contact__link {
		padding: 15px 30px;
		font-size: 1rem;
	}
}

.floating-contact__img {
	display: none;
}

/* Alert Page */
.alert-page__content {
	max-width: 800px;
	margin: 0 auto;
}

.alert-page__head {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-alert);
	border-bottom: 2px solid var(--color-alert);
	padding-bottom: 10px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.alert-page__head:first-child {
	margin-top: 0;
}

.alert-page__text {
	margin-bottom: 20px;
	line-height: 1.8;
}

.alert-page__checklist {
	background-color: #fff3f3;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--color-alert);
	margin-bottom: 40px;
}

.alert-page__checklist li {
	margin-bottom: 10px;
	padding-left: 1.5em;
	position: relative;
	font-weight: bold;
}

.alert-page__checklist li::before {
	content: '☑';
	position: absolute;
	left: 0;
	color: var(--color-alert);
}

.alert-page__checklist li:last-child {
	margin-bottom: 0;
}

.alert-page__boxes {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 40px;
}

.alert-page__box {
	border: 2px solid var(--color-primary);
	border-radius: 8px;
	padding: 20px;
	background-color: var(--color-white);
}

.alert-page__box-title {
	background-color: var(--color-primary);
	color: var(--color-white);
	display: inline-block;
	padding: 5px 15px;
	border-radius: 4px;
	margin-bottom: 15px;
	font-weight: bold;
}

.alert-page__box-text {
	line-height: 1.8;
}

.alert-page__back {
	text-align: center;
	margin-top: 40px;
}

/* Privacy Policy Page */
.privacy-page__content {
	max-width: 800px;
	margin: 0 auto;
}

.privacy-page__lead {
	margin-bottom: 40px;
	line-height: 1.8;
}

.privacy-page__section {
	margin-bottom: 40px;
}

.privacy-page__head {
	font-size: 1.3rem;
	font-weight: bold;
	border-left: 5px solid var(--color-primary);
	padding-left: 15px;
	margin-bottom: 20px;
	line-height: 1.4;
}

.privacy-page__list {
	list-style-type: decimal;
	padding-left: 1.5em;
	margin-bottom: 20px;
}

.privacy-page__list li {
	margin-bottom: 10px;
	line-height: 1.8;
}

.privacy-page__list--disc {
	list-style-type: disc;
	padding-left: 1.5em;
	margin-bottom: 20px;
}

.privacy-page__list--disc li {
	margin-bottom: 5px;
}

.privacy-page__links {
	list-style: none;
	margin-bottom: 20px;
}

.privacy-page__links li {
	margin-bottom: 20px;
}

.privacy-page__links a {
	color: var(--color-primary);
	text-decoration: underline;
	word-break: break-all;
}

.privacy-page__contact {
	background-color: var(--color-white);
	border: 1px solid var(--color-gray-3);
	padding: 20px;
	border-radius: 8px;
}

.privacy-page__contact p {
	margin-bottom: 5px;
}

.privacy-page__back,
.alert-page__back {
	text-align: center;
	margin-top: 60px;
}

.back-link {
	display: inline-block;
	font-size: 24px;
	color: var(--color-primary);
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.3s;
}

.back-link:hover {
	opacity: 0.7;
}

/* Footer (PC First) */
.footer {
	background-color: var(--color-primary-1);
	color: var(--color-white);
	padding: 50px 0 30px;
}

.footer__inner {
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

.footer__main {
	display: flex;
	flex-direction: row; /* PC Default */
	justify-content: space-between; /* PC Default */
	align-items: center;
	text-align: left; /* PC Default */
	gap: 30px;
	margin-bottom: 40px;
}

@media (max-width: 1023px) {
	.footer__main {
		flex-direction: column;
		text-align: center;
	}
}

.footer__left {
	display: flex;
	flex-direction: row; /* PC Default */
	align-items: center;
	gap: 30px; /* PC Default */
}

@media (max-width: 1023px) {
	.footer__left {
		flex-direction: column;
		gap: 20px;
	}
}

.footer__logo img {
	width: 180px;
	height: auto;
}

.footer__desc {
	font-size: 0.9rem;
	line-height: 1.5;
	font-weight: 500;
	text-align: left; /* PC Default */
}

@media (max-width: 1023px) {
	.footer__desc {
		text-align: center;
	}
}

.footer__copyright {
	font-size: 0.8rem;
	opacity: 0.8;
}

.footer__right {
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer__address {
	margin-bottom: 5px;
}

.footer__bottom {
	text-align: center;
	margin-top: 20px;
}

.footer__privacy {
	color: var(--color-white);
	font-size: 0.9rem;
	text-decoration: underline;
	display: inline-block;
}

.footer__privacy:hover {
	text-decoration: none;
	opacity: 0.8;
}

/* =========================================
   Responsive Font Size Adjustments (SP/Tablet)
   ========================================= */
@media (max-width: 1023px) {
	/* Section Title */
	.section__title-ja {
		font-size: 1.5rem; /* 2rem -> 1.5rem */
		padding-bottom: 15px;
	}

	.section__title-ja::after {
		width: 60px;
		height: 4px;
	}

	/* Reasons */
	.reasons__head {
		font-size: 1.25rem; /* 1.5rem -> 1.25rem */
	}

	.reasons__desc {
		font-size: 0.95rem; /* 1rem -> 0.95rem */
	}

	/* Achievements */
	.achievements__price {
		font-size: 1.2rem; /* 1.4rem -> 1.2rem */
	}

	/* Offer */
	.offer__tab {
		font-size: 0.9rem; /* 1.1rem -> 0.9rem */
		padding: 12px 5px;
	}

	.offer__step-label {
		font-size: 1.2rem; /* 1.5rem -> 1.2rem */
	}

	.offer__step-text {
		font-size: 0.9rem; /* 1rem -> 0.9rem */
	}

	.offer__cta-head {
		font-size: 1rem; /* 1.1rem -> 1rem */
	}

	.offer__cta-btn {
		font-size: 1rem; /* 1.2rem -> 1rem */
		padding: 12px 20px;
	}

	.offer__shop-title {
		font-size: 1.1rem; /* 1.2rem -> 1.1rem */
	}

	/* Categories */
	.categories__item p {
		font-size: 1rem; /* 1.2rem -> 1rem */
	}

	/* FAQ */
	.faq__header {
		font-size: 1.1rem; /* 1.2rem -> 1.1rem */
	}

	.faq__q,
	.faq__a {
		font-size: 0.95rem;
	}

	/* Alert Page */
	.alert-page__head {
		font-size: 1.3rem; /* 1.5rem -> 1.3rem */
	}

	.alert-page__box-title {
		font-size: 0.95rem; /* 標準 -> 0.95rem */
	}

	/* Privacy Policy Page */
	.privacy-page__head {
		font-size: 1.15rem; /* 1.3rem -> 1.15rem */
	}

	/* SweetAlert2 (Modal) */
	.swal-body-content {
		padding: 20px; /* 30px 50px -> 20px */
	}

	.custom-swal-title {
		font-size: 1.5rem !important; /* 2rem -> 1.5rem */
	}

	.swal-desc {
		font-size: 1rem; /* 1.1rem -> 1rem */
		margin-bottom: 20px;
	}
	
	.custom-swal-header {
		padding: 30px 15px; /* 50px 20px -> 30px 15px */
	}
}
