/* =============================================================================
   トップページ専用スタイル — WF-v2 clecom-style 完全再現
   ============================================================================= */

/* =============================================================================
   Section 1: ヒーロー（フルワイド・スラッシュ背景）
   ============================================================================= */
.hero-section {
	position: relative;
	width: 100%;
	min-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #0D1117;
}

/* スラッシュ背景レイヤー群 */
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}
/* スラッシュ1: 大きなメインブルー帯（左下→右上） */
.hero-overlay::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -10%;
	width: 70%;
	height: 140%;
	background: linear-gradient(160deg, #2B6CB0 0%, #1E5A9E 100%);
	opacity: 0.14;
	transform: skewX(-18deg);
}
/* スラッシュ2: 中サイズブルー帯 */
.hero-overlay::after {
	content: '';
	position: absolute;
	top: -30%;
	left: 15%;
	width: 50%;
	height: 160%;
	background: linear-gradient(170deg, #1E5A9E 0%, #2B6CB0 100%);
	opacity: 0.18;
	transform: skewX(-22deg);
}
/* スラッシュ3〜5: 追加レイヤー用の内部要素 */
.hero-slash-layers {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
/* スラッシュ3: 右寄りの細いアクセント帯 */
.hero-slash-layers::before {
	content: '';
	position: absolute;
	top: -25%;
	left: 45%;
	width: 35%;
	height: 150%;
	background: linear-gradient(155deg, #4A90D9 0%, #2B6CB0 100%);
	opacity: 0.10;
	transform: skewX(-15deg);
}
/* スラッシュ4: ティール差し色（1本だけ） */
.hero-slash-layers::after {
	content: '';
	position: absolute;
	top: -15%;
	left: 55%;
	width: 25%;
	height: 130%;
	background: linear-gradient(165deg, #0D9488 0%, #0F766E 100%);
	opacity: 0.08;
	transform: skewX(-20deg);
}
/* スラッシュ5: 最右の深いネイビー帯（奥行き感） */
.hero-slash-layer-5 {
	position: absolute;
	top: -10%;
	left: 65%;
	width: 45%;
	height: 120%;
	background: linear-gradient(150deg, #1A365D 0%, #0D1117 100%);
	opacity: 0.22;
	transform: skewX(-12deg);
	z-index: 1;
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 2;
	display: block;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding-x);
	width: 100%;
}
.hero-content {
	max-width: 600px;
}
.hero-eyebrow {
	font-family: var(--font-family-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	color: var(--color-primary);
	margin-bottom: 28px;
}
.hero-title {
	font-family: var(--font-family-base);
	font-size: 52px;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.3;
	margin-bottom: 28px;
}
.hero-sub {
	font-family: var(--font-family-base);
	font-size: 18px;
	color: var(--color-text-on-dark, #A0A8B8);
	line-height: 1.7;
	margin-bottom: 28px;
}
.hero-btns {
	display: flex;
	gap: 16px;
}

/* 実績バッジ */
.hero-badges {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
	flex-wrap: wrap;
}
.hero-badges-label {
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.1em;
	width: 100%;
	margin-bottom: 8px;
}
.hero-badges-row {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.hero-badge {
	font-family: var(--font-family-heading);
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.5px;
}
.hero-badge-sep {
	color: rgba(255, 255, 255, 0.25);
	font-size: 12px;
}

/* ヒーロー右側ビジュアル（人物写真） */
.hero-visual {
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
}
.hero-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0.75;
	mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,1) 45%, rgba(0,0,0,0.9) 100%);
	-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,1) 45%, rgba(0,0,0,0.9) 100%);
	filter: saturate(0.75) brightness(0.9);
}

/* =============================================================================
   Section 2: ニュース
   ============================================================================= */
.news-section {
	background-color: var(--color-bg-white);
}
.news-inner {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding-x);
	display: flex;
	align-items: center;
	gap: 40px;
	height: 120px;
}
.news-label {
	flex-shrink: 0;
	font-family: var(--font-family-heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--color-white);
	background-color: var(--color-primary);
	padding: 8px 20px;
}
.news-items {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.news-item {
	display: flex;
	align-items: center;
	gap: 24px;
	color: var(--color-heading);
	font-size: 14px;
}
.news-item:hover {
	color: var(--color-primary);
}
.news-date {
	font-family: var(--font-family-heading);
	font-size: 13px;
	color: var(--color-sub);
	flex-shrink: 0;
}
.news-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-more {
	flex-shrink: 0;
	font-family: var(--font-family-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--color-primary);
}
.news-more:hover {
	color: var(--color-primary-hover);
}

/* =============================================================================
   Section 3: WORKS SHOWCASE — AWS風フルワイドスライダー（白背景）
   ============================================================================= */
.works-showcase {
	overflow: hidden;
	background-color: var(--color-bg-white);
}

/* 上部ヘッダー */
.works-showcase-header {
	padding: 60px 0 16px;
}
.works-showcase-header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}
.works-showcase-title {
	font-family: var(--font-family-base);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.3;
	margin-bottom: 12px;
}
.works-showcase-sub {
	font-size: 15px;
	color: var(--color-body);
	line-height: 1.7;
}
.works-showcase-link {
	flex-shrink: 0;
	font-family: var(--font-family-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary);
	white-space: nowrap;
	margin-top: 8px;
}
.works-showcase-link:hover {
	color: var(--color-primary-hover);
}

/* スライダー本体 — AWS風 transform 方式 */
.works-slider-wrap {
	position: relative;
	overflow: hidden;
	padding: 0 0 60px;
}
/* スライドトラック: translateXでJS制御 */
.works-slider {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* 個別スライド */
.works-slide {
	flex: 0 0 45%;
	margin: 0 1%;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(0.88);
	transform-origin: center center;
}
.works-slide.is-active {
	transform: scale(1);
}
.works-slide-img {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 8;
	transition: transform 0.5s ease;
}
.works-slide.is-active:hover .works-slide-img {
	transform: scale(1.03);
}
.works-slide-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slide-placeholder-icon {
	width: 80px;
	height: 80px;
}
/* アイキャッチ画像がある場合 */
.works-slide-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* カテゴリラベル（左上） */
.works-slide-category {
	position: absolute;
	top: 20px;
	left: 20px;
	font-family: var(--font-family-heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(0, 0, 0, 0.35);
	padding: 5px 14px;
	border-radius: 4px;
	backdrop-filter: blur(6px);
}

/* 下部オーバーレイ */
.works-slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 80px 32px 28px;
	background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.75) 100%);
}
.works-slide-title {
	font-family: var(--font-family-base);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 8px;
}
.works-slide-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
	margin-bottom: 12px;
	max-width: 480px;
}
.works-slide-meta {
	display: flex;
	align-items: center;
	gap: 20px;
}
.works-slide-time {
	font-family: var(--font-family-heading);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-accent);
}
.works-slide-arrow {
	font-family: var(--font-family-heading);
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}
.works-slide:hover .works-slide-arrow {
	color: #fff;
}

/* ナビゲーション（下部中央） */
.works-slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 28px;
}
.works-slider-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid var(--color-border);
	background: var(--color-bg-white);
	color: var(--color-heading);
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.works-slider-btn:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}
.works-slider-counter {
	font-family: var(--font-family-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-sub);
	letter-spacing: 2px;
	min-width: 50px;
	text-align: center;
}

/* =============================================================================
   Section 4: SERVICE（4カラム番号付きカード）
   ============================================================================= */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.service-card {
	display: flex;
	flex-direction: column;
	background-color: var(--color-bg-white);
	padding: 32px 28px;
	border: 1px solid var(--color-border);
	color: var(--color-body);
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.service-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
	color: var(--color-body);
}
/* サービスアイコン円（パターンA: 大きめグラデーション） */
.service-icon-circle {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover .service-icon-circle {
	transform: scale(1.08);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.service-icon-circle svg {
	width: 42px;
	height: 42px;
}
.service-icon-circle--blue {
	background: linear-gradient(135deg, #2B6CB0, #1E5A9E);
}
.service-icon-circle--orange {
	background: linear-gradient(135deg, #E8956D, #D4784E);
}
.service-icon-circle--teal {
	background: linear-gradient(135deg, #0D9488, #0F766E);
}
.service-icon-circle--purple {
	background: linear-gradient(135deg, #7C3AED, #6D28D9);
}
.service-num {
	font-family: var(--font-family-heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--color-primary);
	margin-bottom: 20px;
}
.service-card-title {
	font-family: var(--font-family-base);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.4;
	margin-bottom: 20px;
}
.service-card-desc {
	font-size: 13px;
	color: var(--color-sub);
	line-height: 1.7;
	flex: 1;
	margin-bottom: 20px;
}
.service-card-link {
	font-family: var(--font-family-heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--color-primary);
}

/* （旧Section 5: WORKSカードはshowcaseスライダーに統合） */

/* =============================================================================
   Section 6: FEATURE（3カラム番号付き + アイコン）
   ============================================================================= */
.feature-section--bg {
	background-image: url('../images/feature-bg-pattern.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.feature-card {
	text-align: center;
	padding: 40px 24px;
}
/* FEATUREアイコン円（パターンA統一） */
.feature-icon-circle {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover .feature-icon-circle {
	transform: scale(1.08);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.feature-icon-circle svg {
	width: 38px;
	height: 38px;
}
.feature-icon-circle--blue {
	background: linear-gradient(135deg, #2B6CB0, #3B82F6);
}
.feature-icon-circle--orange {
	background: linear-gradient(135deg, #E8956D, #F59E0B);
}
.feature-icon-circle--teal {
	background: linear-gradient(135deg, #0D9488, #14B8A6);
}
.feature-card-num {
	display: block;
	font-family: var(--font-family-heading);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 16px;
}
.feature-card-num--blue {
	color: rgba(43, 108, 176, 0.2);
}
.feature-card-num--orange {
	color: rgba(232, 149, 109, 0.2);
}
.feature-card-num--teal {
	color: rgba(13, 148, 136, 0.2);
}
.feature-card-title {
	font-family: var(--font-family-base);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-heading);
	margin-bottom: 16px;
}
.feature-card-desc {
	font-size: 13px;
	color: var(--color-sub);
	line-height: 1.7;
}

/* =============================================================================
   Section 7: TEMPLATE（2カラム: テキスト左 + カードリスト右）
   ============================================================================= */
.template-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.template-eyebrow {
	display: block;
	font-family: var(--font-family-heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	color: var(--color-primary);
	margin-bottom: 16px;
}
.template-title {
	font-family: var(--font-family-base);
	font-size: 32px;
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.4;
	margin-bottom: 24px;
}
.template-desc {
	font-size: 15px;
	color: var(--color-body);
	line-height: 1.8;
	margin-bottom: 24px;
}
.template-right {
	background-color: #F0F4F8;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 320px;
	justify-content: center;
}
.template-mockup {
	text-align: center;
	margin-bottom: 8px;
}
.template-mockup-img {
	max-width: 280px;
	height: auto;
	opacity: 0.9;
}
.template-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: var(--color-bg-white);
	padding: 16px 20px;
}
.template-item--highlight {
	background-color: var(--color-primary);
}
.template-item--highlight .template-item-name {
	color: var(--color-white);
	font-weight: 600;
}
.template-item-name {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-heading);
}
.template-item-tag {
	font-family: var(--font-family-heading);
	font-size: 11px;
	font-weight: 600;
	flex-shrink: 0;
}
.template-item-tag--free {
	color: #059669;
}
.template-item-tag--price {
	color: var(--color-accent);
}
.template-item-tag--soon {
	color: #718096;
}

/* =============================================================================
   Section 8: TRAINING（相談起点型 — 3カード + CTA）
   ============================================================================= */
.section-heading-sub {
	font-size: 14px;
	color: var(--color-sub);
	line-height: 1.8;
	margin-top: 12px;
}
.training-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.training-card {
	background-color: var(--color-bg-white);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 32px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: box-shadow 0.2s, transform 0.2s;
}
.training-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.training-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #DBEAFE;
	border-radius: 14px;
	color: var(--color-primary);
	margin-bottom: 4px;
}
.training-card-title {
	font-family: var(--font-family-base);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-heading);
	line-height: 1.4;
}
.training-card-desc {
	font-size: 13px;
	color: var(--color-sub);
	line-height: 1.7;
	flex: 1;
}
.training-section-cta {
	text-align: center;
	margin-top: 40px;
}

/* =============================================================================
   Section 9: BLOG（ヘッダー左右分割 + 3カラムカード）
   ============================================================================= */
.blog-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 60px;
}
.blog-header-left {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.blog-header-left .en-label {
	font-family: var(--font-family-heading);
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--color-primary);
	line-height: 1.2;
}
.blog-header-left h2 {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-sub);
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.blog-card-link {
	display: block;
	color: var(--color-body);
}
.blog-card-link:hover {
	color: var(--color-body);
}
.blog-card-thumb {
	height: 180px;
	overflow: hidden;
	background-color: #E2E8F0;
}
.blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-thumb img {
	transform: scale(1.03);
}
.blog-card-thumb--placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
}
.blog-card-body {
	padding: 16px 0 0;
}
.blog-card-category {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 6px;
}
.blog-card-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card-date {
	display: block;
	font-family: var(--font-family-heading);
	font-size: 12px;
	color: var(--color-sub);
}

/* =============================================================================
   Section 10: CTA（ダーク背景 #1A1A2E）
   ============================================================================= */
.cta-section {
	background-color: var(--color-bg-cta);
	padding: 64px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cta-inner {
	text-align: center;
}
.cta-watermark {
	display: block;
	font-family: var(--font-family-heading);
	font-size: 80px;
	font-weight: 700;
	letter-spacing: 4px;
	color: rgba(43, 108, 176, 0.4);
	line-height: 1;
	margin-bottom: 24px;
}
.cta-title {
	font-family: var(--font-family-base);
	font-size: 28px;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 24px;
}
.cta-sub {
	font-size: 15px;
	color: var(--color-text-on-dark, #A0A8B8);
	line-height: 1.7;
	margin-bottom: 24px;
}
.cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
}
.cta-secondary {
	margin-top: 24px;
	text-align: center;
}
.cta-secondary-link {
	font-family: var(--font-family-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.55);
	transition: color var(--transition-base);
}
.cta-secondary-link:hover {
	color: var(--color-white);
}

/* =============================================================================
   レスポンシブ
   ============================================================================= */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 42px;
	}
	.hero-visual {
		width: 50%;
	}
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.works-slide {
		flex: 0 0 55%;
	}
	.works-showcase-title {
		font-size: 28px;
	}
	.template-layout {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	/* ヒーロー */
	.hero-section {
		min-height: auto;
		padding: 60px 0;
	}
	.hero-inner {
		text-align: center;
	}
	.hero-content {
		max-width: 100%;
	}
	.hero-title {
		font-size: 32px;
	}
	.hero-sub {
		font-size: 15px;
	}
	.hero-btns {
		flex-direction: column;
		align-items: center;
	}
	.hero-badges {
		justify-content: center;
	}
	.hero-visual {
		display: none;
	}

	/* ニュース */
	.news-inner {
		flex-direction: column;
		height: auto;
		padding: 20px var(--container-padding-x);
		gap: 16px;
		align-items: flex-start;
	}
	.news-more {
		align-self: flex-end;
	}

	/* Works Showcase */
	.works-showcase-header-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.works-showcase-title {
		font-size: 24px;
	}
	.works-slide {
		flex: 0 0 75%;
	}
	.works-slide-title {
		font-size: 18px;
	}

	/* Service */
	.service-grid {
		grid-template-columns: 1fr 1fr;
	}

	/* Feature */
	.feature-grid {
		grid-template-columns: 1fr;
	}

	/* Template */
	.template-layout {
		grid-template-columns: 1fr;
	}
	.template-title {
		font-size: 24px;
	}

	/* Training */
	.training-grid {
		grid-template-columns: 1fr;
	}

	/* Blog */
	.blog-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* CTA */
	.cta-section {
		padding: 48px 0;
	}
	.cta-watermark {
		font-size: 40px;
	}
	.cta-title {
		font-size: 22px;
	}
	.cta-btns {
		flex-direction: column;
	}

	/* セクション見出し */
	.blog-header-left .en-label {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.service-grid {
		grid-template-columns: 1fr;
	}
	.hero-title {
		font-size: 28px;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.service-card {
		padding: 24px 20px;
	}
}

/* ── アクセシビリティ: focus-visible ──── */
.news-item:focus-visible,
.news-more:focus-visible,
.works-showcase-link:focus-visible,
.works-slide-arrow:focus-visible,
.section-link:focus-visible,
.cta-secondary-link:focus-visible,
.blog-card-link:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
	border-radius: 2px;
}
.works-slider-btn:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
}
.service-card:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 4px;
	box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.15);
}
