@charset "UTF-8";

.intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 1rem 0;
	background-color: #F7F7F7;
	background-image: url(/resource/images/intro/bg.png);
}
.intro .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1520px;
	margin:0 auto;
}
.intro .obj {
	width: 21rem;
	margin-right: 2.5rem;
	order: 2;
}
.intro .logo {
	/* margin-bottom: 4.75rem; */
	order: 1;
}
.intro ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	width: 100%;
	order: 3;
}
.intro ul li {
	display: flex;
	flex-direction: column;
	width: 100%;
	aspect-ratio: 1/0.875;
	padding: 3.75rem 3.5rem;
	word-break: keep-all;
	border: 2px solid #121212;
	background-color: #fff;
	cursor: default;
	transition: all 0.2s;
}
.intro ul li p {
	margin-bottom: 1.5rem;
	font-size: 3rem;
	font-weight: 700;
}
.intro ul li span {
	color: #555;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.55;
}
.intro ul li a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	margin-left: auto;
	font-weight: 700;
}
.intro ul li a:after {
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='12' height='2' transform='matrix(1 0 0 -1 7.49902 6.50098)' fill='%23fff'/%3E%3Crect x='17.499' y='16.5012' width='12' height='2' transform='rotate(-90 17.499 16.5012)' fill='%23fff'/%3E%3Crect x='3.79395' y='18.792' width='20' height='2' transform='rotate(-45 3.79395 18.792)' fill='%23fff'/%3E%3C/svg%3E%0A");
	background-size: contain;
	content:'';
}
.intro ul li:first-child:hover {
	background-color: #02B5B1;
}
.intro ul li:nth-child(2):hover {
	background-color: #366CF0;
}
.intro ul li:last-child:hover {
	background-color: #555;
}
.intro ul li:hover p {
	color: #fff;
}
.intro ul li:hover span {
	color: #fff;
}
.intro ul li:hover a {
	color: #121212;
	border: 2px solid #121212;
	background-color: #fff;
}
.intro ul li:hover a:after {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='12' height='2' transform='matrix(1 0 0 -1 7.49902 6.50098)' fill='%23121212'/%3E%3Crect x='17.499' y='16.5012' width='12' height='2' transform='rotate(-90 17.499 16.5012)' fill='%23121212'/%3E%3Crect x='3.79395' y='18.792' width='20' height='2' transform='rotate(-45 3.79395 18.792)' fill='%23121212'/%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 1400px) {
	.intro ul {
		grid-template-columns: repeat(2, 1fr);
	}
	.intro ul li {
		aspect-ratio: auto;
	}
	.intro ul li:last-child {
		grid-column: 1/3;
	}
	.intro ul li a {
		margin-top: 2.5rem;
	}
}
@media screen and (max-width: 800px) {
	.intro {
		justify-content: flex-start;
		padding: 2rem 0 5rem;
	}
	.intro .logo {
		width: 8.1875rem;
	}
	.intro .obj {
		width: 10rem;
		margin-right: 0;
	}
	.intro ul {
		gap: 1rem;
	}
	.intro ul li {
		padding:2.5rem 1.25rem;
		border-width: 1px;
		text-align: center;
	}
	.intro ul li:last-child {
		text-align: left;
		padding: 1.5rem;
	}
	.intro ul li p {
		margin-bottom: 1rem;
		font-size: 1.5rem;
	}
	.intro ul li span {
		margin-bottom: 1.625rem;
		font-size: 0.875rem;
	}
	.intro ul li a {
		width: 100%;
		height: 2.5rem;
		margin-top: auto;
	}
	.intro ul li:last-child a {
		width: 6.75rem;
	}
	.intro ul li a:after {
		width: 1rem;
		height: 1rem;
	}
}