/* ===========================
   PLH LP メインスタイル
   =========================== */

:root {
	--color-text: #222;
	--color-bg: #fff;
	--color-accent: #0066ff;
	--max-width: 1080px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.7;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-accent);
}

/* ヘッダー */
.site-header__inner,
.site-footer__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header__title {
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--color-text);
}

.site-nav {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ===========================
   TOPページ（画像LP）
   - SP : 横幅いっぱい（width:100%）
   - PC : 375px固定で中央寄せ
   =========================== */
.lp {
	width: 100%;          /* SP: 横幅いっぱい */
	margin: 0 auto;
}

.lp__img {
	display: block;       /* 画像間の余白を消し、縦に隙間なく積む */
	width: 100%;
	height: auto;
}

/* PC（タブレット以上）では375px幅で中央寄せ */
@media (min-width: 768px) {
	.lp {
		width: 375px;
		max-width: 100%;
	}
}

/* ===========================
   お問い合わせフォーム（Contact Form 7）
   =========================== */
.lp-contact {
	background: #d5cfc2;          /* 画像に合わせたベージュ */
	padding: 1.5rem 1rem 2.5rem;
	color: #3a3a36;
}

.lp-contact .form-row {
	margin-bottom: 1.5rem;
}

.lp-contact .form-label {
	display: block;
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: #3a3a36;
}

/* 入力欄（白背景・角なし） */
.lp-contact .form-input,
.lp-contact .form-textarea {
	width: 100%;
	border: none;
	background: #fff;
	padding: 0.75rem;
	font-size: 1rem;
	color: #333;
	box-sizing: border-box;
}

.lp-contact .form-input {
	height: 3rem;
}

.lp-contact .form-textarea {
	min-height: 8rem;
	resize: vertical;
	margin-top: 0.75rem;
}

/* チェックボックス */
.lp-contact .wpcf7-checkbox .wpcf7-list-item {
	display: block;
	margin: 0 0 0.4rem;
}

.lp-contact .wpcf7-checkbox .wpcf7-list-item-label {
	margin-left: 0.4rem;
	font-size: 12px;
}

/* CF7（または他CSS）が付与する擬似要素を打ち消す */
.lp-contact .wpcf7-list-item-label::before {
	content: none !important;
	display: none !important;
}

/* 送信中スピナーを非表示 */
.lp-contact .wpcf7-spinner {
	display: none !important;
}

/* 送信ボタン */
.lp-contact .form-submit {
	text-align: center;
	margin-top: 2rem;
}

.lp-contact .wpcf7-submit {
	display: inline-block;
	min-width: 12rem;
	padding: 0.9rem 2.5rem;
	border: none;
	border-radius: 9999px;
	background: #5f6c5e;          /* ダークグリーン */
	color: #fff;
	font-size: 1.05rem;
	letter-spacing: 0.1em;
	cursor: pointer;
}

.lp-contact .wpcf7-submit:hover {
	opacity: 0.9;
}

/* SNS案内 */
.lp-contact__sns {
	text-align: center;
	margin-top: 1.75rem;
}

.lp-contact__sns-text {
	font-size: 0.95rem;
	line-height: 1.8;
	margin: 0 0 0.5rem;
}

.lp-contact__sns-id {
	font-size: 1.15rem;
	margin: 0;
}

.lp-contact__notice {
	background: #fff3f3;
	color: #b00;
	padding: 1rem;
	font-size: 0.9rem;
	text-align: center;
}

/* CF7 のバリデーション・確認メッセージ */
.lp-contact .wpcf7-response-output {
	margin: 1rem 0 0;
	font-size: 0.9rem;
}

/* ヒーロー */
.lp-hero {
	padding: 6rem 1.25rem;
	text-align: center;
	background: linear-gradient(135deg, #f5f8ff, #eef3ff);
}

.lp-hero__title {
	font-size: 2.5rem;
	margin: 0 0 1rem;
}

.lp-hero__lead {
	font-size: 1.125rem;
	margin: 0 0 2rem;
}

.lp-hero__cta {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: var(--color-accent);
	color: #fff;
	text-decoration: none;
	border-radius: 9999px;
	font-weight: 700;
}

/* コンテンツ */
.lp-content__inner,
.content-area {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 3rem 1.25rem;
}

/* フッター */
.site-footer {
	border-top: 1px solid #eee;
	margin-top: 3rem;
}

.site-footer__copyright {
	font-size: 0.875rem;
	color: #666;
}
