@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700&display=swap');

/* ===== CSS Variables ===== */
:root {
	--green: #85bb48;
	--green-light: #e8f5d6;
	--green-dark: #6a9a38;
	--teal: #127e62;
	--teal-light: #e0f2ed;
	--teal-dark: #0a5e48;
	--orange: #fc9220;
	--orange-light: #fff4e6;
	--text: #333333;
	--text-light: #666666;
	--text-muted: #999999;
	--bg: #fafaf7;
	--white: #ffffff;
	--border: #e0e0d8;
	--shadow: 0 2px 8px rgba(0,0,0,0.06);
	--shadow-hover: 0 4px 16px rgba(0,0,0,0.10);
	--radius: 12px;
	--radius-sm: 8px;
	--max-width: 1100px;
}

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

body {
	font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== Header ===== */
.site-header {
	background: var(--white);
	border-bottom: 3px solid var(--green);
	padding: 0 24px;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.logo {
	font-size: 20px;
	font-weight: 700;
	color: var(--teal);
	letter-spacing: 0.02em;
}

.logo span {
	color: var(--green);
}

/* Desktop Nav */
.nav-desktop {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-desktop a {
	font-size: 13px;
	font-weight: 500;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover {
	background: var(--green-light);
	color: var(--teal);
}

.nav-desktop a.active {
	color: var(--green);
	font-weight: 700;
}

.nav-desktop .nav-cta {
	background: var(--green);
	color: var(--white);
	font-weight: 600;
	border-radius: 24px;
	padding: 8px 20px;
	margin-left: 8px;
}
.nav-desktop .nav-cta:hover {
	background: var(--green-dark);
}

/* Mobile Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
	background: none;
	border: none;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
	display: none;
	position: absolute;
	top: 68px;
	left: 0;
	right: 0;
	background: var(--white);
	border-bottom: 3px solid var(--green);
	padding: 16px 24px;
	box-shadow: var(--shadow-hover);
}

.nav-mobile.open {
	display: block;
}

.nav-mobile a {
	display: block;
	padding: 12px 0;
	font-size: 15px;
	border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
	border-bottom: none;
}

.nav-mobile .nav-cta-mobile {
	display: block;
	text-align: center;
	background: var(--green);
	color: var(--white);
	font-weight: 600;
	border-radius: 24px;
	padding: 12px 20px;
	margin-top: 12px;
}

/* ===== Section Common ===== */
.section {
	padding: 72px 24px;
}

.section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

/* Section title: / タイトル / style matching original site */
.section-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--teal);
	text-align: center;
	margin-bottom: 8px;
	letter-spacing: 0.04em;
}

.section-title-en {
	font-size: 12px;
	font-weight: 500;
	color: var(--green);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 36px;
}

.section-title-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 8px;
}

.section-title-bar::before,
.section-title-bar::after {
	content: "/";
	font-size: 20px;
	color: var(--green);
	opacity: 0.5;
	font-weight: 300;
}

.section-subtitle {
	font-size: 15px;
	color: var(--text-light);
	text-align: center;
	margin-bottom: 40px;
}

/* Left-aligned variant */
.section-title-left {
	font-size: 24px;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 12px;
	padding-left: 16px;
	border-left: 4px solid var(--green);
}

.section-bg {
	background: var(--white);
}

/* ===== Hero ===== */
.hero {
	background: linear-gradient(135deg, var(--teal) 0%, var(--green-dark) 100%);
	color: var(--white);
	padding: 56px 24px;
	text-align: center;
}

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

.hero h1 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.hero .hero-sub {
	font-size: 15px;
	opacity: 0.92;
	line-height: 1.8;
	margin-bottom: 28px;
}

.hero .hero-cta {
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	padding: 14px 40px;
	border-radius: 30px;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 4px 12px rgba(252, 146, 32, 0.3);
}

.hero .hero-cta:hover {
	background: #e58318;
	transform: translateY(-2px);
}

/* ===== Card Grid ===== */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 28px 24px;
	box-shadow: var(--shadow);
	transition: box-shadow 0.2s, transform 0.2s;
	border: 1px solid var(--border);
}

.card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.card-icon {
	font-size: 36px;
	margin-bottom: 12px;
}

.card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--teal);
	margin-bottom: 8px;
}

.card p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.7;
}

.card-link {
	display: inline-block;
	margin-top: 12px;
	color: var(--green);
	font-size: 14px;
	font-weight: 600;
}

.card-link::after {
	content: " \2192";
}

/* ===== Buttons ===== */
.btn {
	display: inline-block;
	font-family: inherit;
	font-weight: 600;
	border-radius: 30px;
	padding: 12px 32px;
	font-size: 15px;
	transition: background 0.2s, transform 0.2s;
	cursor: pointer;
	border: none;
	text-align: center;
}

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

.btn-green:hover {
	background: var(--green-dark);
	transform: translateY(-1px);
}

.btn-orange {
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(252, 146, 32, 0.3);
}

.btn-orange:hover {
	background: #e58318;
	transform: translateY(-1px);
}

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

.btn-outline:hover {
	background: var(--teal);
	color: var(--white);
}

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

.btn-white:hover {
	background: var(--green-light);
}

/* ===== Info Table ===== */
.info-table {
	width: 100%;
	border-collapse: collapse;
}
.info-table th,
.info-table td {
	padding: 14px 16px;
	text-align: left;
	font-size: 14px;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
}
.info-table th {
	width: 140px;
	font-weight: 600;
	color: var(--teal);
	background: var(--teal-light);
	white-space: nowrap;
}

/* ===== Hours Table ===== */
.hours-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 14px;
}

.hours-table th, .hours-table td {
	padding: 10px 8px;
	border: 1px solid var(--border);
}

.hours-table thead th {
	background: var(--teal);
	color: var(--white);
	font-weight: 600;
	font-size: 13px;
}

.hours-table thead th.sat {
	background: #2a7ab5;
}

.hours-table thead th.sun {
	background: #c0392b;
}

.hours-table tbody th {
	background: var(--teal-light);
	font-weight: 600;
	color: var(--teal);
}

.hours-note {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 8px;
}

/* ===== Footer ===== */
.site-footer {
	background: var(--teal-dark);
	color: rgba(255,255,255,0.85);
	padding: 48px 24px 24px;
}

.footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.footer-col h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--white);
}

.footer-col a {
	display: block;
	font-size: 13px;
	padding: 4px 0;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.footer-col a:hover {
	opacity: 1;
}

.footer-col p {
	font-size: 13px;
	line-height: 1.7;
	opacity: 0.8;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 20px;
	text-align: center;
	font-size: 12px;
	opacity: 0.6;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
	padding: 12px 24px;
	font-size: 13px;
	color: var(--text-muted);
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.breadcrumb a {
	color: var(--green);
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/* ===== CTA Banner ===== */
.cta-banner {
	background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
	color: var(--white);
	text-align: center;
	padding: 56px 24px;
}

.cta-banner h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.cta-banner p {
	font-size: 15px;
	opacity: 0.92;
	margin-bottom: 24px;
}

/* ===== FAQ Accordion ===== */
.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
	background: var(--white);
	overflow: hidden;
}

.faq-question {
	padding: 16px 20px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}

.faq-question:hover {
	background: var(--green-light);
}

.faq-question::after {
	content: "+";
	font-size: 20px;
	font-weight: 300;
	color: var(--green);
	transition: transform 0.3s;
	flex-shrink: 0;
}

.faq-item.open .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer-inner {
	padding: 0 20px 16px;
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.8;
}

/* ===== Chatbot ===== */
.chatbot-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(133,187,72,0.4);
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(133,187,72,0.5);
}

.chatbot-tooltip {
	position: fixed;
	bottom: 92px;
	right: 24px;
	background: var(--white);
	color: var(--text);
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	font-size: 13px;
	box-shadow: var(--shadow-hover);
	z-index: 999;
	white-space: nowrap;
	border: 1px solid var(--border);
}

.chatbot-tooltip::after {
	content: "";
	position: absolute;
	bottom: -6px;
	right: 24px;
	width: 12px;
	height: 12px;
	background: var(--white);
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	transform: rotate(45deg);
}

/* ===== ヒーロー ===== */
.cl-hero {
	background: linear-gradient(180deg, #f2f9f6 0%, #ffffff 100%);
	padding: 32px 24px 24px;
}

.cl-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
}

.cl-hero h1 {
	font-size: 34px;
	font-weight: 700;
	color: var(--teal);
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	line-height: 1.3;
}

.cl-hero .hero-catch {
	font-size: 15px;
	color: var(--text-light);
	font-weight: 500;
	line-height: 1.8;
}

.cl-hero-img {
	width: 280px;
	max-width: 36vw;
	height: auto;
}

/* ===== メイン共通 ===== */
.cl-main {
	max-width: 1100px;
	margin: 0 auto;
	padding: 18px 20px 4px;
}

/* セクション1（左右2カラム） */
.row-1 {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

/* セクション2〜4は縦積み */
.stack > * {
	margin-bottom: 14px;
}

.stack > *:last-child {
	margin-bottom: 0;
}

/* ===== ボックス共通 ===== */
.box {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 16px 20px;
}

.box.tinted {
	background: #f4faf6;
	border-color: #d9ebd7;
}

/* 数字付き見出し */
.box-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.box-num {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--teal);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.box-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--teal);
	line-height: 1.4;
	margin: 0;
}

.box-title .subtitle {
	font-weight: 500;
	color: var(--text-light);
	font-size: 14px;
	margin-left: 4px;
}

/* Section 1: チェックリスト（横に書き切る） */
.check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 6px 0 6px 28px;
	font-size: 14px;
	line-height: 1.8;
	list-style: none;
	color: var(--text);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 1.5px solid var(--teal);
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' fill='none' stroke='%23127e62' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px 14px;
}

.check-list li .red {
	color: #c92828;
	font-weight: 700;
}

/* Section 1: 目の不調 (right) */
.symptom-img {
	display: block;
	width: 100%;
	max-width: 260px;
	height: auto;
	margin: 8px auto 4px;
}

.symptom-labels {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	max-width: 260px;
	margin: 0 auto 10px;
	text-align: center;
}

.symptom-labels span {
	font-size: 12.5px;
	color: var(--teal-dark);
	font-weight: 700;
}

.symptom-note {
	font-size: 12.5px;
	color: var(--text-light);
	line-height: 1.75;
}

/* Section 2: 診療の流れ */
.flow-img {
	display: block;
	width: 100%;
	max-width: 560px;
	height: auto;
	margin: 2px auto 4px;
}

.flow-labels {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	max-width: 560px;
	margin: 0 auto 12px;
	text-align: center;
}

.flow-labels span {
	font-size: 13px;
	color: var(--teal-dark);
	font-weight: 700;
}

.flow-caption {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #f7faf6;
	border: 1px solid #d9ebd7;
	border-radius: 8px;
	padding: 8px 14px;
	max-width: 520px;
	margin: 0 auto;
}

.flow-caption img {
	width: 36px;
	height: auto;
	flex-shrink: 0;
}

.flow-caption p {
	font-size: 12.5px;
	color: var(--text);
	line-height: 1.55;
}

/* Section 3/4: 2カラム (画像左 + テキスト右) */
.split-row {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 22px;
	align-items: center;
}

.split-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.first-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}

.first-bullets li {
	position: relative;
	padding: 5px 0 5px 16px;
	font-size: 14.5px;
	color: var(--text);
	line-height: 1.8;
	list-style: none;
}

.first-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
}

.first-bullets .red {
	color: #c92828;
	font-weight: 700;
}

/* Section 4: 定期購入 */
.sub-intro {
	font-size: 14.5px;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 12px;
}

.sub-merits-heading {
	font-size: 13px;
	font-weight: 700;
	color: var(--teal-dark);
	margin-bottom: 8px;
}

.sub-merits {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 14px;
}

.sub-merits li {
	position: relative;
	padding: 3px 0 3px 26px;
	font-size: 13px;
	color: var(--text);
	line-height: 1.6;
	list-style: none;
}

.sub-merits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 17px;
	height: 17px;
	border-radius: 4px;
	border: 1.5px solid var(--teal);
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' fill='none' stroke='%23127e62' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 13px 13px;
}

/* 定期購入サービスリンク */
.service-links-heading {
	font-size: 13px;
	font-weight: 700;
	color: var(--teal-dark);
	text-align: center;
	margin: 20px 0 10px;
}

.service-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.service-link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	background: #fff;
	border: 1.5px solid var(--teal);
	border-radius: 6px;
	padding: 12px 28px 12px 12px;
	font-weight: 700;
	color: var(--teal);
	text-decoration: none;
	min-height: 60px;
	line-height: 1.35;
	transition: all 0.2s;
}

.service-link .service-name {
	font-size: 15px;
	font-weight: 700;
}

.service-link .service-maker {
	font-size: 11.5px;
	font-weight: 500;
	opacity: 0.85;
}

.service-link .service-maker::before {
	content: "（";
}

.service-link .service-maker::after {
	content: "）";
}

.service-link .arrow {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.service-link:hover {
	background: var(--teal);
	color: #fff;
}

.service-link:hover .arrow {
	color: #fff;
}

.arrow {
	color: var(--teal);
	font-size: 14px;
}

/* Section 5: 取扱レンズ */
.lens-section {
	max-width: 1100px;
	margin: 0 auto 20px;
	padding: 0 20px;
}

.lens-section-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.lens-section-note {
	font-size: 11.5px;
	color: var(--text-muted);
	margin-left: auto;
}

.lens-table {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}

.lens-col {
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--border);
	align-self: start;
}

.lens-col:last-child {
	border-right: none;
}

.lens-col-head {
	background: var(--teal);
	color: #fff;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	padding: 7px 4px;
}

.lens-mini {
	padding: 8px 6px 10px;
	border-top: 1px solid var(--border);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 175px;
}

.lens-mini:first-of-type {
	border-top: none;
}

.lens-mini-img {
	width: 100%;
	aspect-ratio: 3 / 1;
	background: #fff;
	display: block;
	margin-bottom: 6px;
	overflow: hidden;
	flex-shrink: 0;
}

.lens-mini-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lens-mini-name {
	font-size: 11px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.3;
	margin-bottom: 3px;
	min-height: 29px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lens-mini-maker {
	font-size: 9px;
	color: var(--text-muted);
	line-height: 1.3;
	margin-bottom: 4px;
	min-height: 12px;
}

.lens-mini-maker a {
	color: var(--teal);
	text-decoration: none;
	border-bottom: 1px dotted var(--teal);
	padding-bottom: 1px;
	transition: color 0.15s;
}

.lens-mini-maker a:hover {
	color: var(--teal-dark);
	border-bottom-style: solid;
}

.lens-mini-type {
	display: inline-block;
	font-size: 9px;
	color: var(--teal);
	background: #eaf3f0;
	border: 1px solid #cfe3dc;
	padding: 0 6px;
	border-radius: 4px;
	margin-bottom: 4px;
	min-height: 15px;
}

.lens-mini-feat {
	font-size: 10px;
	color: var(--text-light);
	line-height: 1.45;
	margin-bottom: 4px;
}

.lens-mini-badge {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 9.5px;
	font-weight: 600;
	color: var(--green-dark);
	background: #f1f8ec;
	border: 1px solid #b7d896;
	padding: 2px 7px;
	border-radius: 10px;
	margin-top: auto;
	text-decoration: none;
	transition: all 0.15s;
	white-space: nowrap;
}

a.lens-mini-badge:hover {
	background: var(--green-dark);
	color: #fff;
	border-color: var(--green-dark);
}

.lens-mini-badge .ext {
	font-size: 9px;
	opacity: 0.85;
}

.lens-mini-badge.hidden {
	visibility: hidden;
}

.lens-note {
	font-size: 11.5px;
	color: var(--text-muted);
	margin-top: 10px;
}

/* Section 6: 安全に */
.safe-section {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px 16px;
}

.safe-row {
	background: #f4faf6;
	border: 1px solid #d9ebd7;
	border-radius: 10px;
	padding: 16px 20px;
}

.safe-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.safe-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

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

.safe-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #fff;
	border-radius: 8px;
	padding: 12px 14px;
}

.safe-icon {
	width: 48px;
	height: auto;
	flex-shrink: 0;
}

.safe-body h4 {
	font-size: 14px;
	color: var(--teal-dark);
	font-weight: 700;
	margin-bottom: 4px;
}

.safe-body p {
	font-size: 12.5px;
	color: var(--text-light);
	line-height: 1.7;
}

.safe-body p .red {
	color: #c92828;
	font-weight: 700;
}

/* 大切なお知らせ */
.notice-final {
	max-width: 1100px;
	margin: 0 auto 24px;
	padding: 0 20px;
}

.notice-final-inner {
	background: #fffaea;
	border: 1px solid #f0e0a5;
	border-radius: 10px;
	padding: 14px 20px;
}

.notice-final h4 {
	font-size: 13px;
	color: #6a5100;
	font-weight: 700;
	margin-bottom: 4px;
}

.notice-final p {
	font-size: 12.5px;
	color: var(--text-light);
	line-height: 1.75;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
	.row-1 {
		grid-template-columns: 1fr;
	}

	.split-row {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: left;
	}

	.split-img {
		max-width: 320px;
		margin: 0 auto;
	}

	.sub-merits {
		grid-template-columns: 1fr 1fr;
	}

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

	.lens-col:nth-child(3n) {
		border-right: none;
	}

	.lens-col:nth-child(n+4) {
		border-top: 1px solid var(--border);
	}

	.safe-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

}

@media (max-width: 600px) {
	.cl-hero {
		padding: 32px 16px 24px;
	}

	.cl-hero-inner {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: left;
	}

	.cl-hero h1 {
		font-size: 26px;
	}

	.cl-hero-img {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.cl-main {
		padding: 16px 12px;
	}

	.row-1 {
		gap: 12px; margin-bottom: 12px;
	}

	.stack > * {
		margin-bottom: 12px;
	}

	.box {
		padding: 16px 18px;
	}

	.flow-labels {
		gap: 2px;
	}

	.flow-labels span {
		font-size: 11px;
	}

	.service-links {
		grid-template-columns: 1fr;
	}

	.service-link {
		padding: 14px;
		font-size: 15px;
		min-height: 50px;
	}

	.lens-section,
	.safe-section,
	.notice-final {
		padding: 0 12px 16px;
	}

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

	.lens-col:nth-child(3n) {
		border-right: 1px solid var(--border);
	}

	.lens-col:nth-child(2n) {
		border-right: none;
	}

	.lens-col:nth-child(n+4) {
		border-top: none;
	}

	.lens-col:nth-child(n+3) {
		border-top: 1px solid var(--border);
	}

	.safe-row {
		padding: 18px 16px;
	}

}


/* ===== Responsive ===== */
@media (max-width: 768px) {
	.nav-desktop {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.hero {
		padding: 40px 20px;
	}

	.hero h1 {
		font-size: 22px;
	}

	.hero .hero-sub {
		font-size: 14px;
	}

	.section {
		padding: 48px 20px;
	}

	.section-title {
		font-size: 21px;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.info-table th {
		width: 100px;
		font-size: 13px;
	}

	.info-table td {
		font-size: 13px;
	}

}

@media (max-width: 480px) {
	.header-inner {
		height: 56px;
	}

	.logo {
		font-size: 17px;
	}

	.hero h1 {
		font-size: 20px;
	}

	.section-title {
		font-size: 19px;
	}

	.chatbot-btn {
		width: 52px;
		height: 52px;
		font-size: 24px;
		bottom: 16px;
		right: 16px;
	}

	.chatbot-tooltip {
		bottom: 76px;
		right: 16px;
		font-size: 12px;
	}

}
