@charset "utf-8";

/* =====================================================
   recycle.css
   廃棄・リサイクルページ固有スタイル
   service-common.css の後に読み込む
===================================================== */

/* =====================
   ページ基盤
===================== */
#recycle {
	background: var(--white);
	color: var(--text-body);
}

#recycle section {
	padding: 72px 0;
	position: relative;
	border: none;
}

#recycle > section + section {
	margin-top: 0;
}

#recycle .service-block {
	padding: 48px 0 !important;
}

#recycle .main-wrapper {
	padding-inline: clamp(20px, 4vw, 48px);
}

/* =====================
   ヒーロー
===================== */
#recycle #page-title {
	padding-top: var(--header-offset);
	padding-bottom: 40px;
	padding-left: 0;
	padding-right: 0;
	background-image: url(../img/service/recycle/bg_mainvisual.jpg);
	color: var(--white);
}

/* =====================
   セクション背景：互い違い
   青: #workflow / #waste-types
   白: #steps
===================== */
#workflow {
	background: var(--blue-050);
}

#steps {
	background: var(--white);
}

#waste-types {
	background: var(--blue-050);
}

/* =====================
   ブロック背景：セクションと逆色
===================== */
#workflow .service-wrapper {
	background: var(--white);
}

#steps .service-wrapper {
	background: var(--blue-050);
}

/* =====================
   ページ固有レスポンシブ
===================== */
@media only screen and (max-width: 1024px) {
	#recycle .service-block {
		padding-block: 36px !important;
	}

	.recycle-body {
		padding-left: 32px;
		padding-right: 32px;
	}

	.workflow-image {
		padding-left: 32px;
		padding-right: 32px;
	}

	.process-steps {
		padding-left: 32px;
		padding-right: 32px;
	}

	.station-image-wrap {
		padding-left: 32px;
		padding-right: 32px;
	}

	.pcb-info {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* =====================
   テキストブロック共通
===================== */
.recycle-body {
	padding: 48px 40px 24px;
}

.recycle-body--steps {
	padding-bottom: 8px;
}

.recycle-lead {
	font-size: 15px;
	line-height: 1.85;
	color: var(--text-body);
	margin: 0 auto;
	max-width: 700px;
	text-align: center;
}

/* =====================
   業務フロー図
===================== */
.workflow-image {
	padding: 0 40px 48px;
	text-align: center;
}

.workflow-image img {
	width: 100%;
	max-width: 860px;
	height: auto;
	display: inline-block;
	border: none;
}

/* =====================
   お悩みアピールブロック（LP 吹き出しスタイル）
===================== */
.recycle-appeal {
	padding: 80px 0 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #F8FAFF;
	border-radius: 12px;
	margin-bottom: 40px;
}

/* 見出し */
.appeal-heading {
	font-size: 28px;
	font-weight: 400;
	color: var(--base);
	margin: 0 0 32px;
	text-align: center;
	letter-spacing: 0.05em;
}

/* イラスト */
.appeal-illustration {
	max-width: 460px;
	width: 100%;
	margin-bottom: 48px;
}

.appeal-illustration img {
	width: 100%;
	height: auto;
	display: block;
}

/* 下部解決バー */
.appeal-footer-bar {
	width: 90%;
	max-width: 800px;
	background: var(--base);
	padding: 40px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	box-sizing: border-box;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(18, 80, 194, 0.25);
}

.appeal-footer-bar p {
	font-size: 22px;
	font-weight: 700;
	color: var(--white) !important;
	margin: 0;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.appeal-btn {
	background: #FFD700;
	color: #333 !important;
	padding: 18px 60px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 5px 0 #C5A300;
	transition: all 0.2s ease;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.appeal-btn:hover {
	transform: translateY(3px);
	box-shadow: none;
	background: #FFE033;
}

.appeal-btn i {
	font-size: 24px;
}

/* =====================
   サービスの流れ（タイムライン型）
===================== */
.process-steps {
	padding: 8px 48px 48px;
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}

.process-step {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 32px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

/* バッジ間をつなぐ縦線：最終ステップには引かない */
.process-step:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 19px;
	top: 40px;
	height: calc(100% - 40px + 32px);
	width: 2px;
	background: var(--slate);
	opacity: 0.4;
}

.process-badge {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--slate);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.process-content {
	flex: 1;
	padding: 8px 0 24px;
	border-bottom: 1px solid var(--line);
}

.process-step:last-child .process-content {
	border-bottom: none;
	padding-bottom: 0;
}

.process-content h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-strong);
	margin: 0 0 8px;
	line-height: 1.2;
}

.process-content p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-body);
	margin: 0;
}

/* =====================
   取扱廃棄物の種類
===================== */
.waste-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 40px 0 32px;
}

.waste-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 28px;
	background: var(--white);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-strong);
	border-radius: 4px;
}

.waste-item i {
	font-size: 22px;
	color: var(--base);
	flex-shrink: 0;
}

/* =====================
   許可証テーブル
===================== */
.permit-section {
	margin: 40px 0 0;
}

.permit-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	background: var(--slate);
	padding: 10px 16px;
	margin: 0 0 0;
}

.permit-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--line);
	border-top: none;
}

.permit-table {
	width: max-content;
	min-width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	white-space: nowrap;
}

.permit-table th,
.permit-table td {
	padding: 7px 10px;
	border: 1px solid var(--line);
	text-align: center;
	vertical-align: middle;
}

.permit-table thead th {
	background: var(--blue-050);
	color: var(--text-strong);
	font-weight: 700;
}

.permit-table tbody tr:nth-child(even) td {
	background: #F9FBFF;
}

.permit-table tbody td:first-child,
.permit-table tbody td:nth-child(2),
.permit-table tbody td:nth-child(3) {
	text-align: left;
	white-space: nowrap;
}

.permit-link {
	color: var(--base) !important;
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border-bottom: 1px solid var(--base);
}

.permit-link::after {
	content: '\E415';
	font-family: 'Material Icons';
	font-size: 18px;
	line-height: 1;
	color: #D32F2F;
	display: inline-block;
	border-bottom: none;
	flex-shrink: 0;
}

.permit-link:hover {
	opacity: 0.75;
}

.recycle-cta {
	text-align: center;
	margin: 40px 0 56px;
}

.recycle-cta-lead {
	font-size: 14px;
	color: var(--text-muted);
	margin: 0 0 24px;
}

.recycle-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.recycle-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	background: var(--base);
	color: var(--white) !important;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
}

.recycle-cta-btn i {
	font-size: 22px;
}

.recycle-cta-btn:hover {
	background: #0D3FA0;
}

.recycle-cta-tel {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
}

.recycle-tel-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--text-muted);
}

.recycle-tel-num {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-strong) !important;
	letter-spacing: 0.04em;
	text-decoration: none;
	line-height: 1;
}

/* =====================
   セクション追加分の背景
===================== */
#collection {
	background: var(--white);
}

#station-waste {
	background: var(--blue-050);
}

#pcb {
	background: var(--white);
}

#collection .service-wrapper {
	background: var(--blue-050);
}

#station-waste .service-wrapper {
	background: var(--white);
}

#pcb .service-wrapper {
	background: var(--blue-050);
}

/* =====================
   取扱品目ブロック（非表示）
===================== */
.items-block {
	display: none;
}

.items-block {
	padding: 32px 40px 40px;
	background: var(--base);
}

.items-block-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	margin: 0 0 20px;
}

.items-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 16px;
}

.item-tag {
	background: var(--blue-050);
	color: var(--base);
	font-size: 13px;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 4px;
}

.items-note {
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	text-align: center;
	margin: 0;
}

/* =====================
   駅ゴミ・リサイクル 画像
===================== */
.station-image-wrap {
	position: relative;
	padding: 0 40px 40px;
}

.station-image-wrap img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: contain;
	object-position: center;
	display: block;
	border: none;
}

.station-label {
	position: absolute;
	background: var(--white);
	border: 2px solid var(--base);
	padding: 8px 14px;
	font-size: 12px;
	color: var(--text-body);
	line-height: 1.5;
	max-width: 160px;
	border-radius: 4px;
}

.station-label--right {
	top: 10%;
	right: 6%;
}

.station-label--left {
	bottom: 25%;
	left: 6%;
}

.label-head {
	display: block;
	font-weight: 700;
	color: var(--base);
	margin-bottom: 2px;
}

/* =====================
   PCB廃棄物処理
===================== */
.pcb-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px 40px;
}

.pcb-about {
	flex: none;
}

.pcb-about h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-strong);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--base);
}

.pcb-about p {
	font-size: 14px;
	line-height: 1.85;
	color: var(--text-body);
	margin: 0 0 10px;
}

.pcb-tel {
	font-weight: 700;
	font-size: 15px !important;
}

.pcb-tel a {
	color: var(--base) !important;
	text-decoration: none;
}

.pcb-photos {
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.pcb-photos figure {
	flex: 1;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.pcb-photos img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border: none;
}

/* =====================
   PCB 警告・解決バナー
===================== */
.pcb-alert {
	display: flex;
	align-items: stretch;
	gap: 0;
	overflow: hidden;
}

/* 左：警告 */
.pcb-alert-warning {
	flex: 1;
	background: var(--blue-150);
	padding: 32px 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.pcb-alert-main {
	font-size: 17px;
	font-weight: 700;
	color: var(--text-strong);
	margin: 0;
	line-height: 1.6;
}

.pcb-alert-sub {
	font-size: 11px;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.6;
}

/* 中央：矢印 */
.pcb-alert-arrow {
	background: var(--slate);
	color: var(--white);
	padding: 0 12px;
	display: flex;
	align-items: center;
	align-self: stretch;
}

.pcb-alert-arrow i {
	font-size: 32px;
}

/* 右：解決策 */
.pcb-alert-solution {
	flex: 1;
	background: var(--base);
	padding: 32px 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	justify-content: center;
}

.pcb-alert-brand {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.7);
	margin: 0;
}

.pcb-alert-cta {
	font-size: 17px;
	font-weight: 700;
	color: var(--white);
	margin: 0;
	line-height: 1.6;
}

.pcb-alert-cta strong {
	text-decoration: none;
}

.pcb-alert-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--white);
	color: var(--base) !important;
	margin-top: 8px;
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	margin-top: 8px;
}

.pcb-alert-btn i {
	font-size: 16px;
}

.pcb-alert-btn:hover {
	background: var(--blue-050);
}

/* =====================
   レスポンシブ
===================== */
@media only screen and (max-width: 1024px) {
	.recycle-steps {
		flex-wrap: wrap;
		padding: 16px 32px 40px;
	}

	.recycle-step {
		flex: 1 1 calc(50% - 20px);
		min-width: 180px;
	}

	.step-connector:nth-child(4) {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	#recycle .service-block {
		padding-bottom: 0 !important;
	}

	.recycle-body {
		padding: 32px 20px 20px;
	}

	.recycle-lead {
		font-size: 14px;
		line-height: 1.8;
	}

	.workflow-image {
		padding: 0 20px 32px;
	}

	.recycle-appeal {
		padding: 48px 0 40px;
	}

	.appeal-heading {
		font-size: clamp(22px, 5.5vw, 26px);
		line-height: 1.35;
		margin-bottom: 24px;
		text-align: center;
	}

	.appeal-illustration {
		max-width: 300px;
		margin-bottom: 32px;
	}

	.appeal-footer-bar {
		padding: 32px 20px;
		width: 95%;
		border-radius: 12px;
	}

	.appeal-footer-bar p {
		font-size: 14px;
		line-height: 1.55;
	}

	.appeal-btn {
		padding: 14px 32px;
		font-size: 16px;
		width: 100%;
		max-width: 100%;
		justify-content: center;
		box-sizing: border-box;
	}

	.appeal-cta {
		font-size: 17px;
		padding: 16px 24px;
	}

	.process-badge {
		font-size: 14px;
	}

	.process-content h3 {
		font-size: 17px;
		line-height: 1.3;
	}

	.process-content p {
		font-size: 14px;
		line-height: 1.8;
	}

	.process-steps {
		padding: 8px 20px 32px;
	}

	.process-steps::before {
		left: calc(20px + 20px);
	}

	.waste-item {
		font-size: 17px;
		padding: 16px 20px;
	}

	.permit-table {
		font-size: 13px;
	}

	.recycle-cta-lead {
		font-size: 14px;
		line-height: 1.75;
	}

	.items-block {
		padding: 24px 20px 32px;
	}

	.station-image-wrap {
		padding: 0 20px 32px;
	}

	.station-label {
		position: static;
		max-width: 100%;
		margin-top: 8px;
		font-size: 14px;
		line-height: 1.55;
	}

	.pcb-info {
		padding: 24px 20px;
		gap: 16px;
	}

	.pcb-about h3 {
		font-size: 18px;
	}

	.pcb-about p {
		font-size: 14px;
		line-height: 1.8;
	}

	.pcb-tel {
		font-size: 14px !important;
	}

	.pcb-alert-main {
		font-size: 14px;
		line-height: 1.65;
	}

	.pcb-alert-sub {
		font-size: 12px;
	}

	.pcb-alert-brand {
		font-size: 12px;
	}

	.pcb-alert-cta {
		font-size: 14px;
	}

	.pcb-alert-btn {
		font-size: 14px;
	}

	.pcb-photos {
		flex-direction: column;
	}

	.pcb-photos figure {
		flex: none;
	}

	.pcb-alert {
		flex-direction: column;
	}

	.pcb-alert-arrow {
		width: 100%;
		justify-content: center;
		padding: 8px 0;
	}

	.pcb-alert-arrow i {
		transform: rotate(90deg);
		font-size: 28px;
	}

	.pcb-alert-warning,
	.pcb-alert-solution {
		padding: 24px 20px;
	}

	.pcb-banner-penalty strong {
		font-size: 18px;
	}

	.recycle-cta-actions {
		flex-direction: column;
		gap: 24px;
	}

	.recycle-cta-tel {
		text-align: center;
	}

	.recycle-tel-label {
		font-size: 12px;
	}

	.recycle-tel-num {
		font-size: clamp(24px, 6vw, 28px);
	}

	/* 廃棄物収集運搬：SP は見出し → 写真 → 本文 */
	#collection .collection-row {
		display: flex;
		flex-direction: column;
	}

	#collection .collection-copy {
		display: contents;
	}

	#collection .collection-heading {
		order: 1;
		padding: 32px 20px 16px;
	}

	#collection .collection-heading .section-label {
		margin-bottom: 10px;
	}

	#collection .collection-heading h2 {
		margin-bottom: 0;
	}

	#collection .collection-row .service-media {
		order: 2;
		padding: 0 16px;
	}

	#collection .collection-body {
		order: 3;
		padding: 16px 20px 32px;
	}

	#collection .collection-body p:last-child {
		margin-bottom: 0;
	}

	/* PCB廃棄物処理：SP は見出し → 写真 → 本文 */
	#pcb .pcb-row {
		display: flex;
		flex-direction: column;
	}

	#pcb .pcb-copy {
		display: contents;
	}

	#pcb .pcb-intro-heading {
		order: 1;
		padding: 32px 20px 16px;
	}

	#pcb .pcb-intro-heading .section-label {
		margin-bottom: 10px;
	}

	#pcb .pcb-intro-heading h2 {
		margin-bottom: 0;
	}

	#pcb .pcb-row .service-media {
		order: 2;
		padding: 0 16px;
	}

	#pcb .pcb-intro-body {
		order: 3;
		padding: 16px 20px 32px;
	}

	#pcb .pcb-intro-body p:last-child {
		margin-bottom: 0;
	}
}
