.repair-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 40px 120px;
	color: #2a2f3a;
	line-height: 1.8;
	font-size: 15px;
}
.repair-page *,
.repair-page *::before,
.repair-page *::after {
	box-sizing: border-box;
}
.repair-page [hidden] {
	display: none !important;
}
@media (max-width: 1024px) {
	.repair-page {
		padding: 60px 32px 100px;
	}
}
@media (max-width: 768px) {
	.repair-page {
		padding: 40px 20px 80px;
	}
}

/* ===== お知らせ ===== */
.notice {
	margin: 56px 0;
	background: #f0f6fb;
	border-radius: 10px;
	padding: 32px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.notice::before {
	content: "NOTICE";
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: #5a8bb8;
	opacity: 0.7;
}
.notice-body {
	padding-top: 14px;
}
.notice-title {
	font-size: 17px;
	font-weight: 700;
	color: #1a3b5c;
	margin-bottom: 6px;
	line-height: 1.6;
}
.notice-text {
	font-size: 14px;
	color: #2a4a6b;
	line-height: 1.8;
	margin-bottom: 18px;
}
.notice-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 30px;
	background: #2a6fa8;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	letter-spacing: 0.03em;
	transition: background 0.2s;
}
.notice-btn::after {
	content: "→";
	font-size: 14px;
}
.notice-btn:hover {
	background: #1a4e80;
}
@media (max-width: 768px) {
	.notice {
		padding: 28px 20px;
		margin-bottom: 40px;
	}
	.notice-title {
		font-size: 14px;
	}
	.notice-text {
		font-size: 13px;
	}
	.notice-btn {
		font-size: 12px;
		padding: 10px 22px;
	}
}

/* ===== ページタイトル ===== */
.page-head {
	text-align: center;
	margin-bottom: 72px;
}
.page-head-en {
	font-size: 52px;
	font-weight: 800;
	color: #2a2f3a;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 16px;
}
.page-head-jp {
	display: inline-block;
	background: #3bbcb5;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	padding: 6px 24px;
	clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
}
.page-head-lead {
	margin-top: 32px;
	font-size: 15px;
	color: #5a6170;
	line-height: 2;
}
.page-head-sub {
	margin-top: 16px;
	font-size: 13px;
	color: #8a9199;
	line-height: 1.8;
}
.page-head-sub a {
	color: #3bbcb5;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.2s;
}
.page-head-sub a:hover {
	color: #2a8a82;
}
@media (max-width: 768px) {
	.page-head-en {
		font-size: 36px;
	}
	.page-head-lead {
		font-size: 14px;
		text-align: left;
	}
	.page-head-sub {
		font-size: 12px;
		text-align: left;
	}
}
 
/* ===== ステップインデックス ===== */
.step-index {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 80px;
	position: relative;
}
.step-index::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(to right, #3bbcb5 0%, #3bbcb5 100%);
	opacity: 0.25;
	z-index: 0;
}
.step-index-item {
	position: relative;
	background: #fff;
	border: 2px solid #e5e8ed;
	border-radius: 12px;
	padding: 24px 20px;
	text-align: center;
	transition: all 0.2s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	z-index: 1;
}
.step-index-item:hover {
	border-color: #3bbcb5;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(59, 188, 181, 0.15);
}
.step-index-num {
	font-size: 11px;
	color: #3bbcb5;
	font-weight: 600;
	letter-spacing: 0.2em;
	margin-bottom: 8px;
}
.step-index-title {
	font-size: 15px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 4px;
}
.step-index-role {
	font-size: 11px;
	color: #8a9199;
}
@media (max-width: 768px) {
	.step-index {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 60px;
	}
	.step-index::before {
		display: none;
	}
	.step-index-item {
		padding: 20px;
		text-align: left;
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
	}
	.step-index-num {
		margin-right: 16px;
		margin-bottom: 0;
		grid-row: span 2;
		font-size: 20px;
		font-weight: 800;
	}
}
 
/* ===== ステップセクション ===== */
.step-section {
	margin-bottom: 72px;
	scroll-margin-top: 24px;
}
.step-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid #2a2f3a;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.step-num {
	font-size: 44px;
	font-weight: 800;
	color: #2a2f3a;
	line-height: 1;
	letter-spacing: 0.02em;
}
.step-num em {
	font-style: normal;
	color: #3bbcb5;
}
.step-title {
	font-size: 22px;
	font-weight: 700;
	color: #2a2f3a;
	flex: 1;
}
@media (max-width: 768px) {
	.step-header {
		flex-direction: column;
		gap: 0;
	}
	.step-num {
		font-size: 32px;
	}
	.step-title {
		font-size: 17px;
		width: 100%;
		order: 3;
	}
}
 
/* ===== 本文ブロック ===== */
.block {
	margin-bottom: 32px;
}
.block-title {
	font-size: 16px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 12px;
	padding-left: 14px;
	border-left: 3px solid #3bbcb5;
	line-height: 1.4;
}
.block p {
	color: #4a5160;
	margin-bottom: 8px;
}
.block p:last-child {
	margin-bottom: 0;
}
 
/* ===== コールアウト（注意書き） ===== */
.callout {
	background: #fef8f3;
	border: 1px solid #f4d9c2;
	border-left: 4px solid #e87a3f;
	border-radius: 6px;
	padding: 18px 22px;
	margin: 20px 0;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.callout-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: #e87a3f;
}
.callout-body {
	flex: 1;
	font-size: 14px;
	color: #6b4328;
	line-height: 1.8;
}
.callout-body strong {
	color: #c8561f;
	font-weight: 700;
}
.callout-title {
	font-size: 14px;
	font-weight: 700;
	color: #c8561f;
	margin-bottom: 4px;
}
 
/* ===== 会社側プロセス ===== */
.process-list {
	background: #f7f9fb;
	border-radius: 10px;
	padding: 28px 32px;
	margin: 24px 0;
}
.process-list-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px dashed #c5ced8;
}
.process-list-header-icon {
	width: 24px;
	height: 24px;
	color: #3bbcb5;
}
.process-list-header-text {
	font-size: 13px;
	font-weight: 600;
	color: #3bbcb5;
	letter-spacing: 0.1em;
}
.process-item {
	position: relative;
	padding: 16px 0 16px 40px;
	border-bottom: 1px dashed #d5dce5;
}
.process-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.process-item:first-child {
	padding-top: 0;
}
.process-item-num {
	position: absolute;
	left: 0;
	top: 18px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #3bbcb5;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.process-item:first-child .process-item-num {
	top: 2px;
}
.process-item-title {
	font-size: 15px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 4px;
}
.process-item-desc {
	font-size: 14px;
	color: #5a6170;
	line-height: 1.8;
}
@media (max-width: 768px) {
	.process-list {
		padding: 20px;
	}
}
 
/* ===== 送料セクション ===== */
.shipping-section {
	background: #fff;
	border: 1px solid #e5e8ed;
	border-radius: 10px;
	padding: 32px;
	margin: 24px 0;
}
.shipping-title {
	font-size: 17px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.shipping-title-badge {
	display: inline-block;
	width: 4px;
	height: 20px;
	background: #3bbcb5;
	border-radius: 2px;
}
.shipping-rules {
	display: grid;
	gap: 16px;
	margin-bottom: 28px;
}
.shipping-rule {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 18px 22px;
	background: #f7f9fb;
	border-radius: 8px;
	align-items: start;
}
.shipping-rule-label {
	display: inline-flex;
	align-items: center;
	padding: 4px 14px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	white-space: nowrap;
	align-self: start;
	margin-top: 2px;
}
.shipping-rule-label.green {
	background: #e3f3f2;
	color: #2a8a82;
}
.shipping-rule-label.gray {
	background: #e5e8ed;
	color: #5a6170;
}
.shipping-rule-label.orange {
	background: #fce8d9;
	color: #c8561f;
}
.shipping-rule-body {
	font-size: 14px;
	color: #4a5160;
	line-height: 1.8;
}
.shipping-rule-body strong {
	color: #2a2f3a;
	font-weight: 700;
}
@media (max-width: 768px) {
	.shipping-section {
		padding: 20px;
	}
	.shipping-rule {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px;
	}
	.shipping-rule-label {
		justify-self: start;
	}
}
 
/* ===== 機種送料タブ ===== */
.carrier-note {
	font-size: 13px;
	color: #6a7280;
	margin-bottom: 16px;
	padding: 12px 16px;
	background: #f7f9fb;
	border-radius: 6px;
}
.brand-tabs-wrap {
	background: #f7f9fb;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 0;
}
.brand-tabs-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: #3bbcb5;
	letter-spacing: 0.12em;
	margin-bottom: 12px;
}
.brand-tabs-label::before {
	content: "";
	width: 18px;
	height: 1.5px;
	background: #3bbcb5;
}
.brand-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	background: #fff;
	padding: 6px;
	border-radius: 8px;
	border: 1px solid #d9e0e8;
}
.brand-tab {
	padding: 14px 16px;
	background: transparent;
	border: none;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: #6a7280;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.2s;
	letter-spacing: 0.03em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.brand-tab::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #d0d5dd;
	transition: all 0.2s;
}
.brand-tab.is-active {
	background: #3bbcb5;
	color: #fff;
	box-shadow: 0 2px 8px rgba(59, 188, 181, 0.35);
}
.brand-tab.is-active::before {
	background: #fff;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.brand-tab:hover:not(.is-active) {
	background: #f0f3f6;
	color: #2a2f3a;
}
.brand-panel {
	display: none;
	padding-top: 28px;
}
.brand-panel.is-active {
	display: block;
}
@media (max-width: 768px) {
	.brand-tab {
		font-size: 13px;
		padding: 12px 10px;
	}
}
.shipping-table-group {
	display: grid;
	gap: 20px;
}
.shipping-table-block-title {
	font-size: 14px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.shipping-table-block-title::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #3bbcb5;
	border-radius: 50%;
}
.shipping-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.shipping-table th,
.shipping-table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid #edf0f3;
}
.shipping-table th {
	background: #f7f9fb;
	font-weight: 600;
	color: #2a2f3a;
	width: 140px;
	white-space: nowrap;
}
.shipping-table td {
	color: #4a5160;
}
.bambu-placeholder {
	padding: 32px;
	background: #f7f9fb;
	border: 1px dashed #c5ced8;
	border-radius: 8px;
	text-align: center;
	color: #8a9199;
	font-size: 14px;
}
@media (max-width: 768px) {
	.brand-tab {
		font-size: 13px;
		padding: 12px 10px;
	}
	.shipping-table tr {
		display: flex;
		flex-direction: column;
	}
	.shipping-table th {
		width: 100%;
		font-size: 13px;
		padding: 10px 12px 0;
		border: none;
	}
	.shipping-table td {
		font-size: 13px;
		padding: 4px 12px 10px;
	}
}
 
/* ===== 梱包注意 ===== */
.packing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
}
.packing-card {
	background: #fff;
	border: 1px solid #e5e8ed;
	border-radius: 10px;
	padding: 24px;
	transition: border-color 0.2s;
}
.packing-card:hover {
	border-color: #3bbcb5;
}
.packing-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid #edf0f3;
}
.packing-card-icon {
	width: 32px;
	height: 32px;
	color: #3bbcb5;
	flex-shrink: 0;
}
.packing-card-title {
	font-size: 15px;
	font-weight: 700;
	color: #2a2f3a;
}
.packing-card-body {
	font-size: 13px;
	color: #5a6170;
	line-height: 1.8;
}
.packing-card-body p {
	margin-bottom: 10px;
}
.packing-card-body p:last-child {
	margin-bottom: 0;
}
.packing-card-body .sub-label {
	font-weight: 600;
	color: #2a2f3a;
	display: block;
	margin-top: 12px;
	margin-bottom: 4px;
}
@media (max-width: 1024px) {
	.packing-grid {
		grid-template-columns: 1fr;
	}
}
 
/* ===== 金額情報 ===== */
.price-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 24px 0;
}
.price-card {
	background: #f7f9fb;
	border-radius: 10px;
	padding: 24px 28px;
}
.price-card-title {
	font-size: 13px;
	font-weight: 600;
	color: #3bbcb5;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.price-card-body {
	font-size: 14px;
	color: #4a5160;
	line-height: 1.8;
}
.price-card-big {
	font-size: 24px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 8px;
	line-height: 1.3;
}
.price-card-big em {
	font-style: normal;
	font-size: 14px;
	color: #8a9199;
	font-weight: 500;
	margin-left: 4px;
}
@media (max-width: 768px) {
	.price-info {
		grid-template-columns: 1fr;
	}
}
 
/* ===== 納期 ===== */
.timeline-note {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 20px 24px;
	background: #e8f5f4;
	border: 1px solid #c4e4e1;
	border-left: 4px solid #3bbcb5;
	border-radius: 10px;
	margin: 24px 0;
	color: #2a2f3a;
}
.timeline-note-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	color: #3bbcb5;
}
.timeline-note-body {
	flex: 1;
}
.timeline-note-label {
	font-size: 12px;
	color: #2a8a82;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
}
.timeline-note-text {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	color: #2a2f3a;
}
 
/* ===== フッター ===== */
.page-foot {
	margin-top: 80px;
	padding-top: 48px;
	border-top: 1px solid #e5e8ed;
	text-align: center;
}
.foot-links {
	display: inline-flex;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	justify-content: center;
}
.foot-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: #fff;
	border: 1px solid #2a2f3a;
	color: #2a2f3a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.2s;
}
.foot-link:hover {
	background: #2a2f3a;
	color: #fff;
}
.foot-link-btn {
	font-family: inherit;
	cursor: pointer;
}
.foot-link.primary {
	background: #3bbcb5;
	color: #fff;
	border-color: #3bbcb5;
}
.foot-link.primary:hover {
	background: #2a8a82;
	border-color: #2a8a82;
}
.foot-link svg {
	width: 14px;
	height: 14px;
}
.foot-note {
	font-size: 13px;
	color: #8a9199;
	margin-top: 24px;
}
 
/* ===== フォーム見出し ===== */
.form-head {
	margin-top: 96px;
	padding-top: 80px;
	border-top: 1px solid #e5e8ed;
	text-align: center;
}
.form-head-en {
	font-size: 44px;
	font-weight: 800;
	color: #2a2f3a;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 16px;
}
.form-head-jp {
	display: inline-block;
	background: #3bbcb5;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	padding: 6px 24px;
	clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
}
.form-head-lead {
	margin-top: 28px;
	font-size: 14px;
	color: #5a6170;
	line-height: 1.9;
}
@media (max-width: 768px) {
	.form-head {
		margin-top: 64px;
		padding-top: 56px;
	}
	.form-head-en {
		font-size: 32px;
	}
	.form-head-lead {
		font-size: 13px;
	}
}
 
/* ===== フォーム切替タブ ===== */
.form-tabs-wrap {
	text-align: center;
	margin-top: 40px;
}
.form-panel {
	display: none;
	margin-top: 32px;
}
.form-panel.is-active {
	display: block;
	animation: form-panel-fade 1s ease-out;
}
@keyframes form-panel-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.form-placeholder {
	padding: 60px 32px;
	background: #f7f9fb;
	border: 1px dashed #c5ced8;
	border-radius: 10px;
	text-align: center;
	color: #8a9199;
	font-size: 14px;
}
 
/* ===== フォームゲート（同意前） ===== */
.form-content {
	display: none;
	margin-top: 40px;
}
.form-content.is-unlocked {
	display: block;
	animation: form-unlock 0.4s ease-out;
}
@keyframes form-unlock {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.form-gate {
	margin-top: 40px;
	padding: 48px 32px;
	background: linear-gradient(180deg, #f7f9fb 0%, #eef2f5 100%);
	border: 1px solid #d9e0e8;
	border-radius: 12px;
	text-align: center;
}
.form-gate.is-hidden {
	display: none;
}
.form-gate svg {
	width: 48px;
	height: 48px;
	color: #3bbcb5;
	margin-bottom: 20px;
}
.form-gate-title {
	font-size: 16px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 10px;
	line-height: 1.6;
}
.form-gate-desc {
	font-size: 13px;
	color: #5a6170;
	line-height: 1.8;
	margin-bottom: 24px;
}
.form-gate-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 36px;
	background: #3bbcb5;
	color: #fff;
	border: none;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(59, 188, 181, 0.3);
}
.form-gate-btn:hover {
	background: #2a8a82;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(59, 188, 181, 0.4);
}
@media (max-width: 768px) {
	.form-gate {
		padding: 32px 20px;
	}
	.form-gate-title {
		font-size: 14px;
	}
	.form-gate-desc {
		font-size: 12px;
	}
}

/* ===== 受付停止メッセージ ===== */
.form-closed {
	margin-top: 40px;
	padding: 56px 32px;
	background: #fff8f3;
	border: 1px solid #f4d9c2;
	border-radius: 12px;
	text-align: center;
}
.form-closed svg {
	width: 56px;
	height: 56px;
	color: #e87a3f;
	margin-bottom: 20px;
}
.form-closed-title {
	font-size: 18px;
	font-weight: 700;
	color: #c8561f;
	margin-bottom: 10px;
	line-height: 1.6;
}
.form-closed-desc {
	font-size: 13px;
	color: #6b4328;
	line-height: 1.9;
}
@media (max-width: 768px) {
	.form-closed {
		padding: 40px 20px;
	}
	.form-closed-title {
		font-size: 15px;
	}
	.form-closed-desc {
		font-size: 12px;
	}
}

/* ===== 2行構成タブ ===== */
.form-tabs-d {
	display: inline-flex;
	gap: 12px;
}
.form-tab-d {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 18px 36px;
	background: #fff;
	border: 1.5px solid #d9e0e8;
	font-family: inherit;
	cursor: pointer;
	border-radius: 10px;
	transition: all 0.2s;
	min-width: 220px;
}
.form-tab-d-label {
	font-size: 11px;
	color: #8a9199;
	letter-spacing: 0.1em;
	font-weight: 500;
}
.form-tab-d-brand {
	font-size: 16px;
	color: #2a2f3a;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.form-tab-d.is-active-d {
	background: #3bbcb5;
	border-color: #3bbcb5;
	box-shadow: 0 4px 12px rgba(59, 188, 181, 0.35);
}
.form-tab-d.is-active-d .form-tab-d-label {
	color: rgba(255, 255, 255, 0.85);
}
.form-tab-d.is-active-d .form-tab-d-brand {
	color: #fff;
}
.form-tab-d:hover:not(.is-active-d) {
	border-color: #3bbcb5;
	transform: translateY(-2px);
}
@media (max-width: 768px) {
	.form-tabs-d {
		display: flex;
		width: 100%;
		gap: 8px;
	}
	.form-tab-d {
		flex: 1;
		min-width: 0;
		padding: 14px 12px;
	}
	.form-tab-d-brand {
		font-size: 14px;
	}
}
/* ===== 修理規約モーダル ===== */
.terms-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}
.terms-modal.is-open {
	display: flex;
	animation: terms-fade-in 0.2s ease-out;
}
@keyframes terms-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
.terms-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 25, 35, 0.55);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}
.terms-modal-dialog {
	position: relative;
	background: #fff;
	border-radius: 14px;
	width: 100%;
	max-width: 1000px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}
.terms-modal-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 24px 32px;
	border-bottom: 1px solid #edf0f3;
	background: #fff;
	flex-shrink: 0;
}
.terms-modal-head-en {
	font-size: 11px;
	color: #3bbcb5;
	font-weight: 600;
	letter-spacing: 0.2em;
	margin-bottom: 4px;
}
.terms-modal-head-jp {
	font-size: 20px;
	font-weight: 700;
	color: #2a2f3a;
	letter-spacing: 0.02em;
}
.terms-modal-close {
	background: transparent;
	border: none;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6a7280;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.2s;
}
.terms-modal-close:hover {
	background: #f0f3f6;
	color: #2a2f3a;
}
.terms-modal-close svg {
	width: 20px;
	height: 20px;
}
.terms-modal-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px 32px 32px;
	scroll-behavior: smooth;
}
.terms-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #8a9199;
	padding-bottom: 20px;
	margin-bottom: 24px;
	border-bottom: 1px dashed #d5dce5;
	flex-wrap: wrap;
	gap: 8px;
}
.terms-article {
	margin-bottom: 28px;
}
.terms-article h4 {
	font-size: 15px;
	font-weight: 700;
	color: #2a2f3a;
	margin-bottom: 12px;
	padding-left: 12px;
	border-left: 3px solid #3bbcb5;
	line-height: 1.4;
}
.terms-article p {
	font-size: 13px;
	color: #2a2f3a;
	line-height: 1.9;
	margin-bottom: 10px;
}
.terms-article p:last-child {
	margin-bottom: 0;
}
.terms-sub {
	padding-left: 16px;
	font-size: 13px !important;
	color: #2a2f3a !important;
}
.terms-note {
	padding-left: 16px;
	font-size: 12px !important;
	color: #8a9199 !important;
	margin-top: -4px !important;
}
.terms-ol {
	list-style: none;
	counter-reset: terms-counter;
	padding-left: 16px;
	margin: 10px 0;
}
.terms-ol li {
	counter-increment: terms-counter;
	font-size: 13px;
	color: #2a2f3a;
	line-height: 1.9;
	padding-left: 42px;
	position: relative;
	margin-bottom: 10px;
}
.terms-ol li:last-child {
	margin-bottom: 0;
}
.terms-ol li::before {
	content: "（" counter(terms-counter) "）";
	position: absolute;
	left: 0;
	color: #2a2f3a;
	font-weight: 600;
}
/* 丸数字リスト（第15条用） */
.terms-ol-circle {
	list-style: none;
	padding-left: 36px;
	margin: 6px 0 10px;
	border-left: 2px solid #e5e8ed;
	margin-left: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.terms-ol-circle li {
	font-size: 13px;
	color: #2a2f3a;
	line-height: 1.9;
	padding-left: 32px;
	position: relative;
	margin-bottom: 10px;
}
.terms-ol-circle li:last-child {
	margin-bottom: 0;
}
.terms-ol-circle li::before {
	position: absolute;
	left: 0;
	top: 0;
	color: #2a2f3a;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.7;
}
.terms-ol-circle li:nth-child(1)::before { content: "①"; }
.terms-ol-circle li:nth-child(2)::before { content: "②"; }
.terms-ol-circle li:nth-child(3)::before { content: "③"; }
.terms-ol-circle li:nth-child(4)::before { content: "④"; }
.terms-ol-circle li:nth-child(5)::before { content: "⑤"; }
.terms-ol-circle li:nth-child(6)::before { content: "⑥"; }
.terms-ol-circle li:nth-child(7)::before { content: "⑦"; }
.terms-ol-circle li:nth-child(8)::before { content: "⑧"; }
.terms-ol-circle li:nth-child(9)::before { content: "⑨"; }
.terms-ol-circle li:nth-child(10)::before { content: "⑩"; }
.terms-modal-foot {
	padding: 16px 32px;
	border-top: 1px solid #edf0f3;
	background: #fafbfc;
	text-align: center;
	flex-shrink: 0;
}
.terms-modal-btn {
	background: #2a2f3a;
	color: #fff;
	border: none;
	padding: 12px 48px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
	letter-spacing: 0.05em;
}
.terms-modal-btn:hover {
	background: #3bbcb5;
}
/* 同意ボタン */
.terms-modal-btn-agree {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #3bbcb5;
	padding: 14px 48px;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(59, 188, 181, 0.35);
}
.terms-modal-btn-agree:hover {
	background: #2a8a82;
}
.terms-modal-btn-agree svg {
	width: 18px;
	height: 18px;
}
/* 自動モード時の出し分け */
.terms-modal.is-auto-mode .terms-modal-manual-only {
	display: none;
}
.terms-modal.is-auto-mode .terms-modal-btn-close {
	display: none;
}
.terms-modal.is-auto-mode .terms-modal-btn-agree {
	display: inline-flex;
}
.terms-modal.is-auto-mode .terms-modal-backdrop {
	cursor: default;
}
@media (max-width: 768px) {
	.terms-modal {
		padding: 20px 12px;
	}
	.terms-modal-head {
		padding: 18px 20px;
	}
	.terms-modal-head-jp {
		font-size: 17px;
	}
	.terms-modal-body {
		padding: 20px 20px 24px;
	}
	.terms-article h4 {
		font-size: 14px;
	}
	.terms-article p,
	.terms-ol li,
	.terms-ol-circle li {
		font-size: 12px;
	}
	.terms-meta {
		font-size: 11px;
	}
}
