/* ------------------------------------------------------------
top common
---------------------------------------------------------------*/
.top-sec {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0 50px;
}
.top-sec .sec-cont {
	gap: 30px;
}

@media screen and (max-width: 999px) {
	.top-sec {
		padding: 0 30px;
	}
	.top-sec .sec-cont {
		gap: 20px;
	}
}

/* ------------------------------------------------------------
FV
---------------------------------------------------------------*/
.sec-top-fv {
	width: 100%;
	min-height: 450px;
	padding: 0 20px;
	overflow: hidden;
	margin-bottom: 50px;
}
.sec-top-fv-flex {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
	max-width: 1780px;
	margin: 0 auto;
}
.top-fv-contents-area {
	width: 26.38%;
	flex-shrink: 0;
	gap: 20px;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.top-fv-contents-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: center;
}
.card-news {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-flow: column;
	background: var(--c-white);
	border: 1px solid var(--c-white);
	border-radius: 5px;
	padding: 10px;
	overflow: hidden;
	gap: 10px;
	position: relative;
	transition: var(--transition-base);
}
.card-news:hover {
	border: 1px solid var(--c-primary);
}
.card-news::after {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url(../images/common/icon-arrow-up-right-bl.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.card-news > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 18 / 7;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
}
.card-news > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
}
.card-news:hover > figure > img {
	transform: scale(1.05);
}
.card-news > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 3px;
	transition: var(--transition-base);
}
.card-news:hover > div {
	color: var(--c-primary);
}
.card-news-head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
}
.card-news-head .news-date {
	font-size: 13px;
	font-weight: initial;
}
.card-news-head .post-cat {
	font-size: 13px;
}
.card-news > div > h3 {
	width: 100%;
	font-size: 16px;
	font-weight: var(--fw-semibold);
	line-height: 1.5;
	padding-right: 40px;
}

.fv-slider-area {
	position: relative;
	width: 71.68%;
}
.fv-slider {
	width: 100%;
	height: 100%;
	min-height: 450px;
	border-radius: 5px;
}

.fv-slider-area .slide-pagination-wrapper {
	position: absolute;
	z-index: 10;
	bottom: 20px;
	right: 0;
	left: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 1200px) {
	.sec-top-fv-flex {
		width: 100%;
		flex-flow: column;
		align-items: center;
		justify-content: flex-start;
		height: auto;
	}
	.fv-slider-area {
		width: 100%;
	}
	.fv-slider {
		height: auto;
		aspect-ratio: 1000 / 450;
		min-height: 0;
	}
	.top-fv-contents-area {
		width: 100%;
	}
	.top-fv-contents-area > .card-news {
		display: none;
	}
	.top-fv-contents-box {
		flex-flow: row;
	}
}
@media screen and (max-width: 768px) {
	.sec-top-fv {
		padding: 0 10px;
		margin-bottom: 40px;
	}
	.sec-top-fv-flex {
		gap: 10px;
	}
	.fv-slider {
		height: auto !important;
		aspect-ratio: 370 / 400;
	}
	.top-fv-contents-box {
		flex-flow: column;
	}
	.top-fv-contents-box .card-support-menu > figure {
		width: 80px;
	}
}

/* ------------------------------------------------------------
News
---------------------------------------------------------------*/
.sec-top-news {
	background: var(--c-white);
	padding-top: 68px;
	padding-bottom: 80px;
	border-radius: 10px;
}
.sec-top-news .btn-box-right {
	display: none;
}

@media screen and (max-width: 999px) {
	.sec-top-news {
		padding-top: 53px;
		padding-bottom: 50px;
	}
	.sec-top-news .ttb-flex .arrow-link {
		display: none;
	}
	.sec-top-news .btn-box-right {
		display: flex;
	}
}

/* ------------------------------------------------------------
Products
---------------------------------------------------------------*/
.sec-top-products {
	padding-top: 68px;
	padding-bottom: 50px;
}
.sec-top-products .category-name{
	font-size: 18px;
}

@media screen and (max-width: 999px) {
	.sec-top-products {
		padding-top: 50px;
		padding-bottom: 80px;
	}
}

/* ------------------------------------------------------------
Case Study
---------------------------------------------------------------*/
.sec-top-case-study {
	background: var(--c-white);
	padding-top: 68px;
	padding-bottom: 75px;
	border-radius: 10px;
}
.case-study-grid-wrapper {
	width: 100%;
	position: relative;
}
.case-study-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.case-study-grid-item {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-flow: column;
	overflow: hidden;
	gap: 10px;
	position: relative;
}
.case-study-grid-item > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
}
.case-study-grid-item > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
}
.case-study-grid-item:hover > figure > img {
	transform: scale(1.05);
}
.case-study-grid-item > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 20px;
}
.case-study-grid-item-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px 15px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.case-study-grid-item-bottom > p {
	font-size: 13px;
}
.case-study-grid-item-bottom .post-cat {
	font-size: 13px;
}
.case-study-grid-item > div > h3 {
	width: 100%;
	font-size: 18px;
	font-weight: var(--fw-bold);
	line-height: 1.5;
	transition: var(--transition-base);
}
.case-study-grid-item:hover > div > h3 {
	color: var(--c-primary);
}

.sec-top-case-study .btn-box-right {
	display: none;
}
@media screen and (max-width: 1200px) {
	.case-study-grid-item > div > h3 {
		font-size: 16px;
	}
}
@media screen and (max-width: 999px) {
	.sec-top-case-study {
		padding-top: 53px;
		padding-bottom: 50px;
		padding-right: 0;
	}
	.sec-top-case-study .ttb-flex .arrow-link {
		display: none;
	}
	.sec-top-case-study .btn-box-right {
		display: flex;
		padding-right: 30px;
	}
	.case-study-grid-wrapper {
		overflow-x: auto;
		padding-bottom: 20px;
		padding-right: 30px;
	}
	.case-study-grid {
		width: 1280px;
	}
}

/* ------------------------------------------------------------
About
---------------------------------------------------------------*/
.sec-top-about {
	padding-top: 76px;
	padding-bottom: 124px;
}
.top-about-flex {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
	max-width: 1780px;
	margin: 0 auto;
}
.heading-group-area {
	width: auto;
	display: flex;
	flex-flow: column;
	gap: 50px;
	align-items: flex-start;
	position: relative;
	z-index: 10;
}
.top-about-flex > figure {
	width: 48%;
	max-width: 410px;
	height: auto;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.top-about-flex > figure::after {
	content: "";
	background-image: url("../images/top/img-dms-bg.png");
	width: 200%;
	height: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	aspect-ratio: 1 / 1;
	z-index: 0;
}
.top-about-flex > figure > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 10;
}

.heading-group {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 30px;
	align-items: flex-start;
}
.top-about-flex .heading-group .c-txt {
	font-weight: var(--fw-medium);
}

@media screen and (max-width: 1200px) {
	.top-about-flex .heading-group .c-txt {
		font-size: 14px;
	}
	.top-about-flex > figure {
		max-width: 350px;
	}
}
@media screen and (max-width: 999px) {
	.sec-top-about {
		padding-top: 40px;
	}
	.heading-group-area {
		gap: 30px;
	}
	.sec-top-about .heading-group-area {
		max-width: 350px;
	}
	.heading-group {
		gap: 20px;
	}
	.top-about-flex .heading-group .c-txt > br {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.sec-top-about {
		padding-bottom: 80px;
	}
	.top-about-flex {
		flex-flow: column;
		align-items: center;
		gap: 50px;
	}
	.top-about-flex .ttl-box h2 {
		white-space: nowrap;
	}
	.top-about-flex .heading-group .c-txt {
		width: 100%;
		font-size: 16px;
	}
	.top-about-flex > figure {
		width: 100%;
	}
	.heading-group-area > .btn-box {
		justify-content: center;
	}
}
/* ------------------------------------------------------------
Recruit
---------------------------------------------------------------*/
.sec-top-recruit {
	min-height: 720px;
	padding-top: 100px;
	padding-bottom: 160px;
	background-image: url("../images/top/bg-recruit.png");
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px 10px 0 0;
}
.top-recruit-img-sp {
	display: none;
}
.top-recruit-flex {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	max-width: 1780px;
	margin: 0 auto;
	padding-left: 50px;
}
.top-recruit-ttl {
	width: 100%;
	font-size: 40px;
	color: var(--c-white);
	line-height: 1.8;
}
.top-recruit-flex .heading-group .c-txt {
	font-weight: var(--fw-semibold);
	color: var(--c-white);
}

@media screen and (max-width: 768px) {
	.top-recruit-img-sp {
		display: flex;
	}
	.sec-top-recruit {
		min-height: 0;
		padding: 0;
		padding-bottom: 140px;
		background-image: none;
		border-radius: 0;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 74px;
	}
	.top-recruit-img-sp {
		display: flex;
		border-radius: 10px;
		justify-content: center;
		align-items: center;
		aspect-ratio: 1 / 1;
		width: 100%;
		height: auto;
		overflow: hidden;
		max-width: 768px;
	}
	.top-recruit-img-sp > img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.top-recruit-ttl {
		font-size: 30px;
		color: var(--c-primary);
		white-space: nowrap;
	}
	.top-recruit-flex {
		padding-left: 30px;
		padding-right: 30px;
		justify-content: center;
	}
	.top-recruit-flex .ttl-box.ttb-white {
		color: var(--c-primary);
	}
	.top-recruit-flex .heading-group .c-txt {
		color: var(--c-txt);
	}
	.top-recruit-flex .btn-more.btn-more-white {
		border: 1px solid var(--c-primary);
	}
	.top-recruit-flex .btn-more.btn-more-white .btn-txt {
		color: var(--c-primary);
	}
	.top-recruit-flex .btn-more.btn-more-white .btn-txt::after {
		background-image: url("../images/common/icon-arrow-up-right-bl.svg");
	}
}
