@charset "utf-8";

.sec_usecase {
	max-width: 1164px;
	margin: 0 auto;
	padding: 80px 0;
	line-height: 1.2;
}

.title-wrap h2 {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}

.title-wrap p {
	font-size: 30px;
	margin-top: 10px;
	font-weight: bold;
	text-align: center;
}

.tab-menu {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	margin-top: 40px;
	border-bottom: 10px solid #0468BF;
}

.tab-menu button {
	padding: 5px;
	background: #fff;
	cursor: pointer;
	transition: 0.2s;
	height: fit-content;
	font-size: 24px;
	font-weight: bold;
	flex: 1;
	border: 2px solid #0468BF;
	color: #0468BF;
	border-bottom: unset;
	height: 72px;
}

.tab-menu button.active {
	background: #333;
	color: #fff;
	padding: 5px 8px;
	font-size: 26px;
	background-color: #0468BF;
	height: 86px;
}


@media (max-width: 768px) {
	.tab-menu {
		border-width: 5px;
		gap: 2px;
	}

	.tab-menu button {
		font-size: 16px !important;
		height: 69px;
		border-width: 1px;
	}

	.tab-menu button.active {
		height: 74px;
	}
}

.tab-content {
	border-top: unset;
	padding: 40px 30px;
}

.card-simple {
	display: flex;
	flex-direction: column;
}

.card-simple img {
	width: 100%;
	display: block;
}

.card-simple .card-title-wrap {
	background-color: #EEFAFC;
	padding: 20px;
	height: 100%;
}

.card-simple .card-title {
	font-size: 18px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	line-height: 1.4;
}

.card-simple .card-title:hover {
	text-decoration: underline;
}

.tab-content.tab-simple {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	row-gap: 50px;
}

.tab-content.tab-detail {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
}

@media (max-width: 768px) {
	.tab-content {
		padding: 20px 17px;
	}

	.tab-content.tab-detail {
		gap: 25px;
	}

	.tab-content.tab-simple {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.card-simple {
		width: 100%;
	}

	.card-simple .card-title-wrap .card-simple .card-title {
		font-size: 15px;
	}
}

.card-detail {
	display: flex;
	gap: 44px;
}

.card-detail .detail-img {
	width: 39%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.card-detail .detail-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.detail-body {
	flex: 1;
	background-color: #fff;
	border: 2px solid #0468BF;
	padding: 30px;
	border-radius: 20px;
	position: relative;
}

.detail-body::before {
	content: '';
	width: 32px;
	height: 40px;
	background-image: url(../img/icn_arrow.png);
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	left: -26px;
	transform: translateY(-50%);
}

.detail-title {
	font-size: 24px;
	font-weight: bold;
	color: #0468BF;
	text-decoration: underline;
	text-decoration-color: #EEFAFC;
	text-decoration-thickness: 15px;
	text-underline-offset: -30%;
}

.detail-customer {
	margin-top: 18px;
	font-size: 17px;
	font-weight: bold;
}

.detail-tags {
	margin-top: 10px;
	display: flex;
	gap: 14px;
}

.detail-tags span {
	display: inline-block;
	background: #f3f3f3;
	padding: 4px 20px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 5px;
}

.detail-info {
	margin-top: 6px;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4;
}

.detail-text {
	width: 100%;
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
	border-top: 2px dotted #011A5D;
	padding-top: 10px;
}

.detail-more {
	float: right;
	font-weight: bold;
	color: #011A5D;
	text-decoration: underline;
}

.detail-more:hover {
	text-decoration: unset;
}

@media (max-width: 768px) {
	.card-detail {
		flex-direction: column;
		gap: 30px;
	}

	.card-detail .detail-img img {
		width: 100%;
	}

	.detail-body {
		order: -1;
		border-width: 1px;
		padding: 15px;
		border-radius: 10px;
	}

	.detail-body::before {
		top: unset;
		left: 50%;
		bottom: -5.1vw;
		transform: translateX(-50%) rotate(-90deg);
		width: 5vw;
		height: 7vw;
	}

	.card-detail .detail-img {
		width: 100%;
		border-radius: 10px;
	}

	.detail-customer {
		margin-top: 15px;
		font-size: 16px;
	}

	.detail-tags {
		gap: 9px;
	}

	.detail-tags span {
		padding-left: 15px;
		padding-right: 15px;
		font-size: 11px;
	}

	.detail-text {
		margin-top: 15px;
		border-width: 1px;
		padding-top: 15px;
	}
}

@media (max-width:768px) {
	.sec_usecase {
		padding: 40px 20px 0;
	}

	.title-wrap h2 {
		font-size: 24px;
	}

	.title-wrap p {
		font-size: 19px;
		margin-top: 5px;
	}
}

.bottom-link-wrap {
	max-width: 920px;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 80px auto 0;
}

.bottom-link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	min-height: 56px;
	border-radius: 100px;
	border: 2px solid #011A5D;
	background-color: #fff;
	padding: 5px 10px;
	color: #011A5D;
	text-align: center;
}

.bottom-link:hover {
	background-color: #011A5D;
	color: #fff;
	text-decoration: unset;
}

@media (max-width: 768px) {
	.bottom-link-wrap {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		margin-top: 40px;
	}

	.bottom-link {
		font-size: 17px;
		width: 100%;
		min-height: 40px;
		border-radius: 20px;
		border-width: 1px;
		max-width: 250px;
		text-align: center;
	}
}