/*
 * TOPページ専用デザイン。gas-kaishu(p-/c-/l-系)ともmonooki-kaishu(mk-系)とも
 * 衝突しないよう hm-* プレフィックスのみを使う(FAQ/フォーム/固定バーの一部要素だけ、
 * 既存JSモジュール(_accordion.js/_floating.js/_form-validation.js)と接続するため
 * p-faq__* / c-contact-form / js-fixed-contact / p-mv クラスを併記している)。
 */

:root {
	--hm-navy: #0f2a4a;
	--hm-blue: #0f3975;
	--hm-orange: #f47b12;
	--hm-orange-dark: #d95d00;
	--hm-sky: #eaf5ff;
	--hm-line: #dfe6ee;
	--hm-text: #17304d;
	--hm-muted: #5d6d7e;
	--hm-radius: 16px;
	--hm-shadow: 0 16px 40px rgba(15, 42, 74, 0.1);
}

.splp-home {
	color: var(--hm-text);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.75;
	background: #fff;
}

.splp-home img {
	max-width: 100%;
	height: auto;
	display: block;
}

.splp-home *,
.splp-home *::before,
.splp-home *::after {
	box-sizing: border-box;
}

.hm-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

.hm-container--narrow {
	max-width: 760px;
}

.hm-section {
	padding: 64px 0;
}

.hm-section:nth-of-type(even) {
	background: #f7f9fc;
}

/* ---------- Buttons ---------- */

.hm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 16px 32px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 16px;
	text-decoration: none;
	line-height: 1.2;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hm-btn--primary {
	background: var(--hm-orange);
	color: #fff;
	box-shadow: 0 10px 24px rgba(244, 123, 18, 0.35);
}

.hm-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(244, 123, 18, 0.4);
}

.hm-btn--outline {
	background: #fff;
	color: var(--hm-navy);
	border: 2px solid var(--hm-navy);
	flex-direction: column;
	gap: 0;
	padding: 10px 28px;
}

.hm-btn__label {
	font-size: 11px;
	font-weight: 500;
}

.hm-btn__num {
	font-size: 19px;
	font-weight: 800;
}

/* ---------- Heading ---------- */

.hm-heading {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.hm-heading__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--hm-orange);
	margin-bottom: 10px;
}

.hm-heading__eyebrow--light {
	color: #ffd88a;
}

.hm-heading__title {
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 800;
	color: var(--hm-navy);
	margin: 0 0 16px;
	line-height: 1.4;
}

.hm-heading--light .hm-heading__title {
	color: #fff;
}

.hm-mark {
	position: relative;
	color: var(--hm-orange);
}

.hm-mark--light {
	color: #ffd88a;
}

.hm-heading__lead {
	color: var(--hm-muted);
	font-size: 15px;
}

.hm-heading__lead--light {
	color: #dbe6f5;
}

.hm-section__note {
	text-align: center;
	font-size: 13px;
	color: var(--hm-muted);
	margin-top: 24px;
}

/* ---------- Hero ---------- */

.hm-hero {
	background: linear-gradient(160deg, var(--hm-navy) 0%, var(--hm-blue) 55%, #1a4a8a 100%);
	color: #fff;
	padding: 56px 0 64px;
}

.hm-hero__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}

.hm-hero__kicker {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 16px;
}

.hm-hero__title {
	margin: 0 0 20px;
}

.hm-hero__title-line {
	display: block;
	font-size: clamp(28px, 4.2vw, 42px);
	font-weight: 900;
	line-height: 1.35;
}

.hm-hero__amp {
	color: #ffd88a;
	margin: 0 6px;
}

.hm-hero__title-sub {
	display: block;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 500;
	color: #dbe6f5;
	margin-top: 10px;
}

.hm-hero__lead {
	font-size: 15px;
	color: #e7edf7;
	margin: 0 0 28px;
}

.hm-hero__lead strong {
	color: #ffd88a;
}

.hm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
}

.hm-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #dbe6f5;
}

.hm-hero__badges li::before {
	content: "\2713";
	color: #ffd88a;
	margin-right: 6px;
	font-weight: 700;
}

.hm-hero__visual img {
	border-radius: var(--hm-radius);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

/* ---------- Value strip ---------- */

.hm-values {
	background: #fff;
	border-bottom: 1px solid var(--hm-line);
	padding: 28px 0;
}

.hm-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	text-align: center;
}

.hm-value {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--hm-navy);
}

/* ---------- 家電回収カード ---------- */

.hm-kaden__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hm-kaden__card {
	display: block;
	background: #fff;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 24px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.hm-kaden__card:hover {
	box-shadow: var(--hm-shadow);
	transform: translateY(-3px);
}

.hm-kaden__card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 800;
	color: var(--hm-navy);
}

.hm-kaden__card p {
	margin: 0 0 14px;
	font-size: 13px;
	color: var(--hm-muted);
}

.hm-kaden__link {
	font-size: 13px;
	font-weight: 700;
	color: var(--hm-orange);
}

/* ---------- Scrap CTA banner ---------- */

.hm-scrap-cta {
	background: var(--hm-orange);
	color: #fff;
	padding: 56px 0;
}

.hm-scrap-cta__inner {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.hm-scrap-cta__title {
	font-size: clamp(22px, 3.4vw, 30px);
	font-weight: 900;
	margin: 0 0 16px;
}

.hm-scrap-cta__text {
	margin: 0 0 24px;
	color: #fff3e6;
}

.hm-scrap-cta .hm-btn--primary {
	background: #fff;
	color: var(--hm-orange-dark);
}

/* ---------- Scenes ---------- */

.hm-scenes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hm-scene-card {
	background: var(--hm-sky);
	border-radius: var(--hm-radius);
	padding: 22px;
}

.hm-scene-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 800;
	color: var(--hm-navy);
}

.hm-scene-card p {
	margin: 0;
	font-size: 13px;
	color: var(--hm-muted);
}

/* ---------- Reason (dark section) ---------- */

.hm-section.hm-reason {
	background: var(--hm-navy);
}

.hm-reason__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hm-reason-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--hm-radius);
	padding: 28px 24px;
	color: #fff;
}

.hm-reason-card b {
	display: block;
	font-size: 28px;
	font-weight: 900;
	color: var(--hm-orange);
	margin-bottom: 10px;
}

.hm-reason-card h3 {
	font-size: 17px;
	margin: 0 0 10px;
}

.hm-reason-card p {
	font-size: 13px;
	color: #cdd8e6;
	margin: 0;
}

/* ---------- Price table ---------- */

.hm-price__group {
	margin-bottom: 32px;
}

.hm-price__group-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--hm-navy);
	border-left: 5px solid var(--hm-orange);
	padding-left: 12px;
	margin: 0 0 14px;
}

.hm-price__group-note {
	font-size: 12px;
	font-weight: 500;
	color: var(--hm-muted);
	margin-left: 8px;
}

.hm-price__table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
}

.hm-price__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	background: #fff;
	border: 1px solid var(--hm-line);
	border-radius: 10px;
	padding: 12px 16px;
}

.hm-price__name {
	font-size: 14px;
	font-weight: 700;
}

.hm-price__num {
	font-size: 15px;
	font-weight: 800;
	color: var(--hm-orange-dark);
	white-space: nowrap;
}

.hm-price__tire-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.hm-price__tire-grid div {
	background: #fff;
	border: 1px solid var(--hm-line);
	border-radius: 10px;
	text-align: center;
	padding: 12px 6px;
}

.hm-price__tire-grid span {
	display: block;
	font-size: 12px;
	color: var(--hm-muted);
}

.hm-price__tire-grid strong {
	display: block;
	font-size: 15px;
	color: var(--hm-orange-dark);
}

.hm-price__base {
	margin-top: 10px;
	font-size: 13px;
	color: var(--hm-muted);
}

/* ---------- Owner CTA ---------- */

.hm-owner-cta {
	background: var(--hm-sky);
	padding: 56px 0;
}

.hm-owner-cta__inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.hm-owner-cta__title {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: var(--hm-navy);
	margin: 12px 0 16px;
}

.hm-owner-cta__text {
	color: var(--hm-muted);
	margin: 0 0 24px;
}

/* ---------- Flow ---------- */

.hm-flow__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.hm-flow__item {
	background: #fff;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 20px 16px;
	text-align: center;
}

.hm-flow__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--hm-navy);
	color: #fff;
	font-weight: 800;
	margin-bottom: 12px;
}

.hm-flow__item h3 {
	font-size: 14px;
	margin: 0 0 8px;
	color: var(--hm-navy);
}

.hm-flow__item p {
	font-size: 12px;
	color: var(--hm-muted);
	margin: 0;
}

/* ---------- Works ---------- */

.hm-works__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hm-work-card {
	background: #fff;
	border: 1px solid var(--hm-line);
	border-left: 4px solid var(--hm-orange);
	border-radius: var(--hm-radius);
	padding: 20px;
}

.hm-work-card__area {
	display: block;
	font-size: 12px;
	color: var(--hm-muted);
	margin-bottom: 6px;
}

.hm-work-card h3 {
	font-size: 15px;
	margin: 0 0 8px;
	color: var(--hm-navy);
}

.hm-work-card p {
	font-size: 13px;
	color: var(--hm-muted);
	margin: 0;
}

/* ---------- FAQ (accordion state driven by _accordion.js) ---------- */

.hm-faq__item {
	border-bottom: 1px solid var(--hm-line);
}

.hm-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	background: none;
	border: none;
	text-align: left;
	padding: 18px 4px;
	cursor: pointer;
	font: inherit;
}

.hm-faq__q-mark {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--hm-navy);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.hm-faq__q-text {
	flex: 1;
	font-weight: 700;
	font-size: 15px;
	color: var(--hm-navy);
}

.hm-faq__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	position: relative;
}

.hm-faq__icon::before,
.hm-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--hm-orange);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hm-faq__icon::before {
	width: 14px;
	height: 2px;
}

.hm-faq__icon::after {
	width: 2px;
	height: 14px;
	transition: transform 0.2s ease;
}

.hm-faq__item.is-open .hm-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.hm-faq__answer-inner {
	display: flex;
	gap: 14px;
	padding: 0 4px 18px 4px;
}

.hm-faq__a-mark {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--hm-orange);
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.hm-faq__answer-inner p {
	margin: 0;
	font-size: 14px;
	color: var(--hm-muted);
}

/* ---------- Area ---------- */

.hm-area__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.hm-area-card {
	background: #fff;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 18px;
}

.hm-area-card h3 {
	font-size: 14px;
	color: var(--hm-navy);
	margin: 0 0 8px;
}

.hm-area-card p {
	font-size: 12px;
	color: var(--hm-muted);
	margin: 0;
}

/* ---------- Company ---------- */

.hm-company__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

.hm-company__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.hm-company__table th,
.hm-company__table td {
	text-align: left;
	padding: 12px;
	border-bottom: 1px solid var(--hm-line);
}

.hm-company__table th {
	width: 110px;
	color: var(--hm-muted);
	font-weight: 700;
}

.hm-values2__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.hm-value2-card {
	background: var(--hm-sky);
	border-radius: 12px;
	padding: 16px;
}

.hm-value2-card h3 {
	font-size: 14px;
	margin: 0 0 6px;
	color: var(--hm-navy);
}

.hm-value2-card p {
	font-size: 12px;
	margin: 0;
	color: var(--hm-muted);
}

/* ---------- Contact ---------- */

.hm-section.hm-contact {
	background: var(--hm-navy);
}

.hm-contact__thanks {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px;
	color: #fff;
	text-align: center;
	margin-bottom: 24px;
}

.hm-form__field {
	margin-bottom: 18px;
}

.hm-form__label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}

.hm-form__required {
	color: #ffb37a;
	font-size: 11px;
}

.hm-form__optional {
	color: #9fb3cc;
	font-size: 11px;
}

.hm-form__input,
.hm-form__textarea {
	width: 100%;
	border: none;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
}

.hm-form__honeypot {
	position: absolute;
	left: -9999px;
}

.hm-form__privacy {
	font-size: 13px;
	color: #dbe6f5;
	margin-bottom: 20px;
}

.hm-form__submit {
	width: 100%;
	border: none;
	cursor: pointer;
}

.hm-contact__phone {
	text-align: center;
	margin-top: 24px;
	color: #dbe6f5;
	font-size: 13px;
}

.hm-contact__phone a {
	display: block;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	text-decoration: none;
	margin-top: 6px;
}

/* ---------- Fixed bottom bar (position controlled by shared framework CSS via .p-fixed-contact) ---------- */

.hm-fixed {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 20px;
	background: #fff;
	border-top: 1px solid var(--hm-line);
	box-shadow: 0 -6px 20px rgba(15, 42, 74, 0.12);
}

.hm-fixed__tel {
	text-decoration: none;
	color: var(--hm-navy);
	font-size: 13px;
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.hm-fixed__tel strong {
	font-size: 17px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.hm-hero__inner {
		grid-template-columns: 1fr;
	}

	.hm-hero__visual {
		order: -1;
	}

	.hm-kaden__grid,
	.hm-scenes__grid,
	.hm-reason__grid,
	.hm-works__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hm-flow__list {
		grid-template-columns: repeat(3, 1fr);
	}

	.hm-area__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hm-company__grid {
		grid-template-columns: 1fr;
	}

	.hm-price__tire-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.hm-section {
		padding: 44px 0;
	}

	.hm-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hm-kaden__grid,
	.hm-scenes__grid,
	.hm-reason__grid,
	.hm-works__grid,
	.hm-price__table {
		grid-template-columns: 1fr;
	}

	.hm-flow__list {
		grid-template-columns: 1fr 1fr;
	}

	.hm-area__grid {
		grid-template-columns: 1fr;
	}

	.hm-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hm-btn--outline {
		flex-direction: row;
		justify-content: center;
		gap: 8px;
	}
}
