:root {
	--h2-point: 14px;
}

main .visual {
	width: 100%;
	height: 100vh;
}

main .visual .box,
main .visual .slide-box,
main .visual .bg,
main .visual .text {
	width: 100%;
	height: 100%;
}

main .visual .box {
	position: relative;
}

main .visual .swiper-slide {
	overflow: hidden;
}

main .visual .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.1);
	transition: all 9s ease-in;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

main .visual .bg.bg1 {
	background-image: url("/img/main/bg_visual_01_1.jpg");
}

main .visual .bg.bg2 {
	background-image: url("/img/main/bg_visual_01_2.jpg");
}

main .visual .bg.bg3 {
	background-image: url("/img/main/bg_visual_01_3.jpg");
}

main .visual .text {
	text-align: center;
	padding-top: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .visual .text h2, main .visual .text h3 {
	color: var(--color-white);
	font-weight: 700;
}

main .visual .text h2 {
	font-size: calc(var(--font92) - 0.2rem);
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	transition: all 2s linear;
}

main .visual .text h3 {
	font-size: var(--font42);
	line-height: 1.6;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease-in;
}

main .visual .text h3 span {
	font-weight: 300;
}

main .visual .option-box,
main .visual .row,
main .visual .buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .visual .option-box,
main .visual .scroll-box {
	position: absolute;
	z-index: 1;
}

main .visual .option-box,
main .visual .row {
	column-gap: 20px;
}

main .visual .option-box {
	width: 100%;
	left: 50%;
	bottom: 90px;
	transform: translateX(-50%);
}

main .visual .progress-bar {
	width: 240px;
	height: 2px;
	background: var(--color-white);
	position: relative;
	overflow: hidden;
}

main .visual .progress-bar span {
	display: block;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	position: absolute;
	top: 0;
	left: 0;
}

main .visual .fraction {
	flex-shrink: 0;
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 600;
}

main .visual .fraction span::before {
	content: "0";
}

main .visual .fraction .swiper-pagination-total {
	opacity: 0.5;
}

main .visual .buttons {
	column-gap: 5px;
}

main .visual .buttons button {
	width: 50px;
	height: 50px;
	background: transparent;
	border: 1px solid var(--color-white);
	box-shadow: none;
}

main .visual .buttons button:hover {
	background: transparent;
}

main .visual .buttons .pause-button {
	column-gap: 4px;
	background: url("/img/main/icon_stop.png") center center no-repeat !important;
	background-position: center center;
	overflow: hidden;
	text-indent: -9999em;
}

main .visual .buttons .pause-button.stop {
	background: url("/img/main/icon_start.png") center center no-repeat !important;
}

main .visual .buttons img {
	width: 7px;
	filter: brightness(0) invert(1);
}

main .visual .buttons .pause-button img {
	width: auto !important;
	filter: none !important;
}

main .visual .buttons span {
	display: block;
	width: 2px;
	height: 10px;
	background: var(--color-white);
}

main .visual .swiper-slide-active .bg {
	transform: translate(-50%, -50%) scale(1);
}

main .visual .swiper-slide-active .text h2 {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

main .visual .swiper-slide-active .text h3 {
	opacity: 1;
	transform: translateY(0);
}

main .visual .scroll-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 20px;
	right: 50px;
	bottom: 80px;
}

main .visual .scroll-box>img {
	width: 14px;
}

main .visual .scroll-box span {
	width: 60px;
	height: 60px;
	border: 1px solid var(--color-white);
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .visual .scroll-box span img {
	width: 9px;
	filter: brightness(0) invert(1);
}

main .business .box,
main .news .box {
	padding: var(--gap180) 0;
}

main .business h2,
main .news h2 {
	color: #111;
	font-size: var(--font92);
	font-weight: 700;
	padding-top: var(--h2-point);
	position: relative;
}

main .business h2::before, main .business h2::after,
main .news h2::before,
main .news h2::after {
	content: "";
	display: block;
	width: var(--h2-point);
	height: var(--h2-point);
	background: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	top: calc(-1 * var(--h2-point));
}

main .business h2::before,
main .news h2::before {
	left: 0;
}

main .business h2::after,
main .news h2::after {
	left: calc(var(--h2-point) - 4px);
	opacity: 0.5;
}

main .business .box {
	position: relative;
}

main .business .heart {
	width: 48.45%;
	position: absolute;
	left: 0;
	bottom: calc(var(--gap180) + 30px);
}

main .business .content {
	display: grid;
	grid-template-columns: auto calc(100% + 10px);
	column-gap: 12%;
	align-items: flex-start;
}

main .business .content * {
	font-family: var(--font-pretendard);
}

main .business .pagination {
	display: flex;
	flex-direction: column;
	row-gap: 35px;
	font-size: calc(var(--font42) - 0.2rem);
	margin-top: 40px;
}

main .business .pagination button {
	color: #999;
	font-size: 1em;
	font-weight: 700;
	text-align: left;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

main .business .pagination .swiper-pagination-bullet-active {
	color: var(--color-primary);
	font-size: 1.5em;
}

main .business .slide-wrap {
	position: relative;
	left: 100%;
	transition: all 1s ease-out;
}

main .business .slide-wrap.on {
	left: 0;
}

main .business .slide-box {
	overflow: hidden;
}

main .business .img-box {
	border-radius: 40px;
	padding: 43.585% 0;
	position: relative;
}

main .business .img-box span {
	color: var(--color-white);
	font-size: 4rem;
	font-weight: 700;
	z-index: 1;
	position: absolute;
	top: 70px;
	left: 60px;
}

main .business .img {
	width: 83.71794%;
	border-radius: 40px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

main .business .img::after {
	content: "";
	display: block;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
	border-radius: 40px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .business .text-box {
	position: relative;
}

main .business .text {
	width: 100%;
	padding: 30px 20px 0;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .business .text h6 {
	color: #222;
	font-size: 2.3rem;
	font-weight: 500;
	line-height: 1.7;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

main .business .text .hover-button {
	flex-shrink: 0;
	pointer-events: none;
	display: none;
}

main .business .text.on {
	opacity: 1;
	position: relative;
	top: auto;
	left: auto;
	transform: translate(0, 0);
	pointer-events: inherit;
}

main .business .text.on h6 {
	opacity: 1;
}

main .business .text.on .hover-button {
	display: flex;
	pointer-events: inherit;
}

main .business .swiper-slide-active .img {
	width: 100%;
}

main .business .swiper-slide-active .img::after {
	opacity: 1;
}

main .business .swiper-slide-active .text {
	opacity: 1;
}

main .business .buttons {
	row-gap: 15px;
	position: absolute;
	top: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}

main .business .buttons button {
	width: 100px;
	height: 100px;
	margin-right: -50px;
}

main .news {
	background: #f5f5f5;
}

main .news .box * {
	transition: all 0.4s ease-out;
}

main .news .top {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}

main .news .slide-box {
	width: calc(100% + 2px);
	padding: 0 1px;
	margin: 40px 0 50px;
	overflow-x: clip;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

main .news .item,
main .news .item::before,
main .news .item::after {
	border-radius: 20px;
}

main .news .item {
	background: var(--color-white);
	position: relative;
}

main .news .item::before, main .news .item::after {
	content: "";
	display: block;
	pointer-events: none;
	transition: all 0.4s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .news .item::before {
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
	width: 100%;
	height: 100%;
}

main .news .item::after {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	opacity: 0;
	border: 1px solid var(--color-primary);
}

main .news .item a {
	display: block;
	width: 100%;
	height: 100%;
}

main .news .img {
	border-radius: 20px 20px 0 0;
	padding: 33.2295% 0;
	position: relative;
	overflow: hidden;
}

main .news .img img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transition: all 0.6s var(--slow);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .news .img img {
	transition: all 0.4s ease-out;
}

main .news .text {
	padding: 40px;
}

main .news .text * {
	font-size: 1.8rem;
	font-family: var(--font-pretendard);
}

main .news .text .row {
	align-items: center;
}

main .news .text .category {
	color: var(--color-primary);
}

main .news .text .date {
	color: #999;
}

main .news .text hr {
	width: 1px;
	height: 12px;
	background: #d9d9d9;
}

main .news .text h6,
main .news .text p {
	height: 1.3em;
	-webkit-line-clamp: 1;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

main .news .text h6 {
	color: #222;
	font-size: 2.2rem;
	font-weight: 500;
	margin: 20px 0 10px;
}

main .news .text p {
	color: #666;
	font-weight: 300;
}

main .news .item:hover::after {
	opacity: 1;
}

main .news .item:hover .img img {
	transform: scale(1.1) translate(-50%, -50%);
}

main .news .option-box,
main .news .buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

main .news .option-box {
	column-gap: 40px;
}

main .news .progressbar {
	width: 100%;
	height: 2px;
	background: #ddd;
	position: relative;
}

main .news .progressbar span {
	background: #888;
}

main .news .buttons {
	flex-shrink: 0;
	column-gap: 10px;
}

main .news .buttons button {
	width: 80px;
	height: 80px;
}

main .inquiries {
	width: 100%;
	height: 400px;
}

main .inquiries .box,
main .inquiries .row {
	width: 100%;
	height: 100%;
}

main .inquiries .box {
	background-image: url("/img/main/bg_inquiries.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

main .inquiries .row {
	align-items: center;
	justify-content: space-between;
}

main .inquiries h3 {
	color: var(--color-white);
	font-size: calc(var(--font42) + 0.2rem);
	font-weight: 300;
	line-height: 1.4;
}

main .inquiries h3 b {
	font-weight: 600;
}

main .inquiries .link-box {
	column-gap: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}