:root {
	--primary-color: #00234b;
	--primary-light: #cbccda;
	--accent-color: #c5a059;
	--text-color: #222;
	--gray-text: #555;
	--bg-light: #f9f9f9;
	--white: #ffffff;
}
body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text-color);
	line-height: 1.8;
	margin: 0;
	padding: 0;
	background-color: var(--white);
}
h1, h2, h3, h4 {
	margin: 0;
	font-family: 'Merriweather', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-weight: 700;
	line-height: 1.4;
}
img { max-width: 100%; height: auto; }
.container1 { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
	
.cta-button {
	display: inline-block;
	background: linear-gradient(to right, #c5a059, #aa853c);
	color: var(--white);
	padding: 20px 20px;
	font-size: 1.3rem;
	text-decoration: none;
	border-radius: 20px;
	font-weight: bold;
	box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid rgba(255,255,255,0.2);
}
.cta-button:hover {
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6);
}
.cta-sub {
	display: block;
	font-size: 0.9rem;
	margin-top: 5px;
	font-weight: normal;
	opacity: 0.9;
}

.hero {
	background: radial-gradient(circle at center, #ffffff 0%, #f4f4f4 100%);
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}
.hero-badge {
	display: inline-block;
	background-color: var(--accent-color);
	color: #fff;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 0.9rem;
	margin-bottom: 25px;
	letter-spacing: 2px;
}
.hero h1 {
	font-size: 2.8rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}
.hero-lead {
	font-size: 1.3rem;
	margin-bottom: 40px;
	color: var(--gray-text);
}

.section { padding: 40px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-primary1 { background-color: var(--primary-color); color: var(--white); }
.section-title-wrapper {
	text-align: center;
	margin-bottom: 40px;
}
.en-title {
	display: block;
	font-size: 1rem;
	color: var(--accent-color);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: bold;
}
.ja-title {
	font-size: 2.2rem;
	color: var(--primary-color);
	position: relative;
	display: inline-block;
}
.bg-primary1 .ja-title { color: var(--white); }
.ja-title::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background-color: var(--accent-color);
	margin: 20px auto 0;
}

.problem-box {
	background: var(--white);
	border: 2px solid #eee;
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 50px;
}
.problem-hd {
	margin-bottom: 30px;
	margin-top: 10px;
	font-size:1.3rem;
}
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}
.check-item {
	font-size: 1.1rem;
	padding-left: 30px;
	position: relative;
}
.check-item::before {
	content: "✔";
	color: var(--accent-color);
	position: absolute;
	left: 0;
	font-weight: bold;
}

.story-block {
	border-left: 5px solid var(--accent-color);
	padding: 20px;
	background-color: #fffbf0;
	margin: 0;
}
.story-title { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 20px; }
.story-text { margin-bottom: 0; }

.mechanism-box {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 50px;
}
.mechanism-text {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ingredient-card {
	background: var(--white);
	border-radius: 10px;
	padding: 25px 25px 15px 25px;
	margin-bottom: 20px;
	border-left: 6px solid #ccc;
	box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.card-gold { border-color: #d4af37; background: #fffdf5; }
.card-blue { border-color: #2980b9; }
.card-green { border-color: #27ae60; }
	
.ing-name { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; display: flex; justify-content: space-between; }
.ing-tag { font-size: 0.8rem; background: #eee; padding: 5px 8px; border-radius: 4px; color: #555; }
.card-gold .ing-tag { background: #d4af37; color: #fff; }

.botanical-visual {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 40px 0;
}
.circle-feature {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-blend-mode:lighten;
	border: 3px solid var(--primary-light);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.circle-title { font-weight: bold; color: var(--primary-color); margin-bottom: 5px; }
.circle-desc { font-weight: bold; font-size: 0.8rem; color: #444; }
.botanical1 {
	background-image: url('/shop/html/user_data/assets/img/common/cstg/botanical1.jpg');
	background-color:rgba(255,255,255,0.6);
}
.botanical2 {
	background-image: url('/shop/html/user_data/assets/img/common/cstg/botanical2.jpg');
	background-color:rgba(255,255,255,0.5);
}
.botanical3 {
	background-image: url('/shop/html/user_data/assets/img/common/cstg/botanical3.jpg');
	background-color:rgba(255,255,255,0.5);
}
.botanical4 {
	background-image: url('/shop/html/user_data/assets/img/common/cstg/botanical4.jpg');
	background-color:rgba(255,255,255,0.5);
}
.feature-visual {
	flex: 1;
	min-width: 300px;
	background: var(--white);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.chart-container {
	margin-top: 20px;
}
.chart-row {
	margin-bottom: 15px;
}
.chart-label {
	font-size: 0.9rem;
	margin-bottom: 5px;
	display: block;
	font-weight: bold;
}
.chart-bar-bg {
	background-color: #eee;
	height: 30px;
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
}
.chart-bar {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 10px;
	color: #fff;
	font-size: 0.8rem;
	font-weight: bold;
	border-radius: 15px;
}
.bar-ha { width: 70%; background-color: #aaa; }
.bar-pg { width: 91%; background: linear-gradient(90deg, #d4af37, #f3d87e); position: relative; }
.bar-pg::after {
	content: "約130%";
	position: absolute;
	right: 15px;
	color: #333;
}

.cospa-container {
	background: var(--white);
	padding: 10px 40px 40px 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.cost-chart {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}
.cost-row {
	display: flex;
	align-items: center;
}
.cost-label {
	width: 120px;
	font-weight: bold;
	font-size: 0.9rem;
}
.bar-container {
	flex: 1;
	height: 40px;
	display: flex;
	border-radius: 5px;
	overflow: hidden;
	margin: 0 10px;
	background: #eee;
}
.bar-segment {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.8rem;
	white-space: nowrap;
	overflow: hidden;
}

.seg-ad { background-color: #95a5a6; width: 40%; }
.seg-pkg { background-color: #7f8c8d; width: 15%; }
.seg-mat { background-color: #d4af37; width: 15%; font-weight: bold; }
.seg-other { background-color: #bdc3c7; width: 30%; }

.seg-mat-huge { background-color: #d4af37; width: 50%; }
.seg-min { background-color: #ecf0f1; color:#999; width: 40%; }

.cost-price {
	width: 100px;
	text-align: right;
	font-weight: bold;
	font-size: 1.1rem;
}
.comparison-note {
	font-size: 0.8rem;
	color: #666;
	margin-top: 20px;
	text-align: right;
}

.step-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.step-card {
	flex: 1;
	min-width: 200px;
	background: var(--white);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	border-top: 4px solid var(--primary-color);
}
.step-num {
	display: inline-block;
	background: var(--primary-color);
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	margin-bottom: 15px;
}

.qa-box {
	max-width: 800px;
	margin: 0 auto;
}
.qa-item {
	background: var(--white);
	margin-bottom: 15px;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.qa-q {
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
}
.qa-q::before { content: "Q."; color: var(--accent-color); margin-right: 10px; font-size: 1.2rem; }
.qa-a {
	font-size: 0.95rem;
	line-height: 1.6;
	padding-left: 25px;
	color: #555;
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}
.price-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	position: relative;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	color: var(--text-color);
}
.price-card.best-deal {
	border: 3px solid var(--accent-color);
	transform: scale(1.05);
	z-index: 10;
}
.best-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-color);
	color: #fff;
	padding: 8px 25px;
	border-radius: 30px;
	font-weight: bold;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	white-space: nowrap;
}
.price-main { font-size: 2.5rem; font-weight: bold; color: var(--primary-color); line-height: 1; margin: 15px 0; }
.price-sub { color: var(--gray-text); font-size: 0.9rem; margin-bottom: 20px; }
.discount-label {
	background: #ffecec;
	color: #c0392b;
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 10px;
}
.price-details {
	text-align: left;
	margin: 20px 0;
	border-top: 1px solid #eee;
	padding-top: 20px;
}
.price-check {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.price-check::before {
	content: "?";
	color: var(--accent-color);
	position: absolute;
	left: 0;
}

.ingredients {
	background-color: #222;
	color: #999;
	padding: 60px 0;
	font-size: 0.85rem;
}
.ingredients-list-box {
	background: #333;
	padding: 15px;
	border-radius: 5px;
	max-height: 150px;
	overflow-y: auto;
	margin-top: 20px;
	font-size: 0.75rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.hero h1 { font-size: 2rem; }
	.mechanism-box { flex-direction: column; }
	.cost-row { flex-direction: column; align-items: flex-start; margin-bottom: 20px; }
	.bar-container { width: 100%; margin: 10px 0; }
	.price-card.best-deal { transform: scale(1); margin-top: 20px; }
	.cost-price { width: 100%; text-align: left; }
}
