@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--primary: #3eb155;
	--primary-dark: #2d8a40;
	--primary-light: #e8f7ec;
	--sub: #fff100;
	--attention: #ef4444;
	--text-dark: #3a3a3a;
	--text-light: #7d7d7d;
	--white: #fff;
	--black: #000000;
	--bg-section: #fff;
	--radius: 16px;
	--radius-sm: 8px;
	--radius-la: 24px;
	--shadow: 0 4px 24px rgba(0,0,0,0.08);
	--shadow-lg: 0 8px 40px rgba(62,177,85,0.15);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
	font-family: "LINE Seed JP", sans-serif;
	background-color: var(--primary);
	color: var(--text-dark);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	min-width: 0;
	line-height: 1.8; letter-spacing: 0.03em;
}

/* ===== UTILITY ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section-wrap { padding: 16px 24px; }
.card {
	background: var(--bg-section);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 56px 48px;
	margin: 0 auto;
	max-width: 1080px;
}
		
		.section-title-center{ text-align: center;}
@media (max-width: 768px) {
	.card { padding: 32px 20px; }
	.section-wrap { padding: 12px 16px; }
}

.tag {
	display: inline-block;
	background: var(--primary-light);
	color: var(--primary-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 16px;
}

h2 {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 40px;
}
h3 {
	font-size: clamp(18px, 3vw, 22px);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}
p { color: var(--text-dark);}

.text-green { color: var(--primary); }
.text-center { text-align: center; }
.text-lead{ max-width: 680px; margin: 0 auto 40px;}

/* ===== CTA BUTTON ===== */
.btn {
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: var(--black);
	color: var(--white);
	font-family: "LINE Seed JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding: 18px 40px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: box-shadow 0.3s;
	z-index: 0;
}
.btn::before {
	content: '';
	position: absolute;
	top: 0; left: -100%;
	width: 100%; height: 100%;
	background: var(--sub);
	transition: left 0.35s cubic-bezier(.4,0,.2,1);
	z-index: -1;
}
.btn:hover::before { left: 0; }
.btn:hover { box-shadow: 0 6px 24px rgba(62,177,85,0.4); color:var(--black);}
.btn-lg { padding: 22px 56px; font-size: 18px; border-radius: var(--radius-sm); }
.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}
.btn-outline::before { background: var(--primary); }
.btn-outline:hover { color: var(--white); }

/* ===== HEADER ===== */
header {
	background: linear-gradient(135deg, #1a7a32 0%, var(--primary) 50%, #5ec470 100%);
	padding: 0;
	position: relative;
	overflow: hidden;
}
header::before {
	content: '';
	position: absolute;
	top: -60px; right: -80px;
	width: 400px; height: 400px;
	background: rgba(255,241,0,0.12);
	border-radius: 50%;
}
header::after {
	content: '';
	position: absolute;
	bottom: -100px; left: -60px;
	width: 300px; height: 300px;
	background: rgba(255,255,255,0.06);
	border-radius: 50%;
}
.header-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 72px 48px 80px;
	position: relative;
	z-index: 1;
}
@media (max-width: 768px) {
	.header-inner { grid-template-columns: 1fr; padding: 48px 20px 56px; gap: 32px; }
}
.header-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(8px);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 24px;
	border: 1px solid rgba(255,255,255,0.3);
}
header h1 {
	font-size: clamp(28px, 5vw, 48px);
	font-weight: 800;
	color: var(--white);
	line-height: 1.25;
	margin-bottom: 20px;
}
header h1 span {
	background: var(--sub);
	color: var(--text-dark);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: clamp(14px, 2vw, 18px);
	display: inline-block;
	margin-bottom: 8px;
}
.header-lead {
	color: rgba(255,255,255,0.9);
	font-size: clamp(15px, 2vw, 18px);
	margin-bottom: 36px;
	line-height: 1.7;
}
.header-visual {
	background: rgba(255,255,255,0.12);
	border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,0.2);
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	backdrop-filter: blur(8px);
}
.mock-screens {
	display: flex;
	gap: 16px;
	align-items: flex-end;
}
.mock-phone {
	background: #1a1a1a;
	border-radius: 20px;
	padding: 8px;
	width: 100px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	border: 2px solid #333;
}
.mock-phone-screen {
	background: var(--white);
	border-radius: 14px;
	height: 180px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.mock-phone-bar { height: 28px; background: var(--primary); display: flex; align-items: center; padding: 0 8px; }
.mock-phone-bar span { color: var(--white); font-size: 9px; font-weight: 700; }
.mock-phone-content { padding: 8px; flex: 1; }
.mock-row { height: 10px; background: #eee; border-radius: 4px; margin-bottom: 6px; }
.mock-row.short { width: 60%; }
.mock-row.green { background: var(--primary-light); }
.mock-tablet {
	background: #1a1a1a;
	border-radius: 16px;
	padding: 8px;
	width: 150px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	border: 2px solid #333;
}
.mock-tablet-screen {
	background: var(--white);
	border-radius: 10px;
	height: 200px;
	overflow: hidden;
}
.mock-tablet-header { height: 32px; background: var(--primary); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.mock-tablet-header span { color: var(--white); font-size: 10px; font-weight: 700; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px; }
.mock-cell { background: #f5f5f5; border-radius: 4px; height: 30px; display: flex; align-items: center; justify-content: center; }
.mock-cell span { font-size: 8px; color: var(--text-light); }

/* ===== SECTION A ===== */
.section-a-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
		
		.b-pl-section-img{ max-width: 100%;}
		.b-pl-section-img-small{ max-width: 320px;}
@media (max-width: 768px) { .section-a-split { grid-template-columns: 1fr; } }
.plus-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: var(--primary);
	font-weight: 800;
	padding: 24px 0;
}
.crm-card {
	background: var(--primary-light);
	border-radius: var(--radius);
	padding: 32px;
	border-left: 4px solid var(--primary);
}
.crm-card h2 { font-size: 20px; color: var(--primary-dark); }

/* ===== SECTION B ===== */
.benefit-icons {
	display: flex;
	gap: 24px;
	margin: 32px 0;
	flex-wrap: wrap;
}
.benefit-icon-item {
	flex: 1;
	min-width: 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 24px 16px;
	background: var(--primary-light);
	border-radius: var(--radius-sm);
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-icon-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
	width: 64px; height: 64px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 28px; background: var(--primary); color: var(--white);
}
.benefit-icon-label { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.note-text { font-size: 12px; color: var(--text-light); line-height: 1.4; margin-top: 16px; }

/* ===== SECTION C ===== */
.stats-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
		
.stats-row > *:nth-child(1) {
	flex: 1;
}

.stats-row > *:nth-child(2) {
	flex: 2;
}
		
.stats-row p{ color: var(--text-dark);}		
.stats-number { font-size: 40px; font-weight: 800; color: var(--primary); line-height: 1; }
.stats-label { font-size: 14px; color: var(--text-dark); font-weight: 700; }

/* Flow diagram */
.flow-diagram {
	display: flex;
	align-items: center;
	gap: 0;
	padding: 8px 0 16px;
	flex-wrap: wrap;
	justify-content: center;
}
.flow-step {
	flex: 0 0 auto;
	min-width: 80px;
	text-align: center;
	position: relative;
}
@media (max-width: 600px) {
	.flow-arrow { display: none; }
	.flow-step { min-width: 60px; }
	.flow-step-icon { width: 56px; height: 56px; font-size: 22px; }
}
.flow-step-icon {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: var(--primary);
	display: flex; align-items: center; justify-content: center;
	font-size: 28px;
	margin: 0 auto 12px;
	box-shadow: 0 4px 16px rgba(62,177,85,0.3);
}
.flow-step-label { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.flow-arrow {
	font-size: 24px;
	color: var(--primary);
	flex-shrink: 0;
	padding: 0 8px;
	margin-bottom: 24px;
}

/* ===== SECTION D - Features ===== */
.feature-tabs { display: flex; flex-direction: column; gap: 32px; }
.feature-tab {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: 40px;
	background: #f9fafb;
	border-radius: var(--radius);
	border: 1px solid #eee;
}
.feature-tab:nth-child(even) .feature-tab-visual { order: -1; }
@media (max-width: 768px) {
	.feature-tab { grid-template-columns: 1fr; padding: 24px 16px; gap: 24px; }
	.feature-tab:nth-child(even) .feature-tab-visual { order: 0; }
}
.feature-tag {
	display: inline-block;
	background: var(--primary);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 12px;
}
.feature-icons-list {
	display: flex; flex-wrap: wrap;
	gap: 16px;
	margin-top: 20px;
}
.feature-icon-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border: 2px solid var(--primary);
	border-radius: var(--radius-la);
	padding: 4px 16px;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
}
		
		.feature-icon-chip small{ color: var(--text-light);}
.feature-mock-booking {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid #eee;
}
.mock-header-bar {
	background: var(--primary);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.mock-header-bar span { color: var(--white); font-size: 14px; font-weight: 700; }
.mock-body { padding: 16px; }
.mock-date-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.mock-date-chip {
	padding: 6px 14px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 700;
	background: #f3f4f6;
	color: var(--text-light);
	cursor: pointer;
}
.mock-date-chip.active { background: var(--primary); color: var(--white); }
.mock-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-time-slot {
	text-align: center;
	padding: 10px 4px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 700;
	background: var(--primary-light);
	color: var(--primary-dark);
}
.mock-time-slot.busy { background: #f3f4f6; color: #ccc; }
.mock-customer-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	border: 1px solid #eee;
}
.mock-customer-header {
	background: linear-gradient(135deg, var(--primary), #5ec470);
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.mock-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	display: flex; align-items: center; justify-content: center;
	font-size: 20px;
}
.mock-customer-name { color: var(--white); font-weight: 700; font-size: 15px; }
.mock-customer-meta { color: rgba(255,255,255,0.8); font-size: 12px; }
.mock-customer-body { padding: 16px; }
.mock-karte-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 13px;
}
.mock-karte-label { color: var(--text-light); }
.mock-karte-value { font-weight: 700; color: var(--text-dark); }
.mock-message-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	border: 1px solid #eee;
}
.mock-message-header {
	background: var(--primary);
	padding: 12px 16px;
	display: flex; align-items: center; gap: 8px;
}
.mock-message-header span { color: var(--white); font-size: 13px; font-weight: 700; }
.mock-message-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.mock-bubble {
	background: var(--primary);
	color: var(--white);
	font-size: 12px;
	padding: 10px 14px;
	border-radius: 0 12px 12px 12px;
	max-width: 85%;
	line-height: 1.5;
}
.mock-bubble.reply {
	background: #f3f4f6;
	color: var(--text-dark);
	border-radius: 12px 0 12px 12px;
	align-self: flex-end;
}

/* ===== SECTION E - CRM ===== */
.crm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
@media (max-width: 768px) { .crm-grid { grid-template-columns: 1fr; } }
.crm-visual {
	background: linear-gradient(135deg, #f0fdf4, #dcfce7);
	border-radius: var(--radius);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border: 1px solid #bbf7d0;
}
.crm-stat {
	background: var(--white);
	border-radius: var(--radius-sm);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.crm-stat-icon { font-size: 28px; }
.crm-stat-num { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.crm-stat-label { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ===== SECTION F - Comparison ===== */
.compare-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
	padding: 16px 20px;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}
.compare-table thead th { font-size: 15px; font-weight: 800; padding: 20px; }
.compare-table thead th:first-child { text-align: left; background: #f9fafb; }
.compare-table thead th:nth-child(2) { background: #f9fafb; color: var(--text-light); }
.compare-table thead th:nth-child(3) { background: var(--primary); color: var(--white); }
.compare-table tbody tr:hover { background: #fafafa; }
		.compare-table td{ text-align: left; color: var(--text-dark);}
.compare-table td:first-child { text-align: left; font-weight: 700; padding-left: 24px; }
.compare-table td:nth-child(3) { background: rgba(62,177,85,0.05); }
.check { color: var(--primary); font-size: 22px; }
.cross { color: #d1d5db; font-size: 20px; }
.check-partial { color: #f59e0b; font-size: 18px; }

/* ===== SECTION G - Campaign ===== */
.campaign-card {
	background: linear-gradient(135deg, #1a7a32 0%, var(--primary) 60%, #5ec470 100%);
	border-radius: var(--radius);
	padding: 56px 48px;
	color: var(--white);
	position: relative;
	overflow: hidden;
	max-width: 1080px;
	margin: 0 auto;
}
		.campaign-img{ background: var(--white); padding: 32px; border-radius: var(--radius-sm);}
@media (max-width: 768px) { .campaign-card { padding: 32px 20px; } .table-wrapper{ 
	overflow-x: auto; /* 横方向にはみ出したらスクロール */
	white-space: nowrap; /* 中身を勝手に改行させたくない場合 */
	-webkit-overflow-scrolling: touch; /* iPhoneでのスクロールを滑らかにする */
}
}
.campaign-card h2 { color: var(--white); margin-bottom: 12px; }
.campaign-lead { color: rgba(255,255,255,0.9); margin-bottom: 36px; text-align: center;}
.campaign-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 40px;
}
.campaign-benefit {
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: var(--radius-sm);
	padding: 24px;
	text-align: center;
}
.campaign-benefit-icon { font-size: 36px; margin-bottom: 8px; }
.campaign-benefit-title { font-size: 18px; font-weight: 800; color: var(--sub); margin-bottom: 4px; }
.campaign-benefit-desc { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.campaign-notes { font-size: 11px; color: var(--white); margin-top: 40px; font-weight: 400;}
.btn-white {
	background: var(--white);
	color: var(--primary-dark);
	font-weight: 800;
}
.btn-white::before { background: var(--sub); }
.btn-white:hover { color: var(--text-dark); }
.btn-center { text-align: center; margin-top: 16px; }

/* ===== FOOTER ===== */
footer {
	background: var(--black);
	color: var(--white);
	padding: 48px 24px 24px;
}
.footer-inner {
	max-width: 1080px;
	margin: 0 auto;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.footer-logo-mark {
	width: 44px; height: 44px;
	background: var(--primary);
	border-radius: var(--radius-sm);
	display: flex; align-items: center; justify-content: center;
	font-size: 24px;
}
.footer-logo-text img{ max-width: 150px;}
.footer-addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}
@media (max-width: 600px) { .footer-addresses { grid-template-columns: 1fr; } }
.footer-addr-label { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.footer-addr-text { font-size: 13px; color: var(--white); }
.footer-marks {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-bottom: 24px;
}
.footer-mark {
	background: #333;
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
	padding: 6px 12px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}
.footer-links a {
	font-size: 13px;
	color: var(--white);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-copy {
	font-size: 12px;
	color: var(--white);
	padding-top: 16px;
	border-top: 1px solid var(--text-light);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 100;
}
@media (max-width: 768px) {
	.sticky-cta { bottom: 16px; right: 16px; }
	.sticky-cta .btn { font-size: 14px; padding: 14px 20px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* section labels */
.section-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 8px;
}