@charset "UTF-8";
/* ============================================
   AIシステム開発ページ
   design: ALION System v2.dc.html
============================================ */

.sys {
	/* 設計稿は body に background:#fff を持っている。テーマの body には背景指定が無く、
	   背景を持たないセクションはブラウザのキャンバス色が透ける（ダークモードで黒くなる）ので、
	   ページラッパー側で塞ぐ */
	background-color: #fff;
	color: #1A212F;
}

/* page.css の svg{width:100%;height:100%} を打ち消す */
.sys svg {
	width: auto;
	height: auto;
	flex: 0 0 auto;
}

.sys-inner {
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
}

/* ---- 共通パーツ ---- */

.sys-secHead {
	display: block;
}

.sys-secTtl {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	font-size: min(64px, 9vw);
	line-height: 140%;
	letter-spacing: normal;
	font-weight: 500;
}

.sys-badge {
	display: inline-block;
	font-size: 14px;
	padding: 4px 14px;
	border-radius: 100px;
	color: #fff;
	background-color: #005FFF;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: normal;
}

/* 水色→青のグラデーションを文字に乗せる。設計稿では見出しの「AI」・
   サービスの英字ラベル・STEP 表記で同じ指定が繰り返されているので共通化した。
   background-clip:text 非対応時は color の #005FFF にフォールバックする */
.sys-grad {
	background: linear-gradient(135deg, #5ECEE5 0%, #005FFF 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #005FFF;
}

/* ---- Page heading ---- */
/* ヘッダーが position:fixed; top:20px の白カードなので padding-top を厚く取る */
.sysHero {
	padding: 180px 0 70px;
	background: linear-gradient(90deg, #F1F0F1 0%, #D8E5EE 100%);
	overflow: hidden;
}

.sysHero-tagWrap {
	display: flex;
	margin-bottom: 20px;
}

.sysHero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 20px;
	border-radius: 100px;
	border: 1px solid #005FFF;
	background: #fff;
	color: #005FFF;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .05em;
	line-height: 1;
	white-space: nowrap;
}

.sysHero-ttl {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	font-size: min(86px, 9vw);
	line-height: 120%;
	letter-spacing: normal;
	font-weight: 500;
}

.sysHero-sub {
	display: block;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: normal;
	padding-top: 14px;
	font-weight: 600;
}

.sysHero-lead {
	max-width: 680px;
	padding-top: 20px;
	letter-spacing: normal;
}

/* ---- Service List ---- */
.sysService {
	padding-top: 100px;
}

.sysService-lead {
	max-width: 680px;
	padding-top: 24px;
	letter-spacing: normal;
}

/* カードは6枚。auto-fit + minmax(260px) だと 1256px 以上で4列が選ばれて 4+2 に割れるので、
   3×2 で揃うよう列数を固定する */
.sysService-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding-top: 40px;
}

@media screen and (max-width:1024px) {
	.sysService-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.sysService-card {
	padding: 36px 32px 40px;
	border: 1px solid #CFD5D8;
	border-radius: 20px;
	background: linear-gradient(90deg, #F1F0F1 0%, #D8E5EE 100%);
	transition: all .3s;
	min-width: 0;
}

.sysService-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 95, 255, .12);
	border-color: #9FBEDF;
}

.sysService-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 20px;
}

.sysService-icon {
	width: 48px;
	height: 48px;
	border-radius: 100px;
	background: linear-gradient(135deg, #5ECEE5 0%, #005FFF 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 95, 255, .25);
	flex: 0 0 auto;
	line-height: 0;
}

.sysService-label {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: .08em;
	display: inline-block;
}

.sysService-card h3 {
	font-size: 21px;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: normal;
	padding-bottom: 10px;
}

.sysService-card p {
	font-size: 14px;
	line-height: 190%;
	letter-spacing: normal;
}

/* ---- Our Strengths ---- */
/* 巨大な連番を絶対配置しているので、発生源のこのセクションで閉じておく */
.sysStrength {
	padding-top: 100px;
	overflow: hidden;
}

.sysStrength-list {
	padding-top: 60px;
}

.sysStrength-item {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 5%;
	justify-content: space-between;
	margin-bottom: 90px;
}

.sysStrength-item:last-child {
	margin-bottom: 0;
}

.sysStrength-item.reverse {
	flex-direction: row-reverse;
}

.sysStrength-img {
	border-radius: 10px;
	flex: 1 1 340px;
	overflow: hidden;
	align-self: flex-start;
}

.sysStrength-img img {
	width: 100%;
	display: block;
	border-radius: 10px;
}

.sysStrength-txt {
	padding-top: 30px;
	flex: 1 1 380px;
	min-width: 300px;
	position: relative;
}

.sysStrength-num {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	position: absolute;
	font-size: min(160px, 20vw);
	line-height: 100%;
	letter-spacing: normal;
	color: #EDEEF0;
	font-weight: 500;
	top: 0;
	right: 0;
}

/* 連番は背面。見出し・本文は必ず前に出す */
.sysStrength-ttl,
.sysStrength-desc,
.sysStrength-points {
	position: relative;
	z-index: 2;
}

.sysStrength-ttl h3 {
	font-size: min(36px, 5.5vw);
	line-height: 160%;
	letter-spacing: normal;
	font-weight: 600;
}

.sysStrength-desc {
	padding-top: 40px;
	letter-spacing: normal;
}

.sysStrength-points {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #CFD5D8;
	display: grid;
	gap: 12px;
}

.sysStrength-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.sysStrength-points .dot {
	width: 14px;
	height: 14px;
	border-radius: 50px;
	background: linear-gradient(135deg, #5ECEE5 0%, #005FFF 100%);
	flex: 0 0 auto;
	margin-top: 7px;
}

.sysStrength-points .txt {
	font-size: 15px;
	line-height: 180%;
	letter-spacing: normal;
}

/* ---- Tech stack ---- */
/* width:max-content のマーキーが3本走る。横スクロールの発生源なのでここで閉じる */
.sysTech {
	padding-top: 120px;
	overflow: hidden;
}

.sysTech-ttl {
	text-align: center;
	font-size: min(36px, 5.5vw);
	line-height: 160%;
	letter-spacing: normal;
	font-weight: 600;
}

.sysTech-rows {
	padding-top: 30px;
}

.sysTech-row {
	display: flex;
	width: max-content;
	align-items: center;
	padding-bottom: 30px;
}

.sysTech-row:last-child {
	padding-bottom: 0;
}

/* 各行は同じ並びを2回出力しているので -50% でシームレスに繋がる */
.sysTech-row01 {
	animation: sysMqL 45s linear infinite;
}

.sysTech-row02 {
	animation: sysMqL 60s linear infinite;
}

.sysTech-row03 {
	animation: sysMqR 60s linear infinite;
}

@keyframes sysMqL {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes sysMqR {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

.sysTech-item {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-right: 80px;
	flex: 0 0 auto;
}

.sysTech-item img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex: 0 0 auto;
}

.sysTech-item span {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: normal;
	white-space: nowrap;
	color: #1A212F;
}

/* ---- Flow ---- */
.sysFlow {
	margin-top: 80px;
	padding: 150px 0 120px;
	background-color: #1A212F;
}

.sysFlow-inner {
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px 4%;
	justify-content: space-between;
}

.sysFlow-l {
	flex: 1 1 300px;
	min-width: 280px;
}

.sysFlow-ttl {
	color: #fff;
}

.sysFlow-lead {
	color: #fff;
	padding: 30px 0 60px;
	letter-spacing: normal;
}

.sysFlow-btn {
	overflow: hidden;
	z-index: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(90deg, #F1F0F1 0%, #D8E5EE 100%);
	border: 1px solid #1A212F;
	border-radius: 50px;
	width: 200px;
	padding: 20px 30px;
	transition: all .3s;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.sysFlow-btn:hover {
	opacity: .9;
}

.sysFlow-btn .label {
	line-height: 100%;
	letter-spacing: .02em;
	font-size: 16px;
	font-weight: 500;
	color: #1A212F;
	white-space: nowrap;
}

.sysFlow-btn .icon {
	width: 16px;
	height: 16px;
	display: block;
	flex: 0 0 auto;
}

.sysFlow-r {
	flex: 1 1 480px;
	padding: min(60px, 6vw);
	border-radius: 20px;
	background-color: #FFFFFF;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
	min-width: 0;
}

.sysFlow-list {
	padding-left: 48px;
	position: relative;
}

.sysFlow-list li {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #CFD5D8;
}

.sysFlow-list li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

/* ステップの丸。設計稿では li 直下の div だったが、装飾なので疑似要素に置き換えた */
.sysFlow-list li::before {
	content: "";
	position: absolute;
	left: -48px;
	top: 8px;
	width: 18px;
	height: 18px;
	border-radius: 50px;
	background: linear-gradient(135deg, #5ECEE5 0%, #005FFF 100%);
	z-index: 2;
}

/* 丸と丸を繋ぐ縦線。設計稿は ul に1本引いて height:calc(100% - 210px) で
   最後のステップ分を差し引いていたが、この 210px は文章量が変わると破綻する
   （SP では最終ステップの高さが変わる）。各 li から次の li の丸まで引く形にして、
   文章量に関係なく最初の丸から最後の丸までで止まるようにした */
.sysFlow-list li::after {
	content: "";
	position: absolute;
	left: -39px;
	top: 8px;
	width: 1px;
	/* li の border-bottom:1px は height:100%（padding box 基準）に含まれないので足す */
	height: calc(100% + 41px);
	background-color: #CFD5D8;
}

/* ステップ説明文はクラスを持たない <p>。放っておくと body 継承の 16px / line-height:2 / 0.1em になり、
   同じ性格の .sysService-card p（14px / 190% / normal）と不揃いになる */
.sysFlow-list li > p:last-child {
	font-size: 15px;
	line-height: 190%;
	letter-spacing: normal;
}

.sysFlow-list li:last-child::after {
	content: none;
}

.sysFlow-step {
	font-family: 'Chillax', 'Chillax-local', sans-serif;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: normal;
	padding-bottom: 4px;
	display: inline-block;
}

.sysFlow-list h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 160%;
	letter-spacing: normal;
	padding-bottom: 20px;
}

/* ============================================
   SP
============================================ */
@media screen and (max-width:768px) {

	.sysHero {
		padding: 130px 0 56px;
	}

	/* 日本語のタグは1行に固定すると SP 幅を超えるので折り返させる */
	.sysHero-tag {
		white-space: normal;
		font-size: 12px;
		padding: 8px 14px;
		line-height: 1.7;
	}

	.sysHero-sub {
		font-size: 16px;
	}

	.sysService,
	.sysStrength {
		padding-top: 72px;
	}

	.sysService-list {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-top: 28px;
	}

	.sysService-card {
		padding: 28px 22px 32px;
	}

	.sysService-card h3 {
		font-size: 18px;
	}

	.sysStrength-list {
		padding-top: 40px;
	}

	.sysStrength-item {
		gap: 24px;
		margin-bottom: 60px;
	}

	/* flex-basis 380px / min-width 300px のままだと SP の実幅
	   （inner_l は calc(100% - 40px)）を超えて横に溢れる */
	.sysStrength-img,
	.sysStrength-txt {
		flex: 1 1 100%;
		min-width: 0;
	}

	.sysStrength-desc {
		padding-top: 24px;
	}

	.sysTech {
		padding-top: 80px;
	}

	.sysTech-row {
		padding-bottom: 20px;
	}

	.sysTech-item {
		margin-right: 48px;
	}

	.sysTech-item img {
		width: 32px;
		height: 32px;
	}

	.sysTech-item span {
		font-size: 16px;
	}

	.sysFlow {
		margin-top: 60px;
		padding: 80px 0;
	}

	.sysFlow-inner {
		gap: 40px;
	}

	.sysFlow-l,
	.sysFlow-r {
		flex: 1 1 100%;
		min-width: 0;
	}

	.sysFlow-lead {
		padding: 24px 0 32px;
	}

	.sysFlow-r {
		padding: 28px 20px;
	}

	/* 丸と線の位置は padding-left とセットで詰める */
	.sysFlow-list {
		padding-left: 34px;
	}

	.sysFlow-list li {
		margin-bottom: 28px;
	}

	.sysFlow-list li::before {
		left: -34px;
		width: 14px;
		height: 14px;
	}

	.sysFlow-list li::after {
		left: -27px;
		height: calc(100% + 29px);
	}

	.sysFlow-list h3 {
		font-size: 18px;
		padding-bottom: 12px;
	}
}
