main .title p {
	font-size: 2.2rem;
	font-weight: 300;
	margin-top: 20px;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	transition: all 0.4s;
}

main .title.on p {
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
	transition: all 0.8s;
}

main h2 {
	color: #111;
	font-size: var(--font84);
	font-weight: 700;
}

main .option-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
}

main .option-box button {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .option-box button svg {
	width: 7px;
	height: 12px;
}

main .option-box .progress-bar {
	width: 100%;
	height: 1px;
	position: relative;
}

main .visual {
	display: flex;
	position: relative;
	width: 100%;
}

@supports (-webkit-touch-callout: none) {
	main .visual .box {
		height: -webkit-fill-available;
	}
}

main .visual .box {
	width: 100%;
	height: 100vh;
	position: relative;
	transition: all 0.8s;
}

main .visual .bg,
main .visual .text-box {
	width: 100%;
	height: 100%;
}

main .visual .slide-box {
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .visual .bg {
	position: absolute;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

main .visual .bg.bg1 {
	background-image: url("/assets/images/main/bg_visual_01_1.jpg");
}

main .visual .bg.bg2 {
	background-image: url("/assets/images/main/bg_visual_01_2.jpg");
}

main .visual .bg.bg3 {
	background-image: url("/assets/images/main/bg_visual_01_3.jpg");
}

main .visual .bg video {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .visual .text-box {
	padding-bottom: 100px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}

main .visual .pagination {
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	column-gap: 30px;
}

main .visual .pagination * {
	color: var(--color-white);
}

main .visual .pagination button {
	font-size: 2rem;
	font-weight: 700;
	opacity: 0.3;
}

main .visual .pagination .swiper-pagination-bullet-active button {
	font-size: 2.625em;
	opacity: 1;
}

main .visual .title-box {
	width: 100%;
	display: grid;
	place-items: end;
	grid-template-areas: "overlap";
	position: relative;
}

main .visual .title-box .title {
	grid-area: overlap;
	text-align: right;
	opacity: 0;
}

main .visual .title-box .title * {
	color: var(--color-white);
}

main .visual .title-box h2 {
	font-size: var(--font120);
	font-weight: 300;
}

main .visual .title-box p {
	font-size: 2.8rem;
	font-weight: 600;
}

main .visual .title.on {
	opacity: 1;
}

main .visual .title.on p {
	transition-delay: 0.8s;
}

main .visual .scroll-box {
	position: absolute;
	left: 30px;
	bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 10px;
}

main .visual .scroll-box img {
	width: 10px;
}

main .visual .scroll-box div {
	width: 20px;
	height: 40px;
	border: 1px solid var(--color-white);
	border-radius: 100px;
	position: relative;
}

main .visual .scroll-box span {
	display: block;
	width: 4px;
	height: 4px;
	background: var(--color-white);
	border-radius: 50%;
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollAni 2.4s infinite;
}

@keyframes scrollAni {
	50% {
		top: calc(100% - 12px);
	}
}

main .visual .iframe {
	position: relative;
	width: 100%;
	height: 56.25vw;
	max-height: 100lvh;
	overflow: hidden;
}
main .visual .iframe::before {
  content: "";
	display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 70%);
  z-index: 1;
}

main .visual .iframe iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 60vw;
	min-height: 110vh;
	min-width: 177.77vh;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

main .visual .iframe video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}


main .visual .more {
  display: none;
  position: absolute;
  bottom: 0;
  color: rgb(var(--rgb-text-sub));
  font-weight: 400;
  white-space: nowrap;
  background-color: transparent;
  transition: color 0.37s, transform 0.7s ease 0.5s, opacity 0.7s ease 0.5s;
}

main .visual .more:hover,
main .visual .more:focus-visible {
  color: rgb(var(--rgb-white));
}

main .visual .btn-play {
	display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: max(calc((100vw - 1760px)/2), 20px);
  bottom: 24px;
  z-index: 1;
  width: 48px;
  height: 48px;
  color: #000;
  font-size: 28px;
	border: 0;
  border-radius: 50%;
  background-color: #0007;
  transition: background-color 0.5s;
	appearance: none;
}
main .visual .btn-play.stop {
	background-color: #000a;
}
main .visual .btn-play::after {
	content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='M5.5 3.5A.5.5 0 0 1 6 4v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5zm5 0A.5.5 0 0 1 11 4v8a.5.5 0 0 1-1 0V4a.5.5 0 0 1 .5-.5z'/></svg>");
}

main .visual .btn-play.stop::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'><path d='M11.596 8.697l-6.363 3.692c-.54.314-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z'/></svg>");
}

main .visual .btn-play:hover,
main .visual .btn-play:focus-visible {
  background-color: #000f;
}

main .company .box {
	margin: var(--gap80) 0;
}

main .company .title {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
}
main .company .title .h2-box {
	flex: 0 0 auto;
}
main .company .title h2:last-child {
	padding-left: var(--gap80);
}

main .company .title p {
	color: #111;
	max-width: 1200px;
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.6;
	text-align: right;
}

main .company .title p .br768 {
	display: none;
}

main .company .item-box {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

main .company .item {
	width: 100%;
	height: 345px;
	opacity: 0;
	transition: all 1s;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .company .item:nth-child(1) {
	transform: translateY(calc(1 * 40px));
}

main .company .item:nth-child(2) {
	transform: translateY(calc(2 * 40px));
}

main .company .item:nth-child(3) {
	transform: translateY(calc(3 * 40px));
}

main .company .item:nth-child(4) {
	transform: translateY(calc(4 * 40px));
}

main .company .item:nth-child(5) {
	transform: translateY(calc(5 * 40px));
}

main .company .inner {
	background: #f8f8f8;
	padding: 100px 40px 40px;
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
  justify-content: space-between;
}

main .company .inner * {
	color: var(--color-blue);
	font-weight: 700;
	transition: all 0.4s;
}

main .company .inner h6 {
	margin: 40px 0 10px;
  font-size: 2.2rem;
	text-wrap: balance;
}

main .company .inner span {
	font-size: 6.2rem;
}

main .company .inner em {
	display: inline-block;
	font-size: 2.4rem;
	margin-left: 10px;
}

main .company .item-box.on .item {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

main .company .item:hover .inner {
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	background: var(--color-black);
}
main .company .item:hover .inner .icon {
	filter: brightness(0) invert(1);
}

main .company .item:hover .inner * {
	color: var(--color-white);
}

main .about {
	width: 100%;
	height: 100vh;
}

main .about .box {
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

main .about .w1760 {
	/* height: auto; */
	max-width: none;
	padding: 0 !important;
}

main .about .contents {
	position: relative;
}

main .about .img-box {
	padding: 24.3475% 0;
	position: relative;
	overflow: hidden;
}

main .about .img-box .img {
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

main .about .img-box .img.on {
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

main .about .img-box img {
	min-width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .about .text-box {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .about .text-box * {
	color: var(--color-white);
}

main .about .text-box .more-hover {
	display: block;
}

main .about .title,
main .about .item-box {
	height: 100%;
}

main .about .title {
	padding: 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

main .about .item-box {
	width: 100%;
	max-width: 39.77275%;
	flex-shrink: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	row-gap: 7%;
}

main .about .item {
	font-size: var(--font42);
	padding: 0 60px;
	position: relative;
}

main .about .item::before {
	content: "";
	display: block;
	width: 3px;
	height: 0;
	background: var(--color-blue);
	transition: all 0.4s;
	position: absolute;
	top: 50%;
	left: -1px;
	transform: translateY(-50%);
}

main .about .item h3 {
	font-weight: 700;
	opacity: 0.8;
	transition: all 0.4s;
}

main .about .item .more {
	height: 0;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition: all 0.4s;
}

main .about .item.on::before {
	height: 100%;
}

main .about .item.on h3 {
	font-size: 1.5235em;
	opacity: 1;
	margin-bottom: 15px;
}

main .about .item.on .more {
	height: auto;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transition-delay: 0.2s;
}

main .products {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

main .products .circle-box,
main .products .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .circle-box {
	width: 80px;
	height: 80px;
	width: 0;
	height: 0;
	opacity: 0;
	transition: all 0.8s;
}

main .products .circle {
	border-radius: 50%;
}

main .products .circle.blue {
	width: 100%;
	background: var(--color-blue);
	padding: 50% 0;
}

main .products .circle.green {
	width: 62.5%;
	background: var(--color-green);
	padding: 31.25% 0;
}

main .products .circle.black {
	width: 25%;
	background: linear-gradient(135deg, #202020 0%, #000 100%);
	padding: 12.5% 0;
}

main .products .circle-box.opacity,
main .products:focus-within .circle-box{
	opacity: 1;
}

main .products .circle-box.on,
main .products:focus-within .circle-box {
	width: 460%;
	padding: 230% 0;
	transform: translate(-50%, -50%);
}

main .products .box {
	padding: 0;
	position: relative;
	transition: all 0.6s;
	width: 100%;
	height: 100%;
}

main .products .box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/main/bg_products.jpg?v=5);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0;
  transition: all 0.6s;
}

main .products .box.padding,
main .products:focus-within .box {
	padding: 8% 0 60px;
}

main .products .box.on::before,
main .products:focus-within .box::before,
main .products .box:focus-within::before {
	opacity: 1;
	z-index: 0;
}

main .products .title {
	text-align: center;
	transition: all 0.8s;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .title * {
	transition: all 0.8s;
}

main .products .title h2 {
	color: #111;
	font-size: 14rem;
	font-weight: 700;
}

main .products .title p {
	color: #333;
	font-size: 2.8rem;
	font-weight: 600;
	margin-top: 20px;
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

main .products .title.on,
main .products:focus-within .title {
	top: 0;
	transform: translate(-50%, 0);
}

main .products .title.on h2,
main .products .title.on p,
main .products:focus-within .title h2,
main .products:focus-within .title p {
	color: var(--color-white);
}

main .products .title.on h2,
main .products:focus-within .title h2 {
	font-size: var(--font84);
}

main .products .title.on p,
main .products:focus-within .title p {
	font-size: 2.2rem;
	font-weight: 300;
}

main .products .slide-wrap {
	margin-top: 80px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(40px);
	transition: all 0.6s;
}

main .products .slide-wrap.on,
main .products:focus-within .slide-wrap {
	opacity: 1;
	pointer-events: inherit;
	transform: translateY(0);
}

main .products .slide-box {
	width: 107.1022%;
	width: 85.2275%;
	position: relative;
}

main .products .item {
	width: 100%;
	height: 345px;
	margin: 0;
	padding: 60px 40px;
	position: relative;
	transition: all 0.6s;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

main .products .swiper-slide>a {
	display: block;
}

main .products .swiper-slide>a:focus-visible .item .plus {
	top: 40px;
	right: 40px;
	opacity: 1;
}

main .products .swiper-slide>a:focus-visible .item .icon {
	opacity: 1;
	filter: inherit;
}

main .products .swiper-slide>a:focus-visible .item .hover-bg {
	width: 60em;
	height: 60em;
}

main .products .swiper-slide>a:focus-visible .item dl * {
	color: var(--color-blue);
}

main .products .item:hover {
	/* margin: 10px; */
	/* width: calc(100% - 20px); */
	/* height: 325px; */
}

main .products .item::before {
  content: "";
  display: block;
  background: #090909;
  border: 1px solid #151515;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main .products .item * {
	transition: all 0.6s;
}

main .products .hover-bg {
	background: #eee;
}

main .products .plus {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0;
	transition: all 0.6s;
}

main .products .plus span {
	background: var(--color-white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .products .plus span:first-child {
	width: 100%;
	height: 2px;
}

main .products .plus span:last-child {
	width: 2px;
	height: 100%;
}

main .products .icon {
	opacity: 0.6;
	filter: brightness(0) invert(1);
}

main .products dl {
	margin-top: auto;
}

main .products dl * {
	color: var(--color-white);
}

main .products dl dt {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 10px;
}

main .products dl dd {
	font-size: 2rem;
	font-weight: 300;
	opacity: 0.6;
}

main .products .option-box {
	margin-top: 110px;
}

main .products .option-box button {
	border: 1px solid rgba(255, 255, 255, 0.1);
}

main .products .option-box button .angle-cls {
	fill: rgba(255, 255, 255, 0.2);
}

main .products .option-box .progress-bar {
	background: rgba(255, 255, 255, 0.1);
}

main .products .option-box .progress-bar span {
	background: var(--color-white);
}



@media screen and (hover: hover) and (min-width: 1024px) {
	main .products .item:hover .hover-bg {
		width: 60em;
		height: 60em;
	}

	main .products .item:hover .plus {
		top: 40px;
		right: 40px;
		opacity: 1;
	}

	main .products .item:hover .icon {
		opacity: 1;
		filter: inherit;
	}

	main .products .item:hover dl * {
		color: var(--color-blue);
	}

	main .products .item:hover dl dd {
		opacity: 1;
	}
}

main .new .box,
main .sns .box {
	margin: var(--gap180) 0;
}

main .new .contents {
	display: grid;
	grid-template-columns: 12.5% 33.5227% 36.93195%;
	justify-content: space-between;
}

main .new .img-box {
	position: relative;
	overflow: hidden;
}

main .new .img-box .img,
main .new .img-box .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

main .new .img-box .img {
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	transition: all 0.4s;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

main .new .img-box .img img {
	max-width: inherit;
}

main .new .img-box .img.on {
	clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
	z-index: 1;
}

main .new .text-box {
	padding-top: 60px;
}

main .new .title p {
	color: #111;
}

main .new .slide-wrap {
	display: flex;
	flex-direction: column;
	margin: 17% 0 0;
}

main .new .text {
	background: var(--color-white);
	padding-top: 20px;
	overflow: hidden;
}

main .new .text>* {
	opacity: 0;
	transition: all 0.4s;
}

main .new .text h5,
main .new .text p {
	font-family: var(--font-pretendard);
	transform: translateY(-20px);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

main .new .text h5 {
	max-height: 3em;
	color: #111;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.5;
	-webkit-line-clamp: 2;
}

main .new .text p {
	max-height: 4.95em;
	color: #555;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.65;
	margin: 40px 0 80px;
	-webkit-line-clamp: 3;
}

main .new .text .desc {
	margin: 40px 0 80px;
}

main .new .text .desc * {
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
	color: inherit !important;
	font-style: inherit !important;
	font-size: inherit !important;
	font-weight: 500 !important;
	font-family: var(--font-family) !important;
	letter-spacing: 0 !important;
	line-height: inherit !important;
	background: transparent !important;
}

main .new .more {
	color: #111;
	transform: translateX(40px);
}

main .new .more .plus span {
	background: var(--color-black);
}

main .new .swiper-slide-active .text>* {
	opacity: 1;
	transition: all 0.6s;
}

main .new .swiper-slide-active .text h5,
main .new .swiper-slide-active .text p {
	transform: translateY(0);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

main .new .swiper-slide-active .text h5 {
	transition-delay: 0.1s;
}

main .new .swiper-slide-active .text p {
	transition-delay: 0.2s;
}

main .new .swiper-slide-active .text .more {
	transform: translateX(0);
	transition-delay: 0.3s;
}

main .new .option-box {
	margin-top: 10%;
}

main .new .option-box button {
	border: 1px solid var(--color-black);
}

main .new .option-box button .angle-cls {
	fill: var(--color-black);
}

main .new .option-box .progress-bar {
	background: #eee;
}

main .new .option-box .progress-bar span {
	background: var(--color-blue);
}

main .new .current-img {
	padding: 61.5405% 0;
}

main .sns .item-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr) 2fr;
	/* grid-template-columns: repeat(3, 1fr); */
	row-gap: 20px;
	column-gap: 20px;
	transform-style: preserve-3d;
	margin-top: calc(var(--gap80) / 2);
}

main .new .slide-wrap .swiper-slide a{
	display: block;
}

main .sns .item-box:has(.big) {
	/* grid-template-columns: repeat(4, 0.163695fr) 0.339285fr; */
}

main .sns a {
	/* display: flex; */
	/* flex-direction: column; */
	position: relative;
	/* padding: 30px 30px 45px; */
	/* color: #fff; */
	/* height: 340px; */
	/* z-index: 1; */
}
main .sns .logo {
	display: block;
	position: relative;
	margin: 30px 0 0;
	width: 80px;
	height: 80px;
	object-fit: contain;
}
main .sns h3 {
	flex: 0 0 auto;
  margin: auto 0 25px;
	color: var(--color-white);
	font-size: var(--font42);
  font-weight: 600;
}
main .sns .more {
	flex: 0 0 auto;
	opacity: 0.7;
}

/* main .sns .img {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
} */
 

main .sns .img {
	min-width: 100%;
  min-height: 100%;
  padding: 50% 0;
  position: relative;
  overflow: hidden;
}
/* main .sns .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
} */
main .sns .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main .sns .big {
	grid-area: 1/5/3/6;
}

main .shortcut .item-box {
	display: flex;
}

main .shortcut .item {
	width: 50%;
	height: 325px;
	position: relative;
}

main .shortcut .item * {
	color: var(--color-white);
}

main .shortcut .item::before {
	content: "";
	width: 50vw;
	height: 100%;
	position: absolute;
	top: 50%;
	z-index: -1;
	transform: translateY(-50%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

main .shortcut .item a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

main .shortcut .item .eng-text {
	font-size: 2rem;
	font-weight: 700;
}

main .shortcut .item h3 {
	font-size: var(--font42);
	font-weight: 600;
	margin: 10px 0 25px;
}

main .shortcut .item .more {
	opacity: 0.5;
}

main .shortcut .item:first-child {
	padding-left: 80px;
}

main .shortcut .item:first-child::before {
	background-image: url("/assets/images/main/bg_shortcut_01_1.jpg");
	right: 0;
}

main .shortcut .item:last-child {
	padding-left: 60px;
}

main .shortcut .item:last-child::before {
	background-image: url("/assets/images/main/bg_shortcut_01_2.jpg");
	left: 0;
}