@charset "utf-8";
/* ---------------------------------------------------------------------------------------------

　   SERVICE 

--------------------------------------------------------------------------------------------- */
.servic-html {
	--primary: #1a1a1c;
	--accent: #b39359;
	--danger: #d63031;
	--text-main: #1a1a1c;
	--text-muted: #606067;
	--bg-light: #f8f8f9;
	--border: #eaeaec;
	--font-base: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
	--transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Base Reset --- */
.service-body *, 
.service-body *::before, 
.service-body *::after { 
	box-sizing: border-box; 
}
.service-body {
	margin: 0; background: #fff;
	font-family: var(--font-base);
	color: var(--text-main); 
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	padding: 0;
	&, & * {
		line-height: 1.7;
	}
}

.service-body a { 
	text-decoration: none; 
	color: inherit; 
	transition: var(--transition); 
}

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

/* --- Content Sections & Grid Layouts --- */
.service-main .page-hero { 
	background: #000; 
	color: #fff; 
	padding: 80px 0; 
	text-align: center; 
	}
.service-main .page-hero h1 { 
	font-size: clamp(24px, 5vw, 32px); 
	font-weight: 700; margin: 0 0 12px; 
	letter-spacing: 0.1em; 
	clear: revert;
	color: revert;
	line-height: revert;
	text-decoration:none;
	text-align: center;
}
.service-main .page-hero p { 
	font-size: 14px; 
	color: #a0a0a5; margin: 0; 
	text-align: center;
}

.service-main section { padding: clamp(60px, 8vw, 100px) 0; }
.service-main .bg-alt { background: var(--bg-light); }
.service-main .sec-head { margin-bottom: 40px; text-align: center; }
.service-main .sec-label { 
	font-size: 10px; 
	font-weight: 700; 
	color: var(--accent); 
	letter-spacing: 0.2em; 
	margin-bottom: 8px; 
	display: block; 
	text-align: center;
}
.service-main .sec-head h2 { 
	font-size: clamp(20px, 4vw, 24px); 
	font-weight: 700; 
	margin: 0; 
	text-align: center;
}

/* 各種グリッドの最適化（崩れ防止・マージン調整） */
.service-main .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 24px; }
.service-main .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; }
.service-main .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 20px; }

/* カードコンポーネント（余白設計のFIX） */
.service-main .card {
	background: #fff; padding: clamp(24px, 4vw, 32px); border: 1px solid var(--border); border-radius: 12px;
	display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
	transition: var(--transition); height: 100%; width: 100%;
}
.service-main .card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); }

/* 特殊カード用（取扱タイトル等で使用） */
.service-main .card-center { max-width: 600px; margin: 0 auto; text-align: center; align-items: center; }

.service-main .tag { font-size: 10px; font-weight: 700; color: #fff; padding: 3px 8px; margin-bottom: 16px; border-radius: 4px; letter-spacing: 0.05em; flex-shrink: 0; }
.service-main .tag.gold { background: var(--accent); }
.service-main .tag.black { background: var(--primary); }
.service-main .tag.red { background: var(--danger); }
.service-main .tag.gray { background: #8e8e93; }

.service-main .card h3 { margin: 0 0 12px; font-size: 17px; font-weight: 700; width: 100%; text-align: inherit; }
.service-main .card p { font-size: 13.5px; color: var(--text-muted); margin: 0; width: 100%; text-align: inherit; flex-grow: 1; }

.service-main .card-link { font-size: 11px; font-weight: 800; color: var(--primary); letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; flex-shrink: 0; }
.service-main .card-link::after { content: '→'; }

.service-main .btn-view-more { margin-top: 24px; }

/* 下部アクションボタンエリアの最適化 */
.service-main .sec-action { text-align: center; margin-top: clamp(40px, 6vw, 56px); }
.service-main .btn-more-plans {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--primary); color: #fff; padding: 14px 36px; border-radius: 8px;
	font-size: 13px; font-weight: 700; letter-spacing: 0.05em; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-main .btn-more-plans:hover { background: #2a2a2c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.service-body .btn-action { background: var(--primary); color: #fff; padding: 12px 20px; font-size: 11px; font-weight: 700; border-radius: 6px; }
.service-main .btn-apply { 
	background: var(--primary); color: #fff; 
	padding: 10px 20px; 
	border-radius: 8px; 
	font-size: 12px; 
	font-weight: 700; 
	white-space: nowrap; 
}

/* --- Footer CTA Area --- */
.footer-cta-zone {
	padding: 60px 0;
	border-top: 1px solid var(--border); 
}
.footer-cta-zone .footer-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.footer-cta-zone .footer-banner {
	background: #f4f4f7; border: 1px solid var(--border); padding: 30px;
	display: flex; align-items: center; justify-content: space-between; border-radius: 12px; gap: 15px;
}
.footer-cta-zone .footer-banner h3 { font-size: 15px; margin: 0 0 4px; }
.footer-cta-zone .footer-banner p { font-size: 12px; margin: 0; color: var(--text-muted); }
.footer-cta-zone .container { 
	max-width: 1130px; 
	margin: 0 auto; 
	padding: 0 20px; 
}



@media (max-width: 480px) {
	.footer-cta-zone .footer-banner {
		flex-direction: column; 
		text-align: center; 
		& p, & h3 {
			text-align: center;
		}
	}
}


@media (max-width: 640px) {
	.service-main .btn-apply { padding: 8px 14px; font-size: 11px; }
}

/* --- Responsive SP (375px) --- */
@media (max-width: 375px) {
	.service-main .container {
		padding: 0 12px; 
	}
	.service-main .btn-apply { padding: 8px 10px; font-size: 10px; }
	
	.footer-cta-zone .container {
		padding: 0 12px; 
	}
}

/* ---------------------------------------------------------------------------------------------

　   why-ars 

--------------------------------------------------------------------------------------------- */
.why-ars-html {
	--primary: #1a1a1c;
	--accent: #b39359;
	--text-main: #1a1a1c;
	--text-muted: #606067;
	--bg-light: #f8f8f9;
	--border: #eaeaec;
	--font-base: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
}

/* --- Base Reset --- */
.why-ars-body *, 
.why-ars-body *::before, 
.why-ars-body *::after {
	box-sizing: border-box;
}

.why-ars-main * {line-height: 1.6;}

.why-ars-body {
	margin: 0; 
	background: #fff;
	font-family: var(--font-base);
	color: var(--text-main); 
	-webkit-font-smoothing: antialiased;
}

.why-ars-main {
	letter-spacing: -0.01em;
}

.why-ars-main .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* --- Page Header --- */
.why-ars-main .page-header { padding: 7px 0 60px; border-bottom: 1px solid var(--border); }
.why-ars-body .why-ars-main .breadcrumb { 
	display: flex; 
	gap: 8px; 
	font-size: 10px; 
	color: var(--text-muted); 
	margin-bottom: 24px; 
	font-weight: 600; 
	letter-spacing: 0.12em; 
	text-transform: uppercase; 
}
.why-ars-body .why-ars-main .breadcrumb a{ 
	color: var(--text-muted); 
}
.why-ars-main .page-title {
	margin: 0;
	font-size: 32px; 
	font-weight: 800; 
	letter-spacing: 0.05em; 
	line-height: 1.2;
	text-align: left;
	text-decoration: none;
}

/* --- Section Setup --- */
.why-ars-main section { padding: 100px 0; }
.why-ars-main .bg-alt { background: var(--bg-light); }
.why-ars-main .sec-label {
	font-size: 10px; font-weight: 700; color: var(--accent);
	letter-spacing: 0.25em; display: block; margin-bottom: 16px;
	text-transform: uppercase;
}
.why-ars-main .sec-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 70px;
	letter-spacing: 0.04em;
	text-align: left;
}

/* --- Highlights Grid --- */
.why-ars-main .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 40px; }
.why-ars-main .card {
	position: relative;
	padding-top: 50px;
	border-top: 1px solid var(--border);
}
.why-ars-main .card::after {
	content: attr(data-num);
	position: absolute; top: -30px; left: -10px;
	font-size: 100px; font-family: 'Inter'; font-weight: 800;
	-webkit-text-stroke: 1px #f0f0f2;
	color: transparent; z-index: -1; line-height: 1;
	pointer-events: none;
}
.why-ars-main .card:hover { border-top-color: var(--accent); }
.why-ars-main .card h3 { font-size: 17px; margin: 0 0 16px; font-weight: 700; color: var(--primary); letter-spacing: 0.02em; }
.why-ars-main .card p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.9; text-align: justify; }

/* --- Security & Management --- */
.why-ars-main .trust-box { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: flex-start; }
.why-ars-main .trust-lead { font-size: 16px; color: var(--text-main); margin-bottom: 40px; font-weight: 500; }
.why-ars-main .trust-list { display: grid; gap: 40px; }
.why-ars-main .trust-item strong { display: block; font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.why-ars-main .trust-item p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.8; }

.why-ars-main .security-status {
	position: sticky; top: 120px;
	padding: 60px 40px;
	border-left: 1px solid var(--border);
}
.why-ars-main .status-code {
	font-size: 11px; font-weight: 800; letter-spacing: 0.3em;
	text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.why-ars-main .status-msg { font-size: 26px; font-weight: 800; line-height: 1.3; color: var(--primary); letter-spacing: -0.02em; }
.why-ars-main .status-sub { font-size: 12px; color: var(--text-muted); margin-top: 24px; font-weight: 500; border-top: 1px solid var(--border); padding-top: 24px; }

/* --- Responsive --- */
@media (max-width: 960px) {
	.why-ars-main section { padding: 70px 0; }
	.why-ars-main .grid-3 { grid-template-columns: 1fr; gap: 50px; }
	.why-ars-main .trust-box { grid-template-columns: 1fr; gap: 60px; }
	.why-ars-main .security-status { position: static; border-left: none; border-top: 1px solid var(--border); padding: 40px 0 0; }
	.why-ars-main .page-title { font-size: 28px; }
	.why-ars-main .card::after { font-size: 80px; top: -20px; }
}

@media (max-width: 640px) {
.why-ars-main .page-header { padding: 15px 0 60px;}
}
/* ---------------------------------------------------------------------------------------------

　   standard 

--------------------------------------------------------------------------------------------- */
.standard-html {
	--primary: #1a1a1c;
	--accent: #b39359;
	--text-main: #1a1a1c;
	--text-muted: #606067;
	--bg-light: #f8f8f9;
	--border: #eaeaec;
	--font-base: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
}

.standard-body *, 
.standard-body *::before, 
.standard-body *::after { 
	box-sizing: border-box; 
}
.standard-main *{ line-height: 1.6;}

.standard-body {
	margin: 0; 
	background: #fff;
	font-family: var(--font-base);
	color: var(--text-main); 
	-webkit-font-smoothing: antialiased;
}
.standard-main{
	letter-spacing: -0.01em;
}
.standard-main .container { 
	max-width: 1080px; 
	margin: 0 auto; 
	padding: 0 24px; 
}

/* --- Page Header --- */
.standard-main .page-header { padding: 7px 0 60px; border-bottom: 1px solid var(--border); }
.standard-body .standard-main .breadcrumb{ 
	display: flex; 
	gap: 8px; 
	font-size: 10px; 
	color: var(--text-muted); 
	margin-bottom: 24px; 
	font-weight: 600; 
	letter-spacing: 0.12em; 
	text-transform: uppercase;
}
.standard-main .page-title { margin: 0; font-size: 32px; font-weight: 800; letter-spacing: 0.05em; line-height: 1.2; }

/* --- Section Setup --- */
.standard-main section { padding: 100px 0; }
.standard-main .sec-label{ 
	font-size: 10px; 
	font-weight: 700; 
	color: var(--accent); 
	letter-spacing: 0.25em; 
	display: block;
	margin-bottom: 16px; 
	text-transform: uppercase; 

}

.standard-main .sec-title { font-size: 24px; font-weight: 700; margin: 0 0 60px; letter-spacing: 0.04em; }

/* --- Layout Components --- */
.standard-main .split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.standard-main .split-text h2 { 
	font-size: 28px; 
	line-height: 1.4; 
	margin:revert;
	margin-bottom: 24px;
	font-weight: 700;

}
.standard-main .split-text p { 
	font-size: 14.5px;
	color: var(--text-muted); 
	line-height: 2;
	text-align: justify;
	margin:revert;
}
.standard-main .split-img { 
	background: #f0f0f2; 
	height: 400px; 
	border-radius: 2px; 

	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}

.standard-main .split-img.expertise{
	background-image:url(/img/service/apt.jpg);
}
.standard-main .split-img.protection{
	height:350px;
	background-image:url(/img/service/fs03.jpg);
}

/* --- Tech Cards --- */
.standard-main .tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 100px; }
.standard-main .tech-card { background: var(--bg-light); padding: 50px; border-radius: 2px; }
.standard-main .tech-card h3 { font-size: 18px; margin: 0 0 20px; font-weight: 700; border-left: 3px solid var(--accent); padding-left: 15px; }
.standard-main .tech-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.9; margin: 0; }

/* --- Detailed Inspection --- */
.standard-main .inspect-area { margin-top: 120px; border-top: 1px solid var(--border); padding-top: 80px; }
.standard-main .inspect-area .sec-label { text-align: center; }
.standard-main .inspect-area .sec-title { text-align: center; margin-bottom: 50px; }

.standard-main .inspect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.standard-main .inspect-item { text-align: center; }
.standard-main .inspect-img { 
	width: 100%; aspect-ratio: 1; 
	background: #f0f0f2; 
	margin-bottom: 15px; 
	border-radius: 2px; 

	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}
.standard-main .inspect-img.scar { 
	background-image:url(/img/service/sp01.jpg);
}
.standard-main .inspect-img.chipping { 
	background-image:url(/img/service/sp02.jpg);
}
.standard-main .inspect-img.edges { 
	background-image:url(/img/service/sp03.jpg);
}
.standard-main .inspect-img.printing { 
	background-image:url(/img/service/sp04.jpg);
}
.standard-main .inspect-item span { font-size: 11px; font-weight: 700; color: var(--primary); letter-spacing: 0.1em; }

/* --- Professional Highlight (Dark) --- */
.standard-main .pro-section { background: var(--primary); color: #fff; padding: 120px 0; }
.standard-main .pro-content { max-width: 750px; margin: 0 auto; text-align: center; }
.standard-main .pro-content .sec-label{	text-align: center;}
.standard-main .pro-content h2 { 
	font-size: 28px; 
	font-weight: 700; 
	margin-bottom: 30px; 
	letter-spacing: 0.05em;
	text-align: center;
	margin-block-start:revert; 
}
.standard-main .pro-content p { 
	font-size: 15px; 
	color: #a0a0a5; 
	line-height: 2.1; 
	margin: 0;
	text-align: center;
}

/* --- Responsive --- */
@media (max-width: 850px) {
	.standard-main section { padding: 70px 0; }
	.standard-main .split-grid, .standard-main .tech-grid { grid-template-columns: 1fr; gap: 40px; }
	.standard-main .inspect-grid { grid-template-columns: repeat(2, 1fr); }
	.standard-main .split-text h2 { 
	font-size: 24px; 

	}
	.standard-main .split-img { height: 300px; }
}

@media (max-width: 640px) {
.standard-main .page-header { padding: 15px 0 60px;}
}

/* ---------------------------------------------------------------------------------------------

　   reliability 

--------------------------------------------------------------------------------------------- */
.reliability-html {
	--primary: #1a1a1c;
	--accent: #b39359;
	--text-main: #1a1a1c;
	--text-muted: #606067;
	--bg-light: #f8f8f9;
	--border: #eaeaec;
	--font-base: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
}

.reliability-body *, 
.reliability-body *::before, 
.reliability-body *::after { box-sizing: border-box; }
.reliability-body  {
	margin: 0; background: #fff;
	font-family: var(--font-base);
	color: var(--text-main); 
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;

}
.reliability-main *{
	line-height: 1.6;
}
.reliability-main{
	letter-spacing: -0.01em;
}
.reliability-main .container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* --- Page Header --- */
.reliability-main .page-header { padding: 7px 0 60px; border-bottom: 1px solid var(--border); }
.reliability-main .breadcrumb { 
	display: flex; 
	gap: 8px; 
	font-size: 10px; 
	color: var(--text-muted); 
	margin-bottom: 24px; 
	font-weight: 600; 
	letter-spacing: 0.12em; 
	text-transform: uppercase; 
}
.reliability-main .breadcrumb a{
	color: var(--text-muted);
}
.reliability-main .page-title { margin: 0; font-size: 32px; font-weight: 800; letter-spacing: 0.05em; line-height: 1.2; }

/* --- Section Setup --- */
.reliability-main section { padding: 80px 0; }
.reliability-main .sec-label { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 0.25em; display: block; margin-bottom: 16px; text-transform: uppercase; }
.reliability-main .sec-title { font-size: 22px; font-weight: 700; margin: 0 0 40px; border-bottom: 1px solid var(--primary); padding-bottom: 15px; }

/* --- Grade Table --- */
.reliability-main .grade-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.reliability-main .grade-table tr { border-bottom: 1px solid var(--border); }
.reliability-main .grade-table th { width: 120px; padding: 25px 0; text-align: left; vertical-align: middle; }
.reliability-main .grade-table td { padding: 25px 0; font-size: 14.5px; color: var(--text-main); line-height: 1.8; }
.reliability-main .grade-table td span{ line-height: 1.8; }

.reliability-main .grade-num { font-size: 22px; font-weight: 800; font-family: 'Inter'; line-height: 1; color: var(--primary); }
/* (+) を小さく補助的に表示 */
.reliability-main .grade-plus { font-size: 14px; font-weight: 600; vertical-align: baseline; margin-left: 2px; }

.reliability-main .grade-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.reliability-main .grade-note { font-size: 12px; color: var(--text-muted); display: block; margin-top: 8px; font-weight: 500; }

/* --- Info Layout --- */
.reliability-main .info-section { margin-bottom: 60px; }
.reliability-main .info-box { background: var(--bg-light); padding: 40px; border-radius: 2px; }
.reliability-main .info-box.submission { border-left: 3px solid var(--accent); }

.reliability-main .rule-group { margin-bottom: 35px; }
.reliability-main .rule-group:last-child { margin-bottom: 0; }
.reliability-main .rule-group h4 { font-size: 14.5px; color: var(--primary); margin: 0 0 12px; font-weight: 700; }
.reliability-main .rule-group.operation{margin-top: 35px;}
.reliability-main .info-list { list-style: none; padding: 0; margin: 0; }
.reliability-main .info-list li { font-size: 13.5px; color: var(--text-muted); position: relative; padding-left: 1.5em; margin-bottom: 10px; line-height: 1.7; }
.reliability-main .info-list li::before { content: "・"; position: absolute; left: 0; }

/* --- Special Notations --- */
.reliability-main .spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 15px; }
.reliability-main .spec-item { border: 1px solid var(--border); padding: 25px; }
.reliability-main .spec-name { font-size: 15px; font-weight: 700; color: var(--primary); display: block; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.reliability-main .spec-desc { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.8; }

/* --- Disclaimer --- */
.reliability-main .disclaimer-box { background: #fff; border: 1px solid #d0d0d5; padding: 40px; text-align: center; margin-top: 40px; }
.reliability-main .disclaimer-box h4 { font-size: 14px; margin: 0 0 15px; font-weight: 700; color: #b00; text-align: center;}
.reliability-main .disclaimer-box p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.8; text-align: justify; }

@media (max-width: 768px) {
	.reliability-main .spec-grid { grid-template-columns: 1fr; }
	.reliability-main .grade-table th { width: 90px; }
	.reliability-main .info-box { padding: 30px 20px; }
}

@media (max-width: 640px) {
	.reliability-main .page-header { padding: 15px 0 60px;}
}

/* ---------------------------------------------------------------------------------------------

　   holder

--------------------------------------------------------------------------------------------- */
.holder-html {
	--primary: #1a1a1c;
	--accent: #b39359;
	--text-main: #1a1a1c;
	--text-muted: #606067;
	--bg-light: #f8f8f9;
	--border: #eaeaec;
	--font-base: 'Inter', 'Noto Sans JP', sans-serif;
	--radius: 4px;
}

.holder-body *, .holder-body *::before, .holder-body *::after { box-sizing: border-box; }
.holder-body {
	margin: 0; background: #fff;
	font-family: var(--font-base);
	color: var(--text-main); 
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

.holder-main *{
	line-height: 1.8;
}

.holder-main .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* --- Breadcrumb --- */
.holder-main .breadcrumb { display: flex; gap: 8px; font-size: 10px; color: var(--text-muted); padding: 6px 0 0; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.holder-main .breadcrumb a { color: inherit; text-decoration: none; }
.holder-main .breadcrumb a:hover { color: var(--accent); }

.holder-main .sec-label { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 0.3em; display: block; margin-bottom: 16px; text-transform: uppercase;}

.holder-main .img-box { background: #f0f0f3; border-radius: var(--radius); overflow: hidden; position: relative; width: 100%; display: block; }
.holder-main .img-box img { width: 100%; height: 100%; object-fit: cover;}
.holder-main .hero-visual .img-box img { object-fit: contain;}

/* --- Hero --- */
.holder-main .product-hero { padding: 60px 0 80px; text-align: center; border-bottom: 1px solid var(--border); }
.holder-main .product-hero .sec-label { text-align: center; }
.holder-main .product-hero h1 { font-size: clamp(22px, 4.5vw, 32px); font-weight: 800; margin: 0 0 24px; letter-spacing: 0.05em; text-align: center;}
.holder-main .product-hero p { max-width: 760px; margin: 0 auto 50px; font-size: 15.5px; color: var(--text-muted); line-height: 1.9; text-align: center;}

.holder-main .hero-visual { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.holder-main .hero-visual .img-box { 
	flex: 0 1 340px; 
/*	aspect-ratio: 3 / 4.2; */
	box-shadow: 0 15px 40px rgba(0,0,0,0.06); 
}

/* Holder Specs (Positioned below images) */
.holder-main .holder-spec-container { margin-top: 40px; text-align: center;}
.holder-main .holder-spec-brief { display: inline-flex; gap: clamp(15px, 4vw, 40px); justify-content: center; background: #fff; padding: 16px 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.holder-main .spec-item { font-size: 14px; font-weight: 700; color: var(--primary); display: flex; align-items: baseline; gap: 8px; }
.holder-main .spec-item span { color: var(--accent); font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.holder-main .spec-note { font-size: 11px; color: #a0a0a5; margin-top: 15px; text-align: center;}

/* --- Features --- */
.holder-main .feature-row { display: flex; align-items: center; gap: clamp(30px, 8vw, 100px); padding: 90px 0; border-bottom: 1px solid var(--border); }
.holder-main .feature-row:nth-child(even) { flex-direction: row-reverse; }
.holder-main .feature-text { flex: 1.2; }
.holder-main .feature-img { flex: 1; aspect-ratio: 16 / 10; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.holder-main .feature-text h2 { font-size: clamp(19px, 3.5vw, 24px); font-weight: 800; margin: 0 0 18px; line-height: 1.4; color: var(--primary); }
.holder-main .feature-text p { font-size: 15px; color: var(--text-muted); text-align: justify; margin: revert;}

/* --- Caption Detail --- */
.holder-main .caption-section { padding: 100px 0; background: var(--bg-light); }
.holder-main .caption-header { text-align: center; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }
.holder-main .caption-header .sec-label { text-align: center; }
.holder-main .caption-header h2 { font-size: clamp(20px, 4vw, 26px); font-weight: 800; margin: revert; margin-bottom: 20px; text-align: center;}
.holder-main .caption-header .intro-pr { font-size: 15px; color: var(--text-muted); line-height: 1.8; text-align: center; margin: revert; }

.holder-main .caption-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.holder-main .caption-card { background: #fff; padding: clamp(25px, 5vw, 45px); border-radius: var(--radius); border: 1px solid var(--border); }
.holder-main .caption-card h3 { 
	font-size: 11px; 
	color: var(--accent); 
	letter-spacing: 0.15em; 
	margin: revert;
	margin-bottom: 25px; 
	font-weight: 800; 
	border-bottom: 1px solid var(--border); 
	padding-bottom: 12px; 
	
}
.holder-main .caption-card p{
	font-size: 11px;
	color: #a0a0a5;
	margin: revert;
	margin-top: 15px;
	line-height: 1.5;
}

.holder-main .lang-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.holder-main .img-label { 
	font-size: 10px; 
	font-weight: 700; 
	text-align: center; 
	margin-top: 10px; 
	color: var(--text-muted); 
	position: absolute;
	z-index: 0;
}

.holder-main .caption-img img{
	position: relative;
	z-index: 1;
	object-fit: contain;
}

.holder-main .spec-table { width: 100%; border-collapse: collapse; }
.holder-main .spec-table tr { border-bottom: 1px solid #f4f4f6; }
.holder-main .spec-table td { padding: 12px 0; font-size: 13px; vertical-align: top; }
.holder-main .spec-table td:first-child { color: var(--text-muted); width: 35%; }
.holder-main .spec-table td:last-child { color: var(--primary); font-weight: 700; text-align: right; }

/* --- Caution Area --- */
.holder-main .caution-area { margin-top: 80px; padding: 45px; background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--primary); }
.holder-main .caution-area h4 { margin: 0 0 25px; font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: var(--primary); }
.holder-main .caution-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.holder-main .caution-col h5 { font-size: 13px; margin: 0 0 12px; color: var(--primary); font-weight: 700; }
.holder-main .caution-area ul { padding-left: 18px; margin: 0; list-style-type:disc;}
.holder-main .caution-area li { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
.holder-main .caution-area li b{ line-height: 1.6; }

@media (max-width: 768px) {
	.holder-main .hero-visual { flex-direction: column; align-items: center; }
	.holder-main .hero-visual .img-box { width: 85%; flex: none; }
	.holder-main .feature-row { flex-direction: column !important; padding: 60px 0; gap: 30px; }
	.holder-main .caption-grid { grid-template-columns: 1fr; }
	.holder-main .lang-pair { grid-template-columns: 1fr; }
	.holder-main .caution-section-inner { grid-template-columns: 1fr; gap: 30px; }
	.holder-main .holder-spec-brief { flex-direction: column; gap: 12px; padding: 20px; width: 85%; }
	.holder-main .spec-item { justify-content: space-between; border-bottom: 1px solid var(--bg-light); padding-bottom: 8px; }
	.holder-main .spec-item:last-child { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 640px) {
	.holder-main .breadcrumb { padding: 14px 0 0;}
}

/* ---------------------------------------------------------------------------------------------

　   evidence

--------------------------------------------------------------------------------------------- */
.evidence-html {
	--primary: #1a1a1c;
	--accent: #b39359;
	--text-main: #1a1a1c;
	--text-muted: #606067;
	--bg-light: #f8f8f9;
	--bg-white: #ffffff;
	--border: #eaeaec;
	--font-base: 'Inter', 'Noto Sans JP', sans-serif;
	--radius: 4px;
}

.evidence-body *, .evidence-body *::before, .evidence-body *::after { box-sizing: border-box; }
.evidence-main {
	margin: 0; background: var(--bg-white);
	font-family: var(--font-base);
	color: var(--text-main); 
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}
.evidence-main * {
	line-height: 1.8;
}

.evidence-main .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* --- Breadcrumb --- */
.evidence-main .breadcrumb { display: flex; gap: 8px; font-size: 10px; color: var(--text-muted); padding: 6px 0 0; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.evidence-main .breadcrumb a { color: inherit; text-decoration: none; }
.evidence-main .breadcrumb a:hover { color: var(--accent); }

.evidence-main .sec-label { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 0.3em; display: block; margin-bottom: 16px; text-transform: uppercase; }
.evidence-main .text-center { text-align: center; }
.evidence-main .bold { font-weight: 800; }

/* --- Hero --- */
.evidence-main .product-hero { padding: 60px 0 80px; text-align: center; border-bottom: 1px solid var(--border); }
.evidence-main .product-hero .sec-label { text-align: center; }
.evidence-main .product-hero h1 { font-size: clamp(22px, 4.5vw, 32px); font-weight: 800; margin: 0 0 24px; letter-spacing: 0.05em; line-height: 1.4; text-align: center; }
.evidence-main .product-hero p { max-width: 760px; margin: 0 auto 50px; font-size: 15.5px; color: var(--text-muted); line-height: 1.9; text-align: center; }

.evidence-main .hero-visual { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.evidence-main .hero-visual .visual-box { flex: 0 1 480px; background: var(--bg-light); padding: 50px 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 15px 40px rgba(0,0,0,0.04); }

.evidence-main .cert { 
	background: #fff; 
	width: 100%; 
/*	aspect-ratio: 148/100; */
	box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
	display: flex; align-items: center; 
	justify-content: center; 
	font-size: 12px; 
	color: #ccc; 
	letter-spacing: 0.2em; 
	position: relative; 
	font-weight: 800; 
	height: auto;

}
.evidence-main .hero-visual .cert img{ 
	width: 100%; 
	height: auto;
	max-width: 100%;
	object-fit: contain;
}
.evidence-main .feature-img .cert img{ 
	object-fit: cover;
	width: 100%; 
	height: 100%;
}

.evidence-main .dim-label { position: absolute; font-size: 10px; color: var(--accent); font-weight: bold; text-align: center;}
.evidence-main .dim-h { bottom: -25px; left: 0; right: 0; border-bottom: 1px solid var(--accent); padding-bottom: 4px; }
.evidence-main .dim-v { right: -30px; top: 0; bottom: 0; writing-mode: vertical-rl; border-right: 1px solid var(--accent); padding-right: 4px; }

/* Spec Brief */
.evidence-main .holder-spec-container { margin-top: 50px;  text-align: center;}
.evidence-main .holder-spec-brief { display: inline-flex; gap: clamp(15px, 4vw, 40px); justify-content: center; background: #fff; padding: 16px 40px; border-radius: var(--radius); border: 1px solid var(--border); }
.evidence-main .spec-item { font-size: 14px; font-weight: 700; color: var(--primary); display: flex; align-items: baseline; gap: 8px; }
.evidence-main .spec-item span { color: var(--accent); font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }

/* --- Features --- */
.evidence-main .feature-row { display: flex; align-items: center; gap: clamp(30px, 8vw, 100px); padding: 90px 0; border-bottom: 1px solid var(--border); }
.evidence-main .feature-row:nth-child(even) { flex-direction: row-reverse; }
.evidence-main .feature-text { flex: 1.2; }
.evidence-main .feature-img { flex: 1; background: var(--bg-light); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); }
/*.evidence-main .visual-box img { width: 100%; height: 100%; object-fit: cover;}*/

.evidence-main .feature-text h2 { font-size: clamp(19px, 3.5vw, 24px); font-weight: 800; margin: 0 0 18px; line-height: 1.4; color: var(--primary); }
.evidence-main .feature-text p { font-size: 15px; color: var(--text-muted); text-align: justify; }

/* --- Spec Detail Table --- */
.evidence-main .spec-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.evidence-main .spec-table tr { border-bottom: 1px solid #f4f4f6; }
.evidence-main .spec-table td { padding: 12px 0; font-size: 13px; vertical-align: top; }
.evidence-main .spec-table td:first-child { color: var(--text-muted); width: 30%; }
.evidence-main .spec-table td:last-child { color: var(--primary); font-weight: 700; text-align: right; }

/* --- Grade Designs (Dark Section) --- */
.evidence-main .grade-section { padding: 100px 0; background: var(--primary); color: #fff; }
.evidence-main .grade-header { text-align: center; margin-bottom: 48px; }
.evidence-main .grade-header  :is(h2,p,span){
	text-align: center;
}
.evidence-main .grade-header h2 { font-size: clamp(20px, 4vw, 26px); font-weight: 800; margin:revert;}
.evidence-main .grade-header p {color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 16px; margin-bottom: 0; }
.evidence-main .grade-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.evidence-main .grade-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 40px 20px; text-align: center; border-radius: var(--radius); }
.evidence-main .grade-num { font-size: 12px; font-weight: 800; color: var(--accent); margin-bottom: 20px; display: block; text-align: center; }
.evidence-main .grade-foil { 
	width: 60px; 
	height: 50px; 
	margin: 0 auto 20px; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	font-size: 9px; 
	color: rgba(255,255,255,0.5); 
	font-weight: 800; 
}

.evidence-main .grade-foil img{
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

/* --- Application Section --- */
.evidence-main .how-section { padding: 100px 0; background: var(--bg-light); }
.evidence-main .how-header { text-align: center; margin-bottom: 50px; }
.evidence-main .how-header :is(h2,span){ text-align: center; }
.evidence-main .how-header h2 { font-size: clamp(20px, 4vw, 26px); font-weight: 800; margin:revert;}
.evidence-main .how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px;}
.evidence-main .how-card { 
	background: #fff;
	border: 1px solid var(--border); 
	padding: clamp(25px, 5vw, 45px); 
	border-radius: var(--radius); 
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.evidence-main .how-card.is-highlight { 
	background: #ffffff;
	border-top: 3px solid var(--accent);
}
.evidence-main .how-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.04); }

.evidence-main .how-label { color: var(--accent); font-weight: 800; font-size: 11px; margin-bottom: 12px; display: block; border-bottom: 1px solid var(--border); padding-bottom: 12px; letter-spacing: 0.15em; }
.evidence-main .how-title { font-size: 18px; font-weight: 800; margin: 0 0 16px; color: var(--primary); }
.evidence-main .how-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; text-align: justify; }

.evidence-main .sub-flow { background: var(--bg-light); padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); }
.evidence-main .sub-flow-label { font-weight: 800; font-size: 13px; color: var(--primary); display: block; margin-bottom: 4px; }
.evidence-main .sub-flow-text { font-size: 13px; color: var(--text-muted); margin:revert; margin-bottom: 16px; line-height: 1.6;}
.evidence-main .sub-flow-text:last-child { margin-bottom: 0; }

/* Centralized Button */
.evidence-main .cta-area { text-align: center; margin-top: 50px; }
.evidence-main .btn-main { display: inline-block; background: var(--primary); color: #fff; text-decoration: none; padding: 20px 64px; font-size: 15px; font-weight: 700; border-radius: var(--radius); transition: 0.3s; letter-spacing: 0.05em; }
.evidence-main .btn-main:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- Caution Area --- */
.evidence-main .caution-area { margin-top: 80px; padding: 45px; background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--primary); text-align: left; }
.evidence-main .caution-area h4 { margin: 0 0 25px; font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: var(--primary); }
.evidence-main .caution-area ul { padding-left: 18px; margin: 0; list-style-type:disc;}
.evidence-main .caution-area li { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
.evidence-main .caution-area li b{ line-height: 1.6; }

@media (max-width: 768px) {
	.evidence-main .hero-visual { flex-direction: column; align-items: center; }
	.evidence-main .hero-visual .visual-box { width: 100%; flex: none; padding: 40px 20px; }
	.evidence-main .feature-row { flex-direction: column !important; padding: 60px 0; gap: 30px; }
	.evidence-main .grade-grid { grid-template-columns: repeat(2, 1fr); }
	.evidence-main .how-grid { grid-template-columns: 1fr; gap: 30px; }
	.evidence-main .holder-spec-brief { flex-direction: column; gap: 12px; padding: 20px; width: 100%; }
	.evidence-main .spec-item { justify-content: space-between; border-bottom: 1px solid var(--bg-light); padding-bottom: 8px; }
	.evidence-main .spec-item:last-child { border-bottom: none; padding-bottom: 0; }
	.evidence-main .btn-main { width: 100%; text-align: center; }
}


/* ---------------------------------------------------------------------------------------------

　   plans

--------------------------------------------------------------------------------------------- */

.plans-html {
	--bg-global: #f5f5f7;
	--bg-card: #ffffff;
	--text-main: #1d1d1f;
	--text-sub: #6e6e73;
	--border: #e5e5ea;
	--border-focus: #0071e3;
	--font-base: 'Inter', 'Noto Sans JP', sans-serif;
	--transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);

	/* 💡 ブランドカラー定義（ご提示の画像バッジから正確に抽出） */
	--color-standard: #b3996a;     /* Standard: ゴールドベージュ */
	--color-express: #c93b32;      /* Express: プレミアムレッド */
	--color-exchange: #1d1d1f;     /* Exchange: ソリッドブラック */
	--color-maintenance: #8e8e93;  /* Maintenance: クールグレー */

	/* 動的初期値 */
	--theme-color: var(--color-standard);
	--meta-bg: rgba(179, 153, 106, 0.05);
}

/* タブ切り替え時のテーマカラー連動ロジック */
.plans-main #tab1:checked ~ * { --theme-color: var(--color-standard); --meta-bg: rgba(179, 153, 106, 0.05); }
.plans-main #tab2:checked ~ * { --theme-color: var(--color-express); --meta-bg: rgba(201, 59, 50, 0.04); }
.plans-main #tab3:checked ~ * { --theme-color: var(--color-exchange); --meta-bg: rgba(29, 29, 31, 0.03); }
.plans-main #tab4:checked ~ * { --theme-color: var(--color-maintenance); --meta-bg: rgba(142, 142, 147, 0.06); }

.plans-body *, 
.plans-body *::before, 
.plans-body *::after {
	box-sizing: border-box;
}

.plans-body {
	margin: 0;
	background-color: var(--bg-global);
	color: var(--text-main);
	font-family: var(--font-base);
	font-weight: 400;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

.plans-main *, .hero-header *, .site-footer *{
	line-height: 1.8;
}


.plans-main.container, .hero-header .container, .site-footer .container{
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

/* ヘッダー */
.plans-body .hero-header {
	padding: 7px 0 44px;
	text-align: center;
}
.plans-body .hero-header h1 {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--text-main);
	text-align: center;
}
.plans-body .hero-header p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-sub);
	letter-spacing: 0.02em;
	text-align: center;
}

/* アクセシビリティ用隠し入力 */
.plans-main .srt-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* セグメントコントロール（タブナビゲーション） */
.plans-main .segment-wrapper {
	max-width: 660px;
	margin: 0 auto 56px;
	position: relative;
}

.plans-main .segment-control {
	display: flex;
	background: rgba(0, 0, 0, 0.04);
	padding: 5px;
	border-radius: 14px;
	width: 100%;
}

.plans-main .segment-label {
	flex: 1;
	text-align: center;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-sub);
	cursor: pointer;
	border-radius: 10px;
	transition: var(--transition);
	user-select: none;
	white-space: nowrap;
}

.plans-main .segment-label:hover {
	color: var(--text-main);
}

/* タブアクティブ制御 */
.plans-main #tab1:checked ~ .segment-wrapper .label1,
.plans-main #tab2:checked ~ .segment-wrapper .label2,
.plans-main #tab3:checked ~ .segment-wrapper .label3,
.plans-main #tab4:checked ~ .segment-wrapper .label4 {
	background: #ffffff;
	color: var(--text-main);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
	font-weight: 600;
}

.plans-main #tab1:focus-visible ~ .segment-wrapper .label1,
.plans-main #tab2:focus-visible ~ .segment-wrapper .label2,
.plans-main #tab3:focus-visible ~ .segment-wrapper .label3,
.plans-main #tab4:focus-visible ~ .segment-wrapper .label4 {
	outline: 2px solid var(--border-focus);
	outline-offset: 2px;
}

/* 表示コンテンツ切り替え */
.plans-main .content-wrapper {
	margin-bottom: 96px;
}

.plans-main .tab-pane {
	display: none;
	animation: smoothShow 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes smoothShow {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.plans-main #tab1:checked ~ .content-wrapper #content1,
.plans-main #tab2:checked ~ .content-wrapper #content2,
.plans-main #tab3:checked ~ .content-wrapper #content3,
.plans-main #tab4:checked ~ .content-wrapper #content4 {
	display: block;
}

/* 2カラムレイアウト構造 */
.plans-main .service-grid-layout {
	display: grid;
	grid-template-columns: 1fr 370px;
	gap: 32px;
	align-items: start;
}

/* 白ベースのカードモジュール */
.plans-main .ui-card {
	background: var(--bg-card);
	border-radius: 18px;
	padding: 36px;
	margin-bottom: 32px;
	border: 1px solid rgba(0, 0, 0, 0.02);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.015);
}
.plans-main .ui-card:last-child {
	margin-bottom: 0;
}

/* カード見出し（カラーバッジ連動） */
.plans-main .card-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 24px;
	color: var(--text-main);
	display: flex;
	align-items: center;
}
.plans-main .card-title::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 15px;
	background: var(--theme-color);
	margin-right: 12px;
	border-radius: 2px;
	transition: var(--transition);
}

.plans-main .lead-paragraph {
	font-size: 15px;
	color: #1d1d1f;
	line-height: 1.85;
	margin: 0;
}

/* 特徴リスト */
.plans-main .feature-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.plans-main .feature-item {
	padding: 24px 0;
	border-bottom: 1px solid #f2f2f7;
}
.plans-main .feature-item:first-child { padding-top: 0; }
.plans-main .feature-item:last-child { padding-bottom: 0; border-bottom: 0; }

.plans-main .feature-item h4 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-main);
}
.plans-main .feature-item p {
	margin: 0;
	font-size: 13.5px;
	color: var(--text-sub);
	line-height: 1.75;
}

/* 目的・対象品インフォカード */
.plans-main .meta-card {
	background: var(--meta-bg);
	border: 1px solid rgba(0, 0, 0, 0.01);
	transition: var(--transition);
}
.plans-main .meta-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.plans-main .meta-list li {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.plans-main .meta-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.plans-main .meta-label {
	font-size: 11px;
	color: var(--theme-color);
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
	letter-spacing: 0.05em;
	filter: brightness(0.85);
	transition: var(--transition);
}
.plans-main .meta-value {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-main);
	line-height: 1.6;
}

/* タイムラインUI */
.plans-main .timeline {
	position: relative;
	padding-left: 26px;
}
.plans-main .timeline::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: var(--border);
}
.plans-main .timeline-step {
	position: relative;
	margin-bottom: 28px;
}
.plans-main .timeline-step:last-child {
	margin-bottom: 0;
}
.plans-main .timeline-dot {
	position: absolute;
	left: -26px;
	top: 6px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ffffff;
	border: 2px solid var(--theme-color);
	box-shadow: 0 0 0 3px #ffffff;
	transition: var(--transition);
}
.plans-main .timeline-title {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 4px;
	color: var(--text-main);
}
.plans-main .timeline-desc {
	margin: 0;
	font-size: 13px;
	color: var(--text-sub);
	line-height: 1.7;
}

/* エクスプレス専用トップバナー */
.plans-main .express-top-banner {
	grid-column: 1 / -1;
	margin-bottom: 8px;
}
.plans-main .express-banner-card {
	background: #ffffff;
	border-left: 4px solid var(--color-express);
	border-radius: 12px;
	padding: 24px 32px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.plans-main .express-banner-card h4 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: var(--text-main);
}
.plans-main .express-banner-card p {
	margin: 0;
	font-size: 13.5px;
	color: var(--text-sub);
}
.plans-main .express-badge-ui {
	background: var(--color-express);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
	letter-spacing: 0.04em;
}

/* 注意事項（下部エリア） */
.plans-main .bottom-info-area {
	grid-column: 1 / -1;
	margin-top: 8px;
}
.plans-main .caution-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 48px;
}
.plans-main .caution-item h5 {
	margin: 0 0 10px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--text-main);
}
.plans-main .caution-item p {
	margin: 0;
	font-size: 13px;
	color: var(--text-sub);
	line-height: 1.75;
}

/* 警告ボックス（リホルダー用） */
.plans-main .warning-box {
	background: #fffbfa;
	border: 1px solid rgba(201, 59, 50, 0.12);
	border-radius: 14px;
	padding: 32px;
	grid-column: 1 / -1;
	margin-top: 36px;
}
.plans-main .warning-box h5 {
	margin: 0 0 10px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--color-express);
}
.plans-main .warning-box p {
	margin: 0 0 16px;
	font-size: 13px;
	color: #48484a;
}
.plans-main .warning-box ul {
	margin: 0;
	padding-left: 20px;
	font-size: 13px;
	color: #48484a;
	list-style-type: disc;
}
.plans-main .warning-box li {
	margin-bottom: 8px;
}
.plans-main .warning-box li:last-child {
	margin-bottom: 0;
}

/* アクションボタン（共通URL対応） */
.plans-main .action-area {
	margin-top: 28px;
}
.plans-main .btn-action {
	display: block;
	width: 100%;
	padding: 15px 0;
	background: var(--text-main);
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 10px;
	transition: var(--transition);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.plans-main .btn-action:hover {
	background: var(--theme-color);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* フッター */
.plans-body .site-footer {
	text-align: center;
	padding: 56px 0 80px;
	font-size: 12px;
	color: var(--text-sub);
	border-top: 1px solid var(--border);
	background: #ffffff;
	margin-top: 96px;

}
.plans-body .site-footer p{
	margin:revert;
	text-align: center;
}


/* 📱 タブレット向けレスポンス調整 */
@media (max-width: 920px) {
	.plans-main .service-grid-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.plans-main .caution-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}

/* 📱 SP版での表示領域調整 */
@media (max-width: 600px) {
	.plans-main.container, .hero-header .container, .site-footer .container{
		padding: 0 20px;
	}
	.plans-body .hero-header { 
		padding: 60px 0 36px; 
	}
	.plans-body .hero-header h1 { 
		font-size: 26px; 
	}
	
	.plans-main .segment-wrapper {
		margin-bottom: 40px;
		padding: 2px 0;
	}
	.plans-main .segment-wrapper::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 28px;
		height: 100%;
		background: linear-gradient(to right, rgba(245,245,247,0), rgba(245,245,247,1));
		pointer-events: none;
	}
	
	.plans-main .segment-control {
		width: auto;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		display: inline-flex;
		max-width: 100%;
		scrollbar-width: none;
	}
	.plans-main .segment-control::-webkit-scrollbar {
		display: none;
	}
	
	.plans-main .segment-label {
		padding: 10px 22px;
		font-size: 13px;
		flex: none;
	}
	
	.plans-main .ui-card { 
		padding: 28px; 
		border-radius: 16px;
	}
	
	.plans-main .express-banner-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px;
	}
	.plans-main .express-badge-ui {
		margin-top: 4px;
	}
	.plans-main .warning-box {
		padding: 24px;
	}
}
