@charset "utf-8";
/* ==========================================================================
   page-technology.php 専用スタイル
   - レイアウトは flexbox のみ（grid / float 不使用）
   - フォントサイズは全て px 指定
   - !important は不使用
   - 全セレクタを .p-tech 配下に限定してテーマ共通CSS(page.css等)との衝突を回避
   ========================================================================== */

/* 'Figtree' / 'Noto Sans JP' 本体は functions.php で Google Fonts CDN から読み込み（このCSSより先に読み込まれる） */

/* ============ #wrapper / #header 幅の上書き（このページ限定の例外） ============
   共通 style.css の #wrapper・#header は 768px〜1023px に対応するメディアクエリが無く
   min-width:1240px のまま残り、767px以下でも #wrapper は width:480px、
   #header は left:50%+margin-left:-240px+width:480px の固定値になる。
   この固定幅により、1240px未満（768〜1023px）・480px未満のどちらの端末幅でも
   ページ全体がその固定幅に収まるようブラウザに縮小表示(ズームアウト)され、
   position:fixed の背景動画（100vw/100dvh指定）も一緒に縮んで画面いっぱいにならない。
   #wrapper だけでなく #header も同時に可変幅へ上書きしないとズームアウトは解消しないため、
   両方をセットで body#technology 配下のみに上書きする。
   （style.css 自体は共通ファイルのため変更しない。他ページの表示に影響なし） */
@media (max-width: 1239px) {
	body#technology #wrapper {
		min-width: 0;
		width: 100%;
	}
	body#technology #header {
		left: 0;
		margin-left: 0;
		width: 100%;
		min-width: 0;
		/* 子要素 #header-content は transform:scale で見た目だけ縮小するため、
		   レイアウト上の実サイズ(480px)がはみ出さないよう確実に切り取る */
		overflow: hidden;
	}
}

/* ============ #header-content の見た目を他ページと揃える ============
   上の上書きで #header はズームなしの等倍(1:1)表示になったため、中身(ロゴ・ナビ)は
   元の480px設計そのままのサイズで表示され、他ページ（480pxをズームアウトして画面に
   収めている）より一回り大きく見えてしまう。
   #header-content（ロゴ・ナビをまとめている内側の要素）を元の480px幅のまま維持しつつ、
   他ページと同じ縮小率（画面幅 ÷ 480）で transform:scale することで、
   ズームアウトと同じ見た目を再現する。#header自体（背景の帯）は100%幅のままなので
   ズームは発生せず、position:fixed の背景動画には影響しない。 */
/* transform/height の実際の数値計算は、一部の実機ブラウザ(WebKit系)で
   calc(100vw / 480px) のような「長さ÷長さ」の計算が正しく評価されず、
   transform 宣言ごと無効(none)になる不具合が確認されたため、
   page-technology.js 側でJavaScriptにより計算・付与する(updateHeaderScale)。
   ここでは基準サイズとtransform-originだけを指定する。 */
@media (max-width: 767px) {
	body#technology #header-content {
		width: 480px;
		transform-origin: top left;
	}
}

.p-tech {
	--tech-orange:#F37321;
	--tech-black: #333333;
	--tech-gray-bg: #F5F5F5;
	--tech-dark-muted: #ffffff;
	--tech-pink-bg: #F6F0EC;

	color: var(--tech-black);
	font-family: 'Figtree', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	margin-bottom: -80px;
}

.p-tech,
.p-tech *,
.p-tech *::before,
.p-tech *::after {
	box-sizing: border-box;
}

.p-tech a {
	color: inherit;
	text-decoration: none;
	color: var(--tech-orange);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.56px;
}
.p-tech a:hover {
	opacity: 1;
}

.p-tech img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* :where() は詳細度0のため、各コンポーネントの margin 指定を上書きしない */
:where(.p-tech ul) {
	list-style: none;
	margin: 0;
	padding: 0;
}

:where(.p-tech p, .p-tech h1, .p-tech h2) {
	margin: 0;
}

:where(.p-tech button) {
	font: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

/* ============ 共通パーツ ============ */

.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.p-tech-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}
.p-tech-container_gn {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
}

.p-tech-eyebrow {
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0.6px;
	color: var(--tech-orange);
	margin-top: 8px;
}

.p-tech-heading {
	font-size: 40px;
	font-weight: 700;
	line-height: 60px;
	color: var(--tech-black);
	letter-spacing: 1.6px;
}
.p-tech-lead-text {
	margin-top: 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 25.9px;
	letter-spacing: 0.56px;
	color: var(--tech-black);
}

/* 画像プレースホルダー（実素材は差し替え予定） */
.p-tech-media {
	display: block;
	background-color: var(--tech-dark-muted);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.p-tech-arrow::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	vertical-align: 1px;
}

.p-tech-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 52px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.56px;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.p-tech-btn--outline {
	border: 2px solid var(--tech-orange);
	color: var(--tech-orange);
	background-color: transparent;
}

.p-tech-btn--outline:hover {
	background-color: var(--tech-orange);
	color: var(--tech-dark-muted);
}


@media (max-width: 767px) {
	.p-tech-container {
		padding: 0 20px;
	}
	.p-tech-eyebrow {
		font-size: 15px;
	}
	.p-tech-heading {
		font-size: 32px;
		line-height: 39.6px;
		letter-spacing: 1.28px;
	}
	.p-tech-btn{
		padding: 14px 52px;
		margin: 0 auto;
	}
	.p-tech-container_gn {
		padding: 0 20px;
	}
}

/* ============ フェードイン ============ */

.p-tech-fadein {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.p-tech-fadein.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.p-tech-fadein--d1 {
	transition-delay: 0.1s;
}

.p-tech-fadein--d2 {
	transition-delay: 0.2s;
}

.p-tech-fadein--d3 {
	transition-delay: 0.3s;
}

.p-tech-news__item.p-tech-fadein:nth-child(1) { transition-delay: 0s; }
.p-tech-news__item.p-tech-fadein:nth-child(2) { transition-delay: 0.15s; }
.p-tech-news__item.p-tech-fadein:nth-child(3) { transition-delay: 0.3s; }
.p-tech-news__item.p-tech-fadein:nth-child(4) { transition-delay: 0.45s; }
.p-tech-news__item.p-tech-fadein:nth-child(5) { transition-delay: 0.6s; }

.p-tech-stats__item.p-tech-fadein:nth-child(1) { transition-delay: 0s; }
.p-tech-stats__item.p-tech-fadein:nth-child(2) { transition-delay: 0.15s; }
.p-tech-stats__item.p-tech-fadein:nth-child(3) { transition-delay: 0.3s; }
.p-tech-stats__item.p-tech-fadein:nth-child(4) { transition-delay: 0.45s; }

.p-tech-cards__item.p-tech-fadein:nth-child(1) { transition-delay: 0s; }
.p-tech-cards__item.p-tech-fadein:nth-child(2) { transition-delay: 0.1s; }
.p-tech-cards__item.p-tech-fadein:nth-child(3) { transition-delay: 0.2s; }
.p-tech-cards__item.p-tech-fadein:nth-child(4) { transition-delay: 0.3s; }
.p-tech-cards__item.p-tech-fadein:nth-child(5) { transition-delay: 0.4s; }
.p-tech-cards__item.p-tech-fadein:nth-child(6) { transition-delay: 0.5s; }

.p-tech-regions__item.p-tech-fadein:nth-child(1) { transition-delay: 0s; }
.p-tech-regions__item.p-tech-fadein:nth-child(2) { transition-delay: 0.1s; }
.p-tech-regions__item.p-tech-fadein:nth-child(3) { transition-delay: 0.2s; }
.p-tech-regions__item.p-tech-fadein:nth-child(4) { transition-delay: 0.3s; }
.p-tech-regions__item.p-tech-fadein:nth-child(5) { transition-delay: 0.4s; }

.p-tech-rd__card.p-tech-fadein:nth-child(1) { transition-delay: 0s; }
.p-tech-rd__card.p-tech-fadein:nth-child(2) { transition-delay: 0.15s; }
.p-tech-rd__card.p-tech-fadein:nth-child(3) { transition-delay: 0.3s; }
.p-tech-rd__card.p-tech-fadein:nth-child(4) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
	.p-tech-fadein {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.p-tech-network__pin.is-active::after {
		animation: none;
	}
}

/* ============ FV〜Global R&D Strength：パララックス ============ */

/* .p-tech-parallax__bg は JS(initParallax)が position:fixed / absolute を
   切り替えて制御する。.p-tech-parallax の範囲内をスクロールしている間は
   position:fixed で画面に張り付き、範囲を通過したら position:absolute で
   一番下の位置に固定して通常のスクロールに戻す。
   .p-tech-parallax__content は通常のドキュメントフローのままで、
   各セクション自身が持つ背景色がそのまま動画を覆っていく。 */
.p-tech-parallax {
	position: relative;
}

.p-tech-parallax__bg {
	position: fixed;
	top: 0;
	left: 0;
	/* width:100% だと #wrapper（共通CSSで min-width:1240px / 767px以下は480px固定）の
	   影響で幅がずれるため、height と同じくビューポート基準の vw を使い #wrapper に依存しない形にする */
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	z-index: 0;
}

.p-tech-parallax__content {
	position: relative;
	z-index: 1;
}

/* ============ FV（動画） ============ */

.p-tech-hero {
	position: relative;
	display: flex;
	height: 100vh;
	height: 100dvh;
}

.p-tech-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

.p-tech-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 14, 24, 0.75) 0%, rgba(10, 14, 24, 0.25) 55%, rgba(10, 14, 24, 0.1) 100%);
}

/* FVの背景動画に重ねるフィルター（動画より上、テキストより下） */
.p-tech-hero__filter {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #333333 0% 0% no-repeat padding-box;
	opacity: 0.1;
	pointer-events: none;
}

.p-tech-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	height: 100%;
	padding-top: 96px;
	padding-bottom: 100px;
	max-width: 1800px;
	/* min-width: 1280px; */
	width: 93.7%;
}

.p-tech-hero__text {
	display: flex;
	flex-direction: column;
}

.p-tech-hero__title {
	font-size: clamp(48px, 100vw * 48 / 1366, 60px);
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.5;
	color: var(--tech-dark-muted);
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
	.p-tech-hero__title {
		font-size: 24px;
	}
}

.p-tech-hero__lead {
	margin-top: 40px;
	font-size: 16px;
	letter-spacing: 0.64px;
	line-height: 24px;
	color: var(--tech-dark-muted);
	font-weight: 500;
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.p-tech-hero__news {
	position: relative;
	flex-shrink: 0;
	width: clamp(284px, 100vw * 284 / 1366, 450px);
	height: clamp(162px, 100vw * 162 / 1366, 254px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

/* 5件の記事を重ねて配置し、is-active のみ opacity:1 でフェード切り替え */
.p-tech-hero__news-slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	transition: opacity 1s ease;
	pointer-events: none;
}

.p-tech-hero__news-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.p-tech-hero__news-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid var(--tech-dark-muted);
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.p-tech-hero__news-slide:hover .p-tech-hero__news-frame {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.p-tech-hero__news-badge {
	position: absolute;
	z-index: 2;
	top: -10px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	padding: clamp(5px, 100vw * 5 / 1366, 8px) clamp(18px, 100vw * 18 / 1366, 28px);
	border-radius: 999px;
	background-color: var(--tech-orange);
	color: var(--tech-dark-muted);
	font-size: clamp(12px, 100vw * 12 / 1366, 19px);
	font-weight: 400;
	letter-spacing: 0.5px;
}

@media (min-width: 1600px) {
	.p-tech-hero__news-badge {
		top: -14px;
	}
}

.p-tech-hero__news-img {
	position: relative;
	width: 100%;
	height: 100%;
}

.p-tech-hero__news-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s ease;
}

.p-tech-hero__news-slide:hover .p-tech-hero__news-overlay {
	background-color: rgba(0, 0, 0, 0.7);
}

.p-tech-hero__news-slide:hover .p-tech-hero__news-title {
	z-index: 0;
}

.p-tech-hero__news-more {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: clamp(10px, 100vw * 10 / 1366, 16px);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	color: var(--tech-dark-muted);
	white-space: nowrap;
}

.p-tech-hero__news-slide:hover .p-tech-hero__news-more {
	opacity: 1;
}

.p-tech-hero__news-more-text {
	font-size: clamp(14px, 100vw * 14 / 1366, 22px);
	font-weight: 700;
	letter-spacing: 0.56px;
}

.p-tech-hero__news-more-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(24px, 100vw * 24 / 1366, 38px);
	height: clamp(24px, 100vw * 24 / 1366, 38px);
	border: 1px solid var(--tech-dark-muted);
	border-radius: 50%;
	line-height: 1;
}

.p-tech-hero__news-more-icon svg {
	width: clamp(11px, 100vw * 11 / 1366, 17px);
	height: clamp(7.5px, 100vw * 7.5 / 1366, 12px);
}

.p-tech-hero__news-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: clamp(14px, 100vw * 14 / 1366, 22px) clamp(20px, 100vw * 20 / 1366, 32px) clamp(14px, 100vw * 14 / 1366, 22px);
	font-size: clamp(12px, 100vw * 12 / 1366, 19px);
	font-weight: 700;
	line-height: clamp(21px, 100vw * 21 / 1366, 33px);
	letter-spacing: clamp(0.56px, 100vw * 0.56 / 1366, 0.89px);
	color: var(--tech-dark-muted);
}

@media (max-width: 767px) {
	.p-tech-hero__inner {
		padding-top: 64px;
		padding-bottom: 40px;
		width: 100%;
	}
	.p-tech-hero__lead {
		margin-top: 20px;
		font-size: 14px;
	}
}

/* ニューススライダーは「詳しく見る」がhoverでしか出てこない作りで、タッチ端末では
   永久に読めない。767px以下だけでなくtablet幅(1024px以下)でも丸ごと非表示にする */
@media (max-width: 1024px) {
	.p-tech-hero__news {
		display: none;
	}
}


/* ============ 最新の取り組み ============ */

.p-tech-news {
	background-color: var(--tech-pink-bg);
	padding: 80px 0;
}

.p-tech-news__list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 40px;
}

.p-tech-news__item {
	flex: 1 1 calc((100% - 48px) / 3);
	min-width: 0;
}

.p-tech-news__item--featured {
	flex: 1 1 calc((100% - 28px) / 2);
}

/* 上2件（featured）の間だけ列gap(24px)に+4pxしてキャプ通り28pxにする */
.p-tech-news__item--featured:first-child {
	margin-right: 4px;
}

.p-tech-news__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.p-tech-news__link:hover {
	/* box-shadow: 0 12px 24px rgba(18, 32, 61, 0.1);
	transform: translateY(-2px); */
}

.p-tech-news__img {
	position: relative;
	aspect-ratio: 16 / 10;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}

/* featured(上2件)だけ画像をやや横長寄りの比率(588:392 = 3:2)にする */
.p-tech-news__item--featured .p-tech-news__img {
	aspect-ratio: 3 / 2;
}

.p-tech-news__img-bg {
	position: absolute;
	inset: 0;
	transition: transform 0.5s ease;
}

.p-tech-news__link:hover .p-tech-news__img-bg {
	transform: scale(1.1);
}

.p-tech-news__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px 0 0;
	flex: 1;
}

.p-tech-news__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.p-tech-news__date {
	font-size: 12px;
	color: var(--tech-black);
	font-weight: 500;
	letter-spacing:0.48px;
}

.p-tech-news__badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 18px;
	border-radius: 999px;
	background-color: var(--tech-orange);
	color: var(--tech-dark-muted);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.48px;
}

.p-tech-news__tag {
	font-size: 12px;
	font-weight: 500;
	letter-spacing:0.48px;
	color: var(--tech-orange);
}

.p-tech-news__title {
	margin-top: 16px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.7;
	color: var(--tech-black);
	flex: 1;
}

.p-tech-news__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	font-size: 14px;
	font-weight: 700;
	color: var(--tech-orange);
}

.p-tech-news__more-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid var(--tech-orange);
	border-radius: 50%;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.p-tech-news__more-icon svg {
	width: 11px;
	height: 7.5px;
}

.p-tech-news__link:hover .p-tech-news__more-icon {
	background-color: var(--tech-orange);
	color: var(--tech-dark-muted);
}

.p-tech-news__empty {
	margin-top: 40px;
	padding: 40px 24px;
	background-color: var(--tech-dark-muted);
	border: 1px solid var(--tech-dark-muted);
	border-radius: 8px;
	font-size: 14px;
	letter-spacing: 0.56px;
	line-height: 1.8;
	color: var(--tech-black);
	text-align: center;
}

.p-tech-news__cta {
	display: flex;
	justify-content: end;
	margin-top: 40px;
}


@media (max-width: 767px) {
	.p-tech-news {
		padding: 50px 0;
	}
	.p-tech-news__list {
		gap: 40px;
		margin-top: 40px;
	}
	.p-tech-news__item {
		flex: 1 1 100%;
	}
	.p-tech-news__item--featured:first-child {
		margin-right: 0;
	}
	.p-tech-news__cta {
		margin-top: 40px;
	}
	.p-tech-news__more-icon {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.p-tech-news__item:nth-child(n + 4) {
		display: none;
	}
	/* SP版で表示される3件は、featured(先頭2件)かどうかに関わらず同じ335:240の
	   比率にする。featured側は詳細度が高いセレクタなので、両方に明示しないと
	   上書きできない */
	.p-tech-news__img,
	.p-tech-news__item--featured .p-tech-news__img {
		aspect-ratio: 335 / 240;
	}
}

/* ============ Global R&D Strength ============ */

.p-tech-rd {
	/* 背景は独自の背景色を持たせず、固定表示中のFV動画がそのまま透けて見えるようにする */
	position: relative;
	padding: 80px 0;
}

/* Global R&D Strengthの背景動画に重ねるフィルター（動画より上、テキスト/カードより下） */
.p-tech-rd__filter {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #333333CC 0% 0% no-repeat padding-box;
	opacity: 1;
	pointer-events: none;
}

.p-tech-rd .p-tech-container {
	position: relative;
	z-index: 1;
}

.p-tech-rd .p-tech-heading {
	color: var(--tech-dark-muted);
}

.p-tech-rd .p-tech-lead-text {
	color: var(--tech-dark-muted);
}

.p-tech-rd__cards {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 71.8%;
	margin-top: 80px;
	margin-left: auto;
	margin-right: 0;
}

.p-tech-rd__card {
	display: block;
}

.p-tech-rd__card-link-wrap {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 262px;
	color: inherit;
}

.p-tech-rd__card-body {
	display: flex;
	flex: 0 0 45.8%;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
	padding: 40px 10px 40px 38px;
	background-color: var(--tech-gray-bg);
	border-radius: 6px 0px 0px 6px;
}

.p-tech-rd__card-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 29px;
	letter-spacing: 0.8px;
	color: var(--tech-black);
}

.p-tech-rd__card-subtitle {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.6px;
	color: var(--tech-black);
}

.p-tech-rd__card-value {
	margin-top: 10px;
	font-size: 48px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 1.92px;
	color: var(--tech-orange);
	text-decoration: underline;
	text-underline-offset: 12px;
	text-decoration-thickness: 1px;
}

.p-tech-rd__card-unit {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 1.28px;
}

.p-tech-rd__card-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.56px;
	color: var(--tech-orange);
}

.p-tech-rd__card-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid var(--tech-orange);
	border-radius: 50%;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.p-tech-rd__card-link-icon svg {
	width: 11px;
	height: 7.5px;
}

.p-tech-rd__card-link-wrap:hover .p-tech-rd__card-link-icon {
	background-color: var(--tech-orange);
	color: var(--tech-dark-muted);
}

.p-tech-rd__card-media {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.p-tech-rd__card-media-bg {
	position: absolute;
	inset: 0;
	transition: transform 0.5s ease;
}

.p-tech-rd__card-link-wrap:hover .p-tech-rd__card-media-bg {
	transform: scale(1.1);
}

@media (max-width: 767px) {
	.p-tech-rd {
		padding: 50px 0;
	}
	.p-tech-rd__cards {
		padding: 0 20px;
		width: 100%;
		margin-top: 36px;
	}
	.p-tech-rd__card-link-wrap {
		flex-direction: column-reverse;
	}
	.p-tech-rd__card-body {
		flex: none;
		padding: 40px 20px;
		gap: 7px;
	}
	.p-tech-rd__card-media {
	}
	.p-tech-rd__card-link-icon {
		width: 24px;
		height: 24px;
	}
	.p-tech-rd__card-link {
		margin-top: 20px;
	}
	.p-tech-rd__card-value {
		margin-top: 14px;
	}
}

@media (max-width: 480px) {
	.p-tech-rd__card-link-wrap {
		max-height: none;
		border-radius: 0 0 8px 8px;
		overflow: hidden;
	}
	.p-tech-rd__card-body {
		border-radius: 0;
	}
	.p-tech-rd__card-media {
		aspect-ratio: 16 / 8;
	}
}


/* ============ 技術・事業領域 ============ */

.p-tech-business {
	background-color: var(--tech-gray-bg);
	padding: 80px 0;
}

.p-tech-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 80px;
}

.p-tech-cards__item {
	position: relative;
	flex: 1 1 calc(33.333% - 16px);
	min-width: 0;
}

.p-tech-cards__link-wrap {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: 8px;
	overflow: hidden;
	color: inherit;
}

.p-tech-cards__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}

.p-tech-cards__link-wrap:hover .p-tech-cards__img {
	transform: scale(1.05);
}

.p-tech-cards__overlay {
	position: absolute;
	inset: 0;
	border-radius: 6px;
	background: linear-gradient(141deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	transition: background 0.3s ease;
}

.p-tech-cards__link-wrap:hover .p-tech-cards__overlay {
	background: transparent linear-gradient(141deg, #00000099 0%, #00000099 100%) 0% 0% no-repeat padding-box;
}

.p-tech-cards__content {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	padding: 28px 40px 40px;
}

.p-tech-cards__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 70px;
	letter-spacing: 1.28px;
	color: var(--tech-dark-muted);
}

.p-tech-cards__subtitle {
	margin-top: -6px;
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	letter-spacing: 0.64px;
	color: var(--tech-dark-muted);
}

.p-tech-cards__link {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0.56px;
	color: var(--tech-dark-muted);
	width: fit-content;
}

.p-tech-cards__link-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
}

.p-tech-cards__link-icon svg {
	width: 100%;
	height: 100%;
	padding-bottom: 2px;
}

.p-tech-cards__desc {
	/* PC: .p-tech-cards__link-wrap の画像に重ねてhover時のみ表示するため、
	   兄弟要素になった .item 内で絶対配置する */
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 40px 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 25.9px;
	letter-spacing: 0.56px;
	color: var(--tech-dark-muted);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.p-tech-cards__link-wrap:hover ~ .p-tech-cards__desc {
	opacity: 1;
}

/* 3列固定だとtablet幅でタイトルが窮屈に折り返す上、詳細説明(.p-tech-cards__desc)が
   hover時のみ表示のため、hoverの無いタッチ端末では読めなくなってしまう。
   767px以下のSP版と全く同じデザイン(1列・常時表示)を、tablet幅(1024px以下)まで
   そのまま広げて適用する。他セクションのSP版(767px基準)には影響しない、
   このカード部分専用のブロックのため、数値をそのまま変更している。 */
@media (max-width: 1024px) {
	.p-tech-business {
		padding: 50px 0;
		margin-bottom: initial;
	}
	.p-tech-cards {
		gap: 40px;
		margin-top: 40px;
	}
	.p-tech-cards__item {
		flex: 1 1 100%;
	}
	.p-tech-cards__desc {
		position: static;
		margin-top: 24px;
		padding: 0;
		color: var(--tech-black);
		opacity: 1;
		pointer-events: auto;
	}
	.p-tech-cards__content {
		padding: 16px 20px;
	}
	/* 1列表示になったことで、元のaspect-ratio(4/5、縦長)のままだと画像が
	   画面幅いっぱい×その1.25倍の高さになり、tablet幅で縦に間延びしてしまう。
	   SP版と同じ横長寄りの比率に揃える(幅は親要素いっぱいの為、指定不要) */
	.p-tech-cards__link-wrap {
		aspect-ratio: 335 / 262;
	}
}

/* ============ Global Network ============ */

.p-tech-network {
	background-color: var(--tech-black);
	background-image: linear-gradient(180deg, rgba(18, 20, 27, 0.6) 0%, rgba(18, 20, 27, 0.35) 45%, rgba(18, 20, 27, 0.15) 100%), url('../images/page/technology/Global_Network_earth_bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0 0;
	color: var(--tech-dark-muted);
}

.p-tech-network .p-tech-heading {
	color: var(--tech-dark-muted);
}

.p-tech-network .p-tech-lead-text {
	color: var(--tech-dark-muted);
}

.p-tech-network__total {
	display: flex;
	align-items: baseline;
	gap: 12px;
	width: fit-content;
	margin: 40px auto 0;
	border-bottom: 1px solid var(--tech-orange);
	justify-content: center;
}

.p-tech-network__number {
	font-size: 70px;
	font-weight: 700;
	line-height: 19px;
	letter-spacing: 2.8px;
	color: var(--tech-orange);
}

/* odometer-theme-default.css の .odometer.odometer-auto-theme（詳細度2）に
   読み込み順で負けないよう、クラスを3つ重ねて詳細度を上げている */
.p-tech-network__number.odometer.odometer-auto-theme {
	font-family: inherit;
	line-height: 1;
}

/* アニメーション終了時、表示中の桁(.odometer-value)は position:absolute になり
   自身のグリフ幅だけに縮んでしまう（"1"のような細い文字だけズレて見える原因）。
   幅を親(桁スペーサーの幅)いっぱいに固定することで、tabular-nums等の
   簡略化された数字グリフを使わずにズレを防ぐ。 */
.p-tech-network__number.odometer .odometer-value {
	width: 100%;
}

/* "8"基準の箱幅に対し中央寄せだと、幅が狭い"1"の左右に余白ができ隣の桁との
   間隔が不揃いに見える。左寄せにして隣接する桁と詰まって見えるようにする。 */
.p-tech-network__number.odometer.odometer-auto-theme .odometer-value {
	text-align: left;
}

.p-tech-network__number-label {
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	letter-spacing: 0.64px;
	color: var(--tech-dark-muted);
}

.p-tech-regions {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

.p-tech-regions__item {
	flex: 1 1 calc(20% - 16px);
	min-width: 0;
	border-radius: 6px;
	transition: background 0.25s ease;
}

.p-tech-regions__btn {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 42px 18px;
	background-color: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 6px;
}

.p-tech-regions__label {
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	letter-spacing: 0.48px;
	color: var(--tech-dark-muted);
}

.p-tech-regions__name {
	display: block;
	margin-top: 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 29px;
	letter-spacing: 0.8px;
	color: var(--tech-dark-muted);
}

.p-tech-regions__value {
	display: block;
	margin-top: 14px;
	font-size: 32px;
	font-weight: 700;
	line-height: 17px;
	letter-spacing: 1.28px;
	color: var(--tech-dark-muted);
	transition: color 0.25s ease;
}

.p-tech-regions__unit {
	margin-left: 6px;
	font-size: 14px;
	font-weight: 400;
	color: var(--tech-dark-muted);
}

.p-tech-regions__item.is-active,
.p-tech-regions__item:hover {
	background: transparent linear-gradient(133deg, #FFFFFF99 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}

.p-tech-regions__item.is-active .p-tech-regions__name,
.p-tech-regions__item:hover .p-tech-regions__name {
	color: var(--tech-orange);
}

.p-tech-regions__item.is-active .p-tech-regions__value,
.p-tech-regions__item:hover .p-tech-regions__value {
	color: var(--tech-orange);
}

.p-tech-regions__item.is-active .p-tech-regions__label,
.p-tech-regions__item:hover .p-tech-regions__label {
	color: var(--tech-orange);
}

.p-tech-regions__item.is-active .p-tech-regions__unit,
.p-tech-regions__item:hover .p-tech-regions__unit {
	color: var(--tech-orange);
}

.p-tech-network__source {
	margin-top: 20px;
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
	letter-spacing: 0.48px;
	color: var(--tech-dark-muted);
}

.p-tech-network__map {
	position: relative;
	margin-top: 48px;
}

.p-tech-network__map-media {
	position: relative;
	width: 62%;
	aspect-ratio: 16 / 9;
	background-size: contain;
	background-position: bottom center;
	background-repeat: no-repeat;
}

/* ピンのサイズは地図(.p-tech-network__map-media)自体は幅%指定(62%/767px以下は100%)で
   連続的に縮む一方、ピンが固定pxのままだと画面幅によって地図とピンの相対位置がズレる。
   ピン本体は地図に対する%、中の点アイコン・光る輪はピン本体に対する%にすることで、
   地図がどんな比率で縮んでも常に同じ相対位置・相対サイズを保つ
   （現在のPC表示：地図620×348.75pxを基準に、32px→5.161%等に換算） */
.p-tech-network__pin {
	position: absolute;
	z-index: 0;
	width: 5.161%;
	height: 14.624%;
	margin: 0 0 0 -2.581%;
	padding: 0;
	/* filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.45)); */
}

.p-tech-network__pin::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 75%;
	height: 78.431%;
	background-image: url('../images/page/technology/point.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.p-tech-network__pin::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 58.824%;
	left: -21.875%;
	width: 125%;
	height: 39.216%;
	border-radius: 50%;
	background-color: var(--tech-orange);
	filter: blur(3px);
	opacity: 0;
}

.p-tech-network__pin.is-active::after {
	animation: p-tech-pin-pulse 1.6s ease-out infinite;
}

@keyframes p-tech-pin-pulse {
	0% {
		transform: scale(0.8);
		opacity: 0.7;
	}
	100% {
		transform: scale(2.4);
		opacity: 0;
	}
}

.p-tech-network__tooltip {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	right: 0;
	top: -2%;
	max-width: 51.3%;
	background-color: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	padding: 40px;
	border-radius: 6px;
	gap: 10px;
}

.p-tech-network__tooltip-eyebrow {
	font-family: 'Figtree', sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	letter-spacing: 0.48px;
	text-align: left;
	color: var(--tech-orange);
}

.p-tech-network__tooltip-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0.8px;
}
.p-tech-network__tooltip-title span {
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0.6px;
}
.p-tech-network__tooltip-title strong {
	font-size: 20px;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0.8px;
	color: var(--tech-orange);
}

.p-tech-network__tooltip-text {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 400;
	line-height: 25.9px;
	letter-spacing: 0.56px;
	color: var(--tech-dark-muted);
}

/* PC(5列)とSP(767px以下・2列)の間にブレークポイントが無く、tablet幅でも無理に
   5列を維持しようとして"MIDDLE EAST & AFRICA"のような長いラベルが窮屈に折り返してしまう。
   中間の1024px以下で3列に切り替え、1カードあたりの横幅を確保する。
   767px以下の指定より前に書き、SP版の2列指定が引き続き優先されるようにする。 */
@media (max-width: 1024px) {
	.p-tech-regions__item {
		flex: 1 1 calc(33.333% - 13.333px);
	}
}

@media (max-width: 767px) {
	.p-tech-network {
		padding: 50px 0;
	}
	.p-tech-network__total {
		margin: 50px auto 0;
		gap: 2px;
	}
	.p-tech-network__number {
		font-size: 70px;
	}
	.p-tech-regions {
		gap: 20px;
	}
	.p-tech-regions__item {
		flex: 1 1 calc(50% - 6px);
	}
	.p-tech-regions__btn {
		padding: 40px 10px 40px 20px;
	}
	.p-tech-network__map {
		margin-top: initial;
	}
	.p-tech-network__tooltip {
		position: static;
		max-width: none;
		margin-top: 40px;
		padding: 40px 20px;
	}
	.p-tech-network__source {
		margin-top: 40px;
}
	.p-tech-network__map-media {
		width: 100%;
	}
	.p-tech-regions__name{
		margin-top: 8px;
	}
	.p-tech-regions__value{
		margin-top: 18px;
	}
}

@media (max-width: 480px) {
	/* カードを1行のまま横スクロールできるようにし、ピン連携でシュルッとスナップさせる */
	.p-tech-regions {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		/* 親 .p-tech-container_gn の右側 padding(20px) を打ち消し、
		   カード行だけ画面右端までぴったり伸ばす */
		margin-right: -20px;
	}
	.p-tech-regions::-webkit-scrollbar {
		display: none;
	}
	.p-tech-regions__item {
		flex: 0 0 52%;
		scroll-snap-align: start;
	}
	/* 最後のカード(中東・アフリカ)は後ろに続くコンテンツが無いため、
	   ブラウザの最大スクロール位置(=右端に吸い付く形)がそのまま
	   「一つ前のカードが左に少し見え、最後のカードが右端に来る」見た目になる。
	   これを意図した挙動として利用しつつ、末尾に固定20px幅のダミー要素を置いて
	   最後のカードの右側だけ画面端から20px空くようにする。
	   （padding-rightだとコンテナのcontent-box幅が狭まり、flex-basis(52%)の
	   基準がずれて全カードのサイズが変わってしまうため、疑似要素の固定幅で対応） */
	.p-tech-regions::after {
		content: "";
		/* margin-leftによるgap打ち消しが理論値通りに効かず、実測で隙間が12pxしか
		   出ていなかったため、不足分(約8px)を幅に上乗せして20pxちょうどに調整 */
		flex: 0 0 20px;
		margin-left: -20px;
	}
	/* %指定だとこの画面幅ではやや小さく見えるため、視認性のためにここだけ固定pxで少し大きくする */
	.p-tech-network__pin::before {
		width: 14px;
		height: 22px;
	}
}

/* ============ hover無効化(タブレット/スマホ) ============ */
/* タッチデバイスにはhover状態がなく、タップ後にhoverが残る「スタックhover」が
   起こりうる。「何列にするか」等のレイアウトはコンテンツ量次第でセクションごとに
   基準が異なって良いが、「タッチデバイスかどうか」はページのどこを触っても同じ話
   なので、hover無効化は全セクション共通で同じ基準(1024px以下)に揃える。 */
@media (max-width: 1024px) {
	.p-tech-btn--outline:hover {
		background-color: transparent;
		color: var(--tech-orange);
	}
	.p-tech-news__img-bg {
		transition: none;
	}
	.p-tech-news__link:hover .p-tech-news__img-bg {
		transform: none;
	}
	.p-tech-news__link:hover .p-tech-news__more-icon {
		background-color: transparent;
		color: var(--tech-orange);
	}
	.p-tech-rd__card-media-bg {
		transition: none;
	}
	.p-tech-rd__card-link-wrap:hover .p-tech-rd__card-media-bg {
		transform: none;
	}
	.p-tech-rd__card-link-wrap:hover .p-tech-rd__card-link-icon {
		background-color: transparent;
		color: var(--tech-orange);
	}
	.p-tech-cards__img {
		transition: none;
	}
	.p-tech-cards__link-wrap:hover .p-tech-cards__img {
		transform: none;
	}
	.p-tech-cards__overlay {
		transition: none;
	}
	.p-tech-cards__link-wrap:hover .p-tech-cards__overlay {
		background: linear-gradient(141deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	}
	.p-tech-regions__item {
		transition: none;
	}
	.p-tech-regions__item:hover:not(.is-active) {
		background: transparent;
	}
	.p-tech-regions__item:hover:not(.is-active) .p-tech-regions__name,
	.p-tech-regions__item:hover:not(.is-active) .p-tech-regions__value,
	.p-tech-regions__item:hover:not(.is-active) .p-tech-regions__label,
	.p-tech-regions__item:hover:not(.is-active) .p-tech-regions__unit {
		color: var(--tech-dark-muted);
	}
}