/*
Theme Name: Let's Ride! Lightning Child
Template: lightning
Version: 1.0.0
Text Domain: letsride-lightning-child
*/

:root {
	--lr-color-primary: #D4537E;
	--lr-color-primary-dark: #993556;
	--lr-color-secondary: #1D9E75;
	--lr-color-secondary-dark: #0F6E56;
	--lr-color-bg: #FDF8F0;
	--lr-color-bg-alt: #FBEAF0;
	--lr-color-text: #2C2C2A;
	--lr-color-text-muted: #5F5E5A;
	--lr-color-border: #E8DFD0;
	--lr-radius-card: 16px;
	--lr-radius-button: 999px;
}

* {
	box-sizing: border-box;
}

body {
	background-color: var(--lr-color-bg);
	color: var(--lr-color-text);
	margin: 0;
}

.lr-placeholder-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--lr-radius-card);
	background: repeating-linear-gradient(45deg, #EFE9DC, #EFE9DC 10px, #E8DFD0 10px, #E8DFD0 20px);
}

.lr-placeholder-image--labeled {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lr-placeholder-image__label {
	background: rgba(255, 255, 255, 0.85);
	color: var(--lr-color-text-muted);
	font-size: 0.85em;
	font-weight: 700;
	padding: 0.4em 1em;
	border-radius: var(--lr-radius-button);
}

/* ===== ヘッダー(全ページ共通) ===== */

.lr-header {
	background: #fff;
	border-bottom: 1px solid var(--lr-color-border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.lr-header__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.lr-header__logo {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.lr-header__logo img.custom-logo {
	height: 40px;
	width: 40px;
	object-fit: contain;
}

.lr-header__sns.lr-icon-instagram svg {
	width: 40px;
	height: 40px;
}

.lr-header__logo-text {
	font-weight: 700;
	font-size: 1.3em;
	color: var(--lr-color-primary);
	letter-spacing: 0.05em;
}

.lr-header__menu {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.lr-header__menu a {
	text-decoration: none;
	color: var(--lr-color-text);
	font-weight: 700;
	font-size: 0.95em;
}

.lr-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.lr-header__sns {
	display: inline-flex;
}

.lr-icon-instagram {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.lr-header__menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.lr-header__menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--lr-color-text);
}

/* ===== フッター(全ページ共通) ===== */

.lr-footer {
	background: var(--lr-color-secondary-dark);
	color: #fff;
	margin-top: 40px;
	padding: 40px 20px 20px;
}

.lr-footer__inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 2fr 1fr;
	gap: 24px;
}

.lr-footer__logo {
	font-weight: 700;
	font-size: 1.2em;
}

.lr-footer__brand img.custom-logo {
	height: 40px;
	width: 40px;
	object-fit: contain;
}

.lr-footer__sns .lr-icon-instagram svg {
	width: 40px;
	height: 40px;
}

.lr-footer__sns a {
	color: #fff;
	text-decoration: none;
}

.lr-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.lr-footer__menu a,
.lr-footer__contact a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9em;
}

.lr-footer__copyright {
	text-align: center;
	font-size: 0.75em;
	opacity: 0.8;
	margin-top: 30px;
}

/* ===== レスポンシブ(全ページ共通) ===== */

@media (max-width: 780px) {
	.lr-header__menu-toggle {
		display: flex;
	}

	.lr-header__menu {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 0;
		order: 3;
	}

	.lr-header__menu.is-open {
		display: flex;
	}

	.lr-header__menu li {
		border-top: 1px solid var(--lr-color-border);
	}

	.lr-header__menu a {
		display: block;
		padding: 12px 4px;
	}

	.lr-footer__inner {
		grid-template-columns: 1fr;
	}
}

.lr-section-title {
	position: relative;
	display: inline-block;
	font-size: 1.5em;
	font-weight: 700;
	margin: 0 0 2em;
	padding-bottom: 0.4em;
}

.lr-section-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: var(--lr-color-primary);
	border-radius: 2px;
}

.lr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7em 1.6em;
	border-radius: var(--lr-radius-button);
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.lr-btn:hover {
	opacity: 0.85;
}

.lr-btn--primary {
	background: var(--lr-color-secondary);
	color: #fff;
}

.lr-btn--outline {
	background: transparent;
	border: 1px solid var(--lr-color-border);
	color: var(--lr-color-text);
}

.lr-badge {
	display: inline-block;
	padding: 0.2em 0.9em;
	border-radius: var(--lr-radius-button);
	font-size: 0.8em;
	font-weight: 700;
	background: var(--lr-color-bg-alt);
	color: var(--lr-color-primary-dark);
}

.lr-badge--status {
	background: #F1EFE8;
	color: #5F5E5A;
}
