/* ===== Floating LINE contact button ===== */
.static-line-wrap {
	position: fixed;
	right: 18px;
	bottom: 22px;
	z-index: 9999;
}
.static-line-button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: #00c300;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 40px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	font-weight: 600;
	transition: background 0.2s ease, transform 0.2s ease;
}
.static-line-button:hover {
	background: #00a800;
	transform: translateY(-2px);
}
.static-line-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: #fff;
	color: #00c300;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
}
.static-line-label {
	font-size: 15px;
	line-height: 1;
}

/* ===== Cookie notice ===== */
#cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	display: none;
	font-size: 14px;
	line-height: 1.6;
	padding: 12px 20px;
	text-align: center;
	box-sizing: border-box;
}
#cookie-notice.cookie-notice-visible {
	display: block;
}
#cookie-notice .cookie-notice-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
#cookie-notice #cn-notice-text {
	margin: 0;
}
#cookie-notice #cn-notice-buttons {
	display: inline-flex;
	gap: 8px;
}
.cn-button {
	border: none;
	border-radius: 3px;
	padding: 8px 18px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	line-height: 1.4;
}
.cn-button:hover {
	opacity: 0.9;
}

/* ===== Content polish ===== */
@media (min-width: 769px) {
	.entry-content {
		font-size: 17px;
	}
}
