/* COMMON */
.top-sec .c-title + .lead {
	padding-bottom: var(--space-60);
	font-size: var(--fz-16);
	line-height: 1.75;
}

@media screen and (max-width: 768px) {
	.top-sec .c-title + .lead {
		padding-bottom: var(--space-40);
	}
}


/* MV */
.top-mv {
	background:
		url(../img/top-mv-bg01.png) no-repeat center bottom / 100% auto,
		url(../img/top-mv-bg02.png) no-repeat left bottom / 58% auto;
	padding: 42px 0 var(--space-60);
}

.top-mv .row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-48);
}

.top-mv .text-content {
	max-width: 768px;
}

.top-mv .text-content .cat {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-10);
	padding-bottom: var(--space-20);
}

.top-mv .text-content .cat li {
	background: var(--blue-5);
	color: var(--white);
	padding: 4px var(--space-12);
	font-size: var(--fz-15);
	font-weight: 700;
	line-height: 1.75;
}

.top-mv .text-content h1.title {
	color: var(--blue-5);
	padding-bottom: var(--space-24);
	font-size:  var(--fz-40);
	font-weight: 700;
	line-height: 1.5;
}

.top-mv .text-content .lead {
	padding-bottom: var(--space-24);
	font-size: var(--fz-16);
	font-weight: 600;
	line-height: 1.75;
}

.top-mv .text-content h1.title strong {
	color: var(--blue-3);
	font-size: 58px;
	font-weight: 700;
	font-style: normal;
}

.top-mv .text-content .buttons {
	display: flex;
	gap: var(--space-16);
	padding-bottom: var(--space-24);
}

.top-mv .text-content .buttons a {
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 310px;
	height: 80px;
	font-size: var(--fz-20);
	text-align: center;
}

.top-mv .text-content .buttons a.request {
	background: var(--orange);
	font-weight: 700;
	border: 1px solid var(--orange);
}

.top-mv .text-content .buttons a.request small {
	font-size: var(--fz-14);
	margin-left: var(--space-10);
}

.top-mv .text-content .buttons a.request::before {
	content: '';
	background: url(../img/icon-request.svg) no-repeat center / cover;
	display: inline-block;
	width: 20px;
	aspect-ratio: 20 / 16;
	margin-right: var(--space-10);
}

.top-mv .text-content .buttons a.tel {
	background: var(--blue-3);
	flex-direction: column;
	font-size: var(--fz-14);
	border: 1px solid var(--blue-3);
}

.top-mv .text-content .buttons a.tel span {
	display: block;
	font-size: var(--fz-24);
	font-weight: 700;
}

.top-mv .text-content .buttons a.tel span::before {
	content: '';
	background: url(../img/icon-tel-white.svg) no-repeat center / cover;
	display: inline-block;
	width: 20px;
	aspect-ratio: 1 / 1;
	margin-right: var(--space-10);
}

.top-mv .text-content .achieve {
	display: flex;
	gap: var(--space-30);
	padding-bottom: var(--space-24);
}

.top-mv .text-content .achieve .title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: var(--space-12);
	font-size: var(--fz-15);
	font-weight: 700;
	text-align: center;
}

.top-mv .text-content .achieve .title .label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.top-mv .text-content .achieve .title .label .ico {
	width: 32px;
	height: 24px;
}

.top-mv .text-content .achieve .title a {
	color: var(--blue-3);
}

.top-mv .text-content .achieve .title a::after {
	content: '';
	background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
	display: inline-block;
	width: 20px;
	aspect-ratio: 1 / 1;
	margin-left: 8px;
	vertical-align: sub;
}

.top-mv .text-content .achieve .title .num {
	display: block;
	font-size: var(--space-20);
}

.top-mv .text-content .achieve .title .num i {
	font-size: 42px;
	font-family: var(--font-family-en);
	font-style: normal;
	line-height: 1;
	vertical-align: sub;
}

.top-mv .text-content .achieve .text{
	font-size: var(--fz-15);
	font-weight: 500;
	text-align: center;
}

.top-mv .text-content .caption {
	font-size: var(--fz-14);
}

.top-mv .image-content {
	display: flex;
	align-items: flex-start;
	gap: var(--space-16);
	padding-top: 64px;
	min-width: 0;
}

.top-mv .image-content img {
	box-shadow: 2px 2px 13px #33333324;
}

.top-mv .image-content .img01 {
	flex: 0 1 100%;
	min-width: 0;
	margin-top: 44px;
}

.top-mv .image-content .img02 {
	flex: 0 1 100%;
	min-width: 0;
}

.top-mv .image-content .img03 {
	flex: 0 1 100%;
	min-width: 0;
	margin-top: 44px;
}

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

/* MV オープニング：H1 → 画像の順、すべて下から上 */
.top-mv .text-content h1.title,
.top-mv .image-content .img01,
.top-mv .image-content .img02,
.top-mv .image-content .img03 {
	opacity: 0;
	animation-name: mvFadeUp;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	animation-fill-mode: both;
}

.top-mv .text-content h1.title { animation-delay: 0s; }
.top-mv .image-content .img01  { animation-delay: .3s; }
.top-mv .image-content .img02  { animation-delay: .45s; }
.top-mv .image-content .img03  { animation-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
	.top-mv .text-content h1.title,
	.top-mv .image-content .img01,
	.top-mv .image-content .img02,
	.top-mv .image-content .img03 { animation: none; opacity: 1; }
}

@media screen and (min-width: 1701px) {
	.top-mv {
		background:
			url(../img/top-mv-bg01.png) no-repeat center bottom / 100% auto,
			url(../img/top-mv-bg02.png) no-repeat left bottom / 49% auto;
	}
	
	.top-mv .l-inner {
		width: auto;
		max-width: 1600px;
	}

	.top-mv .text-content h1.title {
		font-size: 50px;
	}

	.top-mv .text-content h1.title strong {
		font-size: 68px;
	}
	
	.top-mv .text-content .buttons a {
		width: 320px;
		padding: var(--space-20) 0;
	}
	
	.top-mv .image-content .img01 {
		flex-basis: 100%;
		margin-top: 60px;
	}

	.top-mv .image-content .img02 {
		flex-basis: 100%;
		margin-top: 0;
	}

	.top-mv .image-content .img03 {
		flex-basis: 100%;
		margin-top: 60px;
	}
}

@media screen and (max-width: 1240px) {
	.top-mv .row {
		flex-direction: column;
		align-items: center;
	}
	
	.top-mv .text-content {
		display: contents;
	}
	
	.top-mv .text-content .lead {
		display: none;
	}
	
	.top-mv .text-content .buttons {
		order: 1;
	}
	
	.top-mv .text-content .achieve {
		order: 2;
	}
	
	.top-mv .text-content .caption {
		order: 3;
	}
	
	.top-mv .image-content {
		padding-bottom: var(--space-24);
	}
}

@media screen and (min-width: 769px) {
	.top-mv .text-content .buttons a {
		transition: background .2s ease, color .2s ease;
	}

	.top-mv .text-content .buttons a.request:hover {
		background: var(--white);
		color: var(--orange);
	}
	
	.top-mv .text-content .buttons a.tel:hover {
		background: var(--white);
		color: var(--blue-3);
	}
	
	.top-mv .text-content .buttons a.request:hover::before {
		background-image: url(../img/icon-request-orange.svg);
	} 

	.top-mv .text-content .buttons a.tel:hover span::before {
		background-image: url(../img/icon-tel-blue.svg);
	} 
}

@media screen and (max-width: 768px) {
	.top-mv {
		background: url(../img/top-mv-bg-sp.png) no-repeat center / cover;
		padding: 50px 0 var(--space-30);
	}
	
	.top-mv .row {
		align-items: inherit;
		gap: var(--space-16);
	}
	
	.top-mv .text-content .cat li {
		padding: 4px 8px;
		font-size: 11px;
	}
	
	.top-mv .text-content h1.title {
		font-size: var(--fz-24);
	}

	.top-mv .text-content h1.title strong{
		font-size: var(--fz-36);
	}
	
	.top-mv .text-content .buttons {
		flex-direction: column;
		gap: var(--space-12);
	}
	
	.top-mv .text-content .buttons a {
		width: min(100%, 320px);
		margin: auto;
		padding: var(--space-20) 0;
		font-size: var(--fz-16);
	}
	
	.top-mv .text-content .buttons a::before {
		vertical-align: sub;
	}
	
	.top-mv .text-content .achieve {
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-20);
	}
	
	.top-mv .text-content .achieve .title {
		font-size: var(--fz-14);
	}

	.top-mv .text-content .achieve .title .label .ico {
		width: 27px;
		height: 20px;
	}

	.top-mv .text-content .achieve .title .num i {
		font-size: var(--fz-32);
		vertical-align: bottom;
	}

	.top-mv .text-content .achieve .text {
		font-size: var(--fz-12);
	}

	.top-mv .image-content {
		justify-content: center;
		gap: var(--space-8);
		padding-top: 0;
	}

	.top-mv .image-content .img01 {
		flex-basis: 100%;
		margin-top: 28px;
	}

	.top-mv .image-content .img02 {
		flex-basis: 100%;
	}

	.top-mv .image-content .img03 {
		flex-basis: 100%;
		margin-top: 28px;
	}
}


/* お取引先登録済み企業様 */
.top-company {
	background: var(--gray-1);
	padding: var(--space-40) 0;
	overflow: hidden;
}

.top-company .title {
	padding-bottom: var(--space-32);
	font-size: var(--space-32);
	font-weight: 700;
	text-align: center;
}

.top-company .company-slider {
	display: flex;
	gap: var(--space-32);
	width: max-content;
	animation: companySlide 20s linear infinite;
}

.top-company .lists {
	display: flex;
	flex-shrink: 0;
	gap: var(--space-32);
}

.top-company .lists li {
	flex-shrink: 0;
}

.top-company .lists img {
	display: block;
	width: 210px;
}

@keyframes companySlide {
	from { transform: translateX(-25%); }
	to { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {
	.top-company {
		padding: var(--space-32) 0;
	}

	.top-company .l-inner {
		width: 100%;
	}
	
	.top-company .title {
		padding-bottom: var(--space-14);
		font-size: var(--space-20);
	}
	
	.top-company .company-slider {
		gap: var(--space-20);
	}
	
	.top-company .lists {
		gap: var(--space-20);
	}
	
	.top-company .lists img {
		width: 130px;
	}
}


/* グローバル業務を支える、3つの中核サービス */
.top-service {
	position: relative;
	padding: var(--space-80) 0;
}

.top-service::before {
	content: '';
	background: url(../img/top-service-bg.png) no-repeat center / cover;
	display: inline-block;
	position: absolute;
	inset: auto auto 0 0;
	translate: 0 50%;
	width: 100%;
	aspect-ratio: 1920 / 1020;
	z-index: -1;
}

.top-service .lists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-40);
}

.top-service .lists a {
	background: var(--white);
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 2px 2px 13px #33333324;
}

.top-service .lists .text-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
	padding: var(--space-24);
}

.top-service .lists .title {
	padding-bottom: var(--space-14);
	font-size: var(--space-20);
	font-weight: 700;
}

.top-service .lists .title,
.top-solution .lists .title,
.top-service .lists .more,
.top-solution .lists .more {
	transition: color .2s ease;
}

.top-service .lists .more::after,
.top-solution .lists .more::after {
	transition: transform .2s ease;
}

@media (hover: hover) {
	.top-service .lists a:hover .title,
	.top-solution .lists a:hover .title,
	.top-service .lists a:hover .more,
	.top-solution .lists a:hover .more {
		color: var(--blue-3);
	}

	.top-service .lists a:hover .more::after,
	.top-solution .lists a:hover .more::after {
		transform: translateX(10%);
	}
}

.top-service .lists .text {
	padding-bottom: var(--space-14);
	font-size: var(--space-16);
}

.top-service .lists .point {
	margin-top: auto;
}

.top-service .lists .point li {
	position: relative;
	padding-left: 28px;
	font-size: var(--fz-16);
	font-weight: 500;
}

.top-service .lists .point li + li {
	margin-top: var(--space-10);
}

.top-service .lists .point li::before {
	content: '';
	background: url(../img/icon-check-circle-blue.svg) no-repeat center /cover;
	position: absolute;
	inset: 2px auto auto 0;
	width: 20px;
	aspect-ratio: 1 / 1;
}

.top-service .lists .more {
	margin-top: var(--space-20);
	padding-top: var(--space-14);
	font-size: var(--space-16);
	font-weight: 700;
	text-align: right;
	border-top: 1px solid #E0E6EC;
}

.top-service .lists .more::after {
	content: '';
	background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
	display: inline-block;
	width: 24px;
	aspect-ratio: 1 / 1;
	margin-left: var(--space-10);
	vertical-align: bottom;
}

@media screen and (max-width: 1240px) {
	.top-service .lists {
		gap: var(--space-32);
	}
}

@media screen and (min-width: 769px) {
	.top-service .lists a {
		transition: box-shadow .2s ease;
	}

	.top-service .lists a:hover {
		box-shadow: 2px 2px 13px #33333345;
	}
}

@media screen and (max-width: 768px) {
	.top-service {
		padding: var(--space-60) 0;
	}

	.top-service .lists {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--space-32);
	}
}


/* 法人ソリューション */
.top-solution {
	padding: var(--space-80) 0;
}

.top-solution .c-title {
	text-align: center;
}

.top-solution .c-title::before {
	display: none;
}

.top-solution .c-title + .lead {
	text-align: center;
}

.top-solution .lists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-40);
}

.top-solution .lists a {
	background: var(--white);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: var(--space-24);
	box-shadow: 2px 2px 13px #33333324;
}

.top-solution .lists .title {
	padding-bottom: var(--space-14);
	font-size: var(--fz-20);
	font-weight: 700;
}

.top-solution .lists .text {
	padding-bottom: var(--space-20);
	font-size: var(--fz-16);
	line-height: 1.8;
}

.top-solution .lists .type {
	color: var(--blue-3);
	margin-top: auto;
	font-size: var(--fz-16);
	font-weight: 500;
}

.top-solution .lists .more {
	margin-top: var(--space-20);
	padding-top: var(--space-14);
	font-size: var(--space-16);
	font-weight: 700;
	text-align: right;
	border-top: 1px solid #E0E6EC;
}

.top-solution .lists .more::after {
	content: '';
	background: url(../img/icon-arrow-circle-blue.svg) no-repeat center / cover;
	display: inline-block;
	width: 24px;
	aspect-ratio: 1 / 1;
	margin-left: var(--space-10);
	vertical-align: text-top;
}

@media screen and (max-width: 1240px) {
	.top-solution .lists {
		gap: var(--space-32);
	}
}

@media screen and (min-width: 769px) {
	.top-solution .lists a {
		transition: box-shadow .2s ease;
	}

	.top-solution .lists a:hover {
		box-shadow: 2px 2px 13px #33333345;
	}
}

@media screen and (max-width: 768px) {
	.top-solution {
		padding: var(--space-60) 0;
	}

	.top-solution .lists {
		grid-template-columns: repeat(1, 1fr);
	}
}


/* 機密性が問われる案件にこそ、選ばれる理由 */
.top-reason {
	background: var(--blue-5);
	position: relative;
	padding: var(--space-80) 0;
	overflow: hidden;
}

.top-reason::before {
	content: '';
	background: url(../img/top-reason-bg.png) no-repeat center / cover;
	display: inline-block;
	position: absolute;
	inset: auto auto 0 0;
	translate: 0 45%;
	width: 100%;
	aspect-ratio: 1920 / 670;
}

.top-reason .l-inner {
 position: relative;
}

.top-reason :is(.c-title, .lead) {
	color: var(--white);
}

.top-reason .c-title {
	padding-top: 0;
}

.top-reason .c-title::before {
	display: none;
}

.top-reason .lists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-32);
}

.top-reason .lists li {
	background: var(--white);
	padding: var(--space-24);
}

.top-reason .lists .title {
	padding-bottom: var(--space-24);
	font-size: var(--space-20);
	font-weight: 700;
}

.top-reason .lists .title .num {
	color: var(--blue-3);
	display: block;
	padding-bottom: 8px;
	font-size: var(--fz-40);
	font-family: var(--font-family-en);
	font-style: normal;
}

.top-reason .lists .text {
	font-size: var(--fz-15);
	line-height: 1.75;
}

@media screen and (max-width: 1240px) {
	.top-reason .lists {
		grid-template-columns: repeat(2, 1fr);
	}
}


@media screen and (max-width: 768px) {
	.top-reason {
		padding: var(--space-60) 0;
	}

	.top-reason .lists {
		grid-template-columns: repeat(1, 1fr);
	}
}


.top-flow {
	background: var(--gray-1);
	position: relative;
	padding: var(--space-80) 0;
	overflow: hidden;
}

.top-flow::before {
	content: '';
	background: url(../img/top-reason-bg.png) no-repeat center / cover;
	display: inline-block;
	position: absolute;
	inset: auto auto 0 0;
	translate: 0 45%;
	width: 100%;
	aspect-ratio: 1920 / 670;
}

.top-flow .l-inner {
	position: relative;
}

.top-flow .c-title {
	padding-top: 0;
}

.top-flow .c-title::before {
	display: none;
}

.top-flow .lists {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-16);
	padding-bottom: var(--space-40);
}

.top-flow .lists li {
	background: var(--white);
	padding: var(--space-24);
}

.top-flow .lists li .title {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 25px;
	font-size: var(--fz-20);
	font-weight: 700;
}

.top-flow .lists li .title .num {
	background: var(--blue-3);
	color: var(--white);
	display: inline-block;
	width: 30px;
	line-height: 30px;
	aspect-ratio: 1 / 1;
	font-size: var(--fz-16);
	font-family: var(--font-family-en);
	font-style: normal;
	text-align: center;
}

.top-flow .lists li .text {
	font-size: var(--fz-15);
	line-height: 1.75;
}

.top-flow .contact-box {
	background: var(--white);
	padding: var(--space-40) 15px;
}

.top-flow .contact-title {
	color: var(--blue-3);
	padding-bottom: var(--space-24);
	font-size: var(--fz-32);
	font-weight: 700;
	text-align: center;
}

.top-flow .contact-text {
	padding-bottom: 34px;
	font-size: var(--fz-16);
	font-weight: 500;
	line-height: 1.75;
	text-align: center;
}

.top-flow .contact-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--space-48);
}

.top-flow .contact-buttons .tel a {
	display: block;
	color: var(--gray-4);
	font-size: var(--fz-18);
	font-weight: 500;
	text-align: center;
}

.top-flow .contact-buttons .tel span {
	color: var(--blue-3);
	display: block;
	font-size: var(--fz-32);
	font-weight: 700;
}

.top-flow .contact-buttons .tel span::before {
	content: '';
	background: url(../img/icon-tel-blue.svg) no-repeat center / cover;
	display: inline-block;
	width: 34px;
	aspect-ratio: 1 / 1;
	margin-right: var(--space-14);
	vertical-align: sub;
}

.top-flow .contact-buttons .request a {
	background: var(--orange);
	color: var(--white);
	display: block;
	padding: var(--space-24);
	font-size: var(--fz-20);
	font-weight: 700;
	border: 1px solid var(--orange);
}

.top-flow .contact-buttons .request a::before{
	content: '';
	background: url(../img/icon-request.svg) no-repeat center / cover;
	display: inline-block;
	margin-right: var(--space-14);
	width: 20px;
	aspect-ratio: 20 / 16;
}

.top-flow .contact-buttons .request a small{
	margin-left: var(--space-10);
	font-size: var(--fz-14);
}

@media screen and (min-width: 769px) {
	.top-flow .contact-buttons .request a {
		transition: background .2s ease, color .2s ease;
	}

	.top-flow .contact-buttons .request a:hover {
		background: var(--white);
		color: var(--orange);
	}

	.top-flow .contact-buttons .request a:hover::before {
		background-image: url(../img/icon-request-orange.svg);
	}
}

@media screen and (max-width: 768px) {
	.top-flow {
		padding: var(--space-60) 0;
	}
	
	.top-flow .lists {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.top-flow .contact-title {
		font-size: var(--fz-20);
	}
	
	.top-flow .contact-buttons {
		flex-direction: column;
		gap: var(--space-24);
	}
}
