/*
 * NETGEYSER 会員サイト — お客様向け画面の共通スタイル【2026-08-30】
 * 親サイト netgeyser.co.jp に揃える（Noto Sans JP・文字 #333・ブランドブルー #008cd6）。
 * 対象＝layout-member.php で描画する6ページ（ログイン／再設定2／マイページ／規約／ポリシー）。
 * SWELL の CSS は読み込まない。装飾は最小＝色はリンクとボタンにだけ、影・グラデーション・アクセント罫線は使わない。
 */
:root {
	--ink: #333;
	--muted: #6b7378;
	--line: #e1e1e1;
	--line-soft: #eef1f3;
	--field: #c9ced3;
	--brand: #008cd6;
	--brand-deep: #0077b6;
	--tint: #e6f3fb;
	--bg: #fff;
	--bg-soft: #f6f8fa;
	--error: #c0392b;
	--error-bg: #fbf0ee;
	--radius: 4px;
	--w-content: 760px;
	--w-form: 420px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .02em;
	-webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: underline; text-underline-offset: .15em; text-decoration-thickness: 1px; }
a:hover { color: var(--brand-deep); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { line-height: 1.4; letter-spacing: .03em; }

/* ---------- 骨組み ---------- */
.lcs-site { min-height: 100vh; display: flex; flex-direction: column; }
.lcs-site-header { padding: 16px 20px; }
.lcs-site-header__inner { max-width: var(--w-content); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lcs-brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; }
.lcs-brand img { display: block; width: 150px; height: 24px; }
.lcs-brand__sub { font-size: 13px; color: var(--muted); letter-spacing: .08em; }
.lcs-site-nav { display: flex; gap: 20px; font-size: 14px; }
.lcs-site-nav a { color: var(--ink); text-decoration: none; }
.lcs-site-nav a:hover { color: var(--brand); }
.lcs-site-main { flex: 1; padding: 20px 20px 72px; }
.lcs-site-main__inner { max-width: var(--w-content); margin: 0 auto; }
.lcs-page--narrow .lcs-site-main__inner { max-width: var(--w-form); }
.lcs-page-title { font-size: 22px; font-weight: 700; margin: 20px 0 24px; }
.lcs-site-footer { padding: 24px 20px 36px; background: var(--bg-soft); font-size: 13px; color: var(--muted); }
.lcs-site-footer__inner { max-width: var(--w-content); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; }
.lcs-site-footer a { color: var(--muted); text-decoration: none; }
.lcs-site-footer a:hover { color: var(--brand); }
.lcs-site-footer__links { display: flex; gap: 20px; }

/* ---------- フォーム（ログイン・再設定） ---------- */
.lcs-form { margin: 0; }
.lcs-row { margin: 0 0 20px; }
.lcs-row label { display: block; font-size: 14px; font-weight: 500; margin: 0 0 6px; }
.lcs-row input[type="email"],
.lcs-row input[type="password"],
.lcs-row input[type="text"] {
	display: block; width: 100%; height: 48px; padding: 0 14px;
	font: inherit; font-size: 16px; color: var(--ink);
	background: #fff; border: 1px solid var(--field); border-radius: var(--radius);
	transition: border-color .12s, box-shadow .12s;
}
.lcs-row input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--tint); }
.lcs-hint { margin: 6px 0 0; font-size: 13px; line-height: 1.7; color: var(--muted); }
.lcs-check { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 400; cursor: pointer; }
.lcs-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--brand); }
.lcs-submit {
	display: inline-flex; align-items: center; justify-content: center;
	width: 100%; min-height: 48px; padding: 0 20px; margin: 4px 0 0;
	font: inherit; font-size: 16px; font-weight: 500; color: #fff;
	background: var(--brand); border: 0; border-radius: var(--radius);
	cursor: pointer; text-decoration: none; transition: background-color .12s;
}
.lcs-submit:hover { background: var(--brand-deep); color: #fff; }
.cf-turnstile { margin: 0 0 16px; }
.lcs-error { margin: 0 0 20px; padding: 12px 14px; font-size: 14px; line-height: 1.6; color: var(--error); background: var(--error-bg); border-radius: var(--radius); }
.lcs-note { font-size: 14px; line-height: 1.8; color: var(--muted); }
.lcs-member h2 { font-size: 18px; font-weight: 700; margin: 0 0 12px; }
.lcs-member-login .lcs-note { margin: 20px 0 0; text-align: center; }
.lcs-member-lost .lcs-note, .lcs-member-reset .lcs-note { margin: 0 0 20px; }
.lcs-member-lost p, .lcs-member-reset p { margin: 0 0 14px; }
.lcs-apply > p { margin: 0 0 14px; }

/* ---------- マイページ ---------- */
.lcs-dash-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 16px; margin: 16px 0 8px; }
.lcs-dash-head h1 { font-size: 22px; font-weight: 700; margin: 0; }
.lcs-dash-head p { margin: 0; font-size: 14px; color: var(--muted); }
.lcs-dash-section h2 { font-size: 17px; font-weight: 700; margin: 36px 0 10px; }
.lcs-dash-contract { margin: 0 0 8px; }
.lcs-dash-contract h3 { font-size: 15px; font-weight: 700; margin: 24px 0 8px; }
.lcs-dash-table { width: 100%; border-collapse: collapse; margin: 0 0 8px; font-size: 15px; }
.lcs-dash-table th, .lcs-dash-table td { padding: 12px 8px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.lcs-dash-table tbody th { width: 9.5em; font-size: 14px; font-weight: 500; color: var(--muted); }
.lcs-dash-billings { font-variant-numeric: tabular-nums; }
.lcs-dash-billings thead th { padding: 8px; font-size: 13px; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--line); }
.lcs-dash-billings tbody th { width: auto; }
.lcs-col-amount { text-align: right; white-space: nowrap; }
.lcs-col-pdf { text-align: right; white-space: nowrap; }
.lcs-status--failed { color: var(--error); font-weight: 500; }
.lcs-status--paid { color: var(--muted); }
.lcs-dl-invoice { display: inline-block; padding: 6px 12px; font-size: 13px; line-height: 1.4; color: var(--ink); text-decoration: none; background: #fff; border: 1px solid var(--field); border-radius: var(--radius); }
.lcs-dl-invoice:hover { color: var(--brand); border-color: var(--brand); }
.lcs-dash-billings + .lcs-note { margin: 8px 0 0; font-size: 13px; }

@media (max-width: 600px) {
	.lcs-site-header { padding: 14px 16px; }
	.lcs-site-main { padding: 16px 16px 56px; }
	.lcs-brand__sub { display: none; }
	.lcs-dash-table tbody th { width: 8.5em; padding-right: 4px; }
	.lcs-dash-billings thead { display: none; }
	.lcs-dash-billings tr {
		display: grid; grid-template-columns: 1fr auto;
		grid-template-areas: "month amount" "status pdf";
		gap: 4px 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft);
	}
	.lcs-dash-billings td { display: block; padding: 0; border: 0; }
	.lcs-col-month { grid-area: month; font-weight: 700; }
	.lcs-col-amount { grid-area: amount; font-size: 17px; font-weight: 500; }
	.lcs-col-status { grid-area: status; font-size: 13px; }
	.lcs-col-pdf { grid-area: pdf; }
}

/* ---------- 利用規約・プライバシーポリシー ---------- */
.lcs-legal { max-width: 720px; font-size: 15.5px; line-height: 1.95; }
.lcs-legal h2 { font-size: 16px; font-weight: 700; margin: 40px 0 10px; }
.lcs-legal p { margin: 0 0 14px; }
.lcs-legal ol { margin: 0 0 14px; padding-left: 1.6em; }
.lcs-legal ol ol { margin: 4px 0 6px; padding-left: 1.4em; }
.lcs-legal li { margin: 0 0 6px; }
.lcs-legal ul { margin: 0 0 14px; padding-left: 1.2em; list-style: none; }
.lcs-legal blockquote { margin: 0 0 14px; padding: 12px 16px; font-size: 14px; background: var(--bg-soft); border-radius: var(--radius); }
.lcs-legal blockquote p { margin: 0; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }
