@charset "UTF-8";
/* ============================================================
   まさむねWifi LP —「ブレイズ」確定デザイン
   出典: mockups/lp-confirmed-blaze.html
   デザイントークン: docs/project-overview.md §8.1

   方針：モバイルファースト（基本＝スマホ、min-widthで広げる）。
        確定モックは1180px固定だったため、ここで全面的に組み直している。
   ============================================================ */

/* ---------- デザイントークン ---------- */
.mw-lp {
	--primary: #FFC400;
	--secondary: #FF7A00;
	--orange-mid: #FF9500;
	--orange-deep: #FF6A00;
	--accent: #E25500;
	--cta-shadow: #c9560a;
	--ink: #201a12;
	--ink-900: #16110a;
	--text-sub: #5c5442;
	--text-muted: #8a7c66;
	--base: #FFFFFF;
	--cream: #FFF6E0;
	--border: #efe2c9;

	--hero-grad: linear-gradient(118deg, #FFC400 0%, #FF9500 48%, #FF6A00 100%);
	--font-display: "Dela Gothic One", sans-serif;
	--font-body: "Zen Kaku Gothic New", system-ui, -apple-system, sans-serif;

	--gut: 20px;
	--radius: 14px;
}

/* ---------- ベース ---------- */
.mw-lp {
	margin: 0;
	background: var(--base);
	color: var(--ink);
	font-family: var(--font-body);
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	/* スマホの追従CTAが最下部を隠さないように余白を確保 */
	padding-bottom: 76px;
}

.mw-lp * { box-sizing: border-box; }
.mw-lp img { max-width: 100%; height: auto; }

.mw-lp h1, .mw-lp h2, .mw-lp h3 { margin: 0; line-height: 1.3; }
.mw-lp p, .mw-lp ul, .mw-lp ol { margin: 0; }
.mw-lp ul, .mw-lp ol { list-style: none; padding: 0; }

/* 固定ヘッダーの下にアンカーが隠れないように */
.mw-lp [id] { scroll-margin-top: 76px; }

.mw-container {
	max-width: 1092px;
	margin: 0 auto;
	padding: 0 var(--gut);
}
.mw-container--center { text-align: center; }

.mw-section { padding: 56px 0; }
.mw-section--narrow {
	max-width: 780px;
	margin: 0 auto;
	padding-left: var(--gut);
	padding-right: var(--gut);
}

/* ---------- 見出し ---------- */
.mw-head { text-align: center; margin-bottom: 32px; }

.mw-eyebrow {
	display: inline-block;
	background: var(--secondary);
	color: #fff;
	font-size: 11px;
	letter-spacing: .18em;
	font-weight: 900;
	padding: 5px 15px;
	border-radius: 6px;
	transform: skewX(-8deg);
}
.mw-eyebrow__inner { display: inline-block; transform: skewX(8deg); }
.mw-eyebrow--white { background: #fff; color: var(--accent); }

.mw-h2 {
	font-size: clamp(24px, 5.5vw, 34px);
	font-weight: 900;
	margin: 14px 0 8px;
}
.mw-lead { color: var(--text-muted); font-size: 14px; }

.mw-marker {
	background: linear-gradient(transparent 58%, var(--primary) 58%);
}

/* ---------- ボタン ---------- */
.mw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--font-body);
	font-weight: 900;
	font-size: 15px;
	line-height: 1.4;
	text-decoration: none;
	padding: 14px 26px;
	border-radius: 9px;
	color: #fff;
	background: var(--secondary);
	box-shadow: 0 4px 0 var(--cta-shadow);
	transition: transform .12s ease, box-shadow .12s ease;
}
.mw-btn:hover { color: #fff; }
.mw-btn:active {
	transform: translateY(3px);
	box-shadow: 0 1px 0 var(--cta-shadow);
}
.mw-btn--orange { background: var(--secondary); }
.mw-btn--ink { background: var(--ink); box-shadow: 0 4px 0 #000; }
.mw-btn--gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.mw-btn--block { display: flex; width: 100%; }
.mw-btn--sm { font-size: 13px; padding: 10px 18px; box-shadow: 0 3px 0 var(--cta-shadow); }
.mw-btn--lg { font-size: 17px; padding: 17px 40px; box-shadow: 0 6px 0 var(--cta-shadow); }

/* 申込先URLが未設定のとき（押せないボタン） */
.mw-btn--disabled {
	background: #cfc6b6;
	box-shadow: 0 4px 0 #b3a894;
	cursor: not-allowed;
}
.mw-btn--disabled:active { transform: none; box-shadow: 0 4px 0 #b3a894; }

/* ---------- お知らせバー ---------- */
.mw-notice {
	background: var(--ink);
	color: var(--primary);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	padding: 9px var(--gut);
}

/* ---------- ヘッダー ---------- */
.mw-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: #fff;
	border-bottom: 1px solid var(--border);
}
.mw-header__inner {
	max-width: 1092px;
	margin: 0 auto;
	padding: 0 var(--gut);
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.mw-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 900;
	font-size: 18px;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
}
.mw-logo__mark {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	font-family: var(--font-display);
	font-size: 14px;
	transform: rotate(-6deg);
}
.mw-nav { display: flex; align-items: center; gap: 22px; }
/* スマホではテキストリンクを隠し、ロゴと申込みボタンだけにする
   （ハンバーガーメニューのJSを持ち込まないための割り切り。
     ナビの内容はフッターと追従CTAでカバーしている） */
.mw-nav__link { display: none; }

/* ---------- ヒーロー ---------- */
.mw-hero {
	position: relative;
	overflow: hidden;
	background: var(--hero-grad);
	padding: 44px var(--gut) 52px;
}
.mw-hero__stripes {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(118deg, transparent 0 34px, rgba(255,255,255,.09) 34px 40px);
}
.mw-hero__bolt {
	position: absolute;
	right: -30px;
	top: -20px;
	font-size: 150px;
	line-height: 1;
	color: rgba(255,255,255,.12);
	transform: rotate(-8deg);
	pointer-events: none;
}
.mw-hero__inner {
	position: relative;
	max-width: 1092px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.mw-hero__body { color: #fff; }

.mw-badge {
	display: inline-block;
	background: var(--ink);
	color: var(--primary);
	font-weight: 900;
	font-size: 13px;
	padding: 8px 16px;
	border-radius: 7px;
	transform: skewX(-8deg);
}
.mw-badge__inner { display: inline-block; transform: skewX(8deg); }

.mw-hero__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(38px, 11vw, 62px);
	line-height: 1.12;
	margin: 18px 0 12px;
	text-shadow: 0 4px 0 rgba(0,0,0,.14);
}
.mw-hero__em { color: var(--ink); }
.mw-hero__sub {
	font-size: 15px;
	font-weight: 500;
	color: #fff4e2;
	max-width: 520px;
}
.mw-hero__arrows {
	font-size: 24px;
	letter-spacing: 8px;
	color: rgba(255,255,255,.85);
	margin-top: 16px;
}

/* 料金カード */
.mw-pricecard {
	background: #fff;
	border-radius: 16px;
	padding: 22px;
	box-shadow: 0 18px 40px rgba(120,50,0,.3);
	transform: skewX(-3deg);
}
.mw-pricecard__inner { transform: skewX(3deg); }
.mw-pricecard__label { font-size: 12px; color: var(--text-muted); font-weight: 700; }
.mw-pricecard__price {
	font-family: var(--font-display);
	font-size: clamp(42px, 12vw, 56px);
	color: var(--accent);
	line-height: 1;
	margin: 6px 0 10px;
}
.mw-pricecard__yen { font-size: .4em; }
.mw-pricecard__breakdown {
	font-size: 12px;
	color: var(--text-sub);
	line-height: 1.9;
	margin-bottom: 14px;
}
.mw-pricecard__breakdown li::before { content: "・"; }

/* ---------- 即日発送ストリップ ---------- */
.mw-strip {
	background: var(--ink);
	color: #fff;
	text-align: center;
	padding: 14px var(--gut);
	font-weight: 900;
	font-size: 15px;
}
.mw-strip__hl { color: var(--primary); }
.mw-strip__note {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: #d9cbb5;
	margin-top: 3px;
}

/* ---------- 料金プラン ---------- */
.mw-plans {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.mw-plan {
	position: relative;
	border: 2px solid var(--border);
	border-radius: 16px;
	padding: 26px 22px;
	background: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.mw-plan--featured {
	border: 3px solid var(--secondary);
	background: linear-gradient(165deg, var(--cream), #fff);
	box-shadow: 0 14px 36px rgba(255,122,0,.2);
}
.mw-plan__ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%) skewX(-8deg);
	background: var(--secondary);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	padding: 5px 16px;
	border-radius: 6px;
	white-space: nowrap;
}
.mw-plan__name { font-size: 19px; font-weight: 900; margin-bottom: 2px; }
.mw-plan__cap {
	font-family: var(--font-display);
	font-size: 26px;
	color: var(--accent);
	line-height: 1.2;
}
.mw-plan__price {
	font-family: var(--font-display);
	font-size: 40px;
	margin: 6px 0 14px;
	line-height: 1;
}
.mw-plan__yen { font-size: .5em; }
.mw-plan__unit {
	font-size: 14px;
	color: var(--text-muted);
	font-family: var(--font-body);
}
.mw-plan__breakdown {
	font-size: 13px;
	color: var(--text-sub);
	background: rgba(255,255,255,.75);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 10px 14px;
	margin-bottom: 14px;
}
.mw-plan__breakdown li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.mw-plan__breakdown li + li { margin-top: 4px; }
.mw-plan__feats {
	font-size: 14px;
	color: var(--text-sub);
	line-height: 2;
	margin-bottom: 18px;
	text-align: left;
}
.mw-plan__feats li::before {
	content: "✓";
	color: var(--secondary);
	font-weight: 900;
	margin-right: 6px;
}
/* ボタンをカード下端にそろえる */
.mw-plan .mw-btn { margin-top: auto; }
.mw-plan__note {
	font-size: 11px;
	color: var(--text-muted);
	text-align: left;
	line-height: 1.7;
	margin-top: 12px;
}

/* ---------- 選ばれる理由 ---------- */
.mw-reasons {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	padding: 60px 0;
	clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}
.mw-reasons__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.mw-reason {
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.35);
	border-radius: var(--radius);
	padding: 22px;
	text-align: center;
}
.mw-reason__icon { font-size: 32px; margin-bottom: 8px; }
.mw-reason__title { font-size: 17px; margin-bottom: 6px; }
.mw-reason__text { font-size: 13px; color: #fff2df; }

/* ---------- ご利用の流れ ---------- */
.mw-flow {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.mw-flow__item { text-align: center; }
.mw-flow__num {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin: 0 auto 12px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: #fff;
	font-family: var(--font-display);
	font-size: 22px;
	transform: skewX(-6deg);
}
.mw-flow__num > span { display: inline-block; transform: skewX(6deg); }
.mw-flow__title { font-size: 16px; margin-bottom: 3px; }
.mw-flow__text { font-size: 13px; color: var(--text-muted); }
.mw-flow__badge {
	display: inline-block;
	margin-top: 8px;
	font-size: 11px;
	font-weight: 900;
	color: var(--accent);
	background: var(--cream);
	padding: 3px 11px;
	border-radius: 99px;
}

/* ---------- お支払い方法 ---------- */
.mw-payment { background: var(--cream); padding: 48px 0; }
.mw-payment__list {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}
.mw-payment__item {
	background: #fff;
	border: 2px solid var(--border);
	border-radius: 12px;
	padding: 15px 26px;
	font-weight: 900;
	font-size: 14px;
}

/* ---------- FAQ ---------- */
.mw-faq {
	border: 2px solid var(--border);
	border-radius: 12px;
	padding: 15px 18px;
	margin-bottom: 12px;
}
.mw-faq__q {
	font-weight: 900;
	font-size: 15px;
	cursor: pointer;
	list-style: none;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.mw-faq__q::-webkit-details-marker { display: none; }
.mw-faq__q::before {
	content: "Q.";
	color: var(--secondary);
	font-family: var(--font-display);
	flex: 0 0 auto;
}
.mw-faq__q::after {
	content: "＋";
	margin-left: auto;
	color: var(--text-muted);
	font-weight: 900;
}
.mw-faq[open] .mw-faq__q::after { content: "−"; }
.mw-faq__a {
	margin-top: 10px;
	color: var(--text-sub);
	font-size: 14px;
}

/* ---------- 最終CTA ---------- */
.mw-final {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: #fff;
	text-align: center;
	padding: 56px var(--gut);
}
.mw-final__stripes {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(118deg, transparent 0 30px, rgba(255,196,0,.07) 30px 36px);
}
.mw-final__inner { position: relative; }
.mw-final__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(24px, 6.5vw, 38px);
}
.mw-final__em { color: var(--primary); }
.mw-final__sub { color: #d9cbb5; margin: 12px 0 22px; font-size: 15px; }

/* ---------- フッター ---------- */
.mw-footer {
	background: var(--ink-900);
	color: #bdb1a2;
	padding: 36px var(--gut) 0;
	font-size: 13px;
}
.mw-footer__inner {
	max-width: 1092px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.mw-footer__name { color: #fff; font-weight: 900; font-size: 17px; }
.mw-footer__desc { margin-top: 6px; }
.mw-footer__nav { display: flex; flex-direction: column; gap: 5px; }
.mw-footer__nav a { color: #bdb1a2; text-decoration: none; }
.mw-footer__nav a:hover { color: #fff; }
/* 固定ページが未作成の項目（作成後はメニュー設定に置き換わる） */
.mw-footer__todo { color: #6b6157; }
.mw-footer__copy {
	max-width: 1092px;
	margin: 28px auto 0;
	padding: 16px 0;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 11px;
	color: #6b6157;
}

/* ---------- 追従CTA（スマホのみ） ---------- */
.mw-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(90deg, var(--secondary), var(--accent));
	padding: 10px var(--gut);
	box-shadow: 0 -4px 16px rgba(0,0,0,.18);
}
.mw-sticky__text { color: #fff; font-weight: 900; font-size: 13px; }
.mw-sticky .mw-btn { background: #fff; color: var(--accent); box-shadow: 0 3px 0 rgba(0,0,0,.2); }

/* ============================================================
   タブレット以上（768px〜）
   ============================================================ */
@media (min-width: 768px) {
	.mw-lp { --gut: 28px; }

	.mw-section { padding: 68px 0; }
	.mw-head { margin-bottom: 40px; }

	.mw-nav__link {
		display: inline-block;
		color: var(--text-muted);
		text-decoration: none;
		font-size: 14px;
		font-weight: 700;
	}
	.mw-nav__link:hover { color: var(--ink); }

	.mw-hero { padding: 60px var(--gut) 72px; }
	.mw-hero__bolt { font-size: 230px; right: -60px; top: -40px; }
	.mw-hero__sub { font-size: 17px; }
	.mw-hero__arrows { font-size: 30px; }

	.mw-plans { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.mw-reasons__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
	.mw-flow { grid-template-columns: repeat(2, 1fr); }

	.mw-footer__inner { flex-direction: row; justify-content: space-between; }

	.mw-strip { font-size: 17px; }
	.mw-strip__note { display: inline; font-size: 12px; margin-left: 6px; }
}

/* ============================================================
   デスクトップ（1024px〜）
   ============================================================ */
@media (min-width: 1024px) {
	.mw-lp { --gut: 34px; padding-bottom: 0; }

	.mw-lp [id] { scroll-margin-top: 86px; }
	.mw-header__inner { height: 70px; }
	.mw-logo { font-size: 21px; }

	.mw-hero { padding: 70px var(--gut) 88px; }
	.mw-hero__inner {
		flex-direction: row;
		align-items: center;
		gap: 44px;
	}
	.mw-hero__body { flex: 1 1 520px; }
	.mw-pricecard {
		flex: 0 0 300px;
		padding: 26px;
		transform: skewX(-4deg);
		box-shadow: 0 22px 50px rgba(120,50,0,.35);
	}
	.mw-pricecard__inner { transform: skewX(4deg); }

	.mw-reasons { padding: 76px 0; clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%); }
	.mw-reasons__grid { grid-template-columns: repeat(4, 1fr); }
	.mw-flow { grid-template-columns: repeat(4, 1fr); }

	/* デスクトップはヘッダーに申込みボタンが常時見えているので追従CTAは不要 */
	.mw-sticky { display: none; }

	/* 料金は2プランなので中央寄せで並べる */
	.mw-plans {
		grid-template-columns: repeat(2, minmax(0, 400px));
		justify-content: center;
	}
}

/* ============================================================
   アクセシビリティ：動きを減らす設定の尊重
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	.mw-lp * {
		transition: none !important;
		animation: none !important;
	}
}
