@charset "utf-8";

/* ========================================
   CSS Variables
======================================== */
:root {
    --white: #fff;
    --blackbg: #222;
    --primary-color: #6b26fe;
	--primary-dark:#2c244d;;
    --text-dark: #333;
    --text-gray: #777;
    --text-light: #999;
    --border-gray: #ddd;
    --bg-light: #efefef;
}

/* ========================================
   Utility Classes
======================================== */

.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mt4 {
    margin-top: 4rem;
}

.mt5 {
    margin-top: 5rem;
}

.inner {
	width:100%;
	max-width:1420px;
	margin:0 auto;
}

@media screen and (max-width: 1420px) {
	.inner {
		padding:0 1rem;
	}
}

.pc_only {
	display:block;
}

.m_only {
	display:none;
}

@media screen and (max-width: 800px) {
	.m_only  {
		display:block;
	}
	.pc_only {
		display:none;
	}
}

@keyframes move-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ========================================
   Header Styles
======================================== */
#hd {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    min-width: 320px;
}

#hd_wrapper .hd_inner {
	width:100%;
	max-width:1760px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:3rem 0;
	height:10rem;
	margin:0 auto;
}

/* Global Navigation */
#hd_wrapper.open .gnb_box.on,
#hd.open .gnb_box,.footer .footer-container,
#hd_wrapper.open .right_box .global_box
{
    display: none;
}

#hd_wrapper .gnb_box {
	position: absolute;
    left: 50%;
    width: fit-content;
    text-align: center;
	transform: translateX(-50%);
}

#hd_wrapper .gnb_box .main_nav {
    display: flex;
    gap: 7rem;
}

#hd_wrapper .gnb_box .main_nav li {
	 position: relative;
}

#hd_wrapper .gnb_box .main_nav > li > a {
	display: block;
	width: max-content;
	height: 7rem;
    line-height: 7rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
}

/* Right Box */
#hd_wrapper .right_box {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Global Box */
#hd_wrapper .global_box {
    position: relative;
}

#hd.open .global_box {
	display:none;
}

#hd_wrapper .global_box button {
	width:50px;
	height:50px;
}

#hd_wrapper .global_box ul {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
	display: none;
    width: 100%;
	border-radius:1rem;
    background-color: #f3f7ff;
	border:1px solid #333;
    transition:all 1s;
	padding:1rem;
}

#hd_wrapper .global_box ul.on {
    display: block;
}

#hd_wrapper .global_box ul li a {
    display: block;
    font-size: 1.3rem;
    text-align: center;
    color:#333;
	letter-spacing: -0.02em;
	line-height:1.8;
}

#hd_wrapper .global_box ul li:first-child a {
    margin-top: 0;
}

#hd_wrapper .global_box ul li:hover a {
	text-decoration:underline;
	font-weight:600;
}

.dropdown {
	display:none;
    position: absolute;
    top: 100%;
    left: 50%;
	width: max-content;
    padding: 20px 25px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 1000;
	background:#222;
}

.dropdown > li > a {
    display: block;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
	color:#888;
	letter-spacing: -0.02em;
	line-height:2.5;
}

.dropdown a:hover {
    color:var(--white);
}

.main_nav li:hover .dropdown {
  display:block;
}

@media screen and (max-width: 1500px) {
	#hd_wrapper .gnb_box .main_nav {
		gap:30px;
	}
}

@media screen and (max-width: 1280px) {
	#hd_wrapper .gnb_box ul {
		gap: 20px;
	}
}

@media screen and (max-width: 1024px) {
	#hd_wrapper .gnb_box {
        display: none;
    }

	#hd.open .right_box .allmenu_box {
		display:block;
	}

	#hd #logo > a > img {
		width:130px;
	}
}

@media screen and (max-width: 800px) {
	#hd_wrapper .inner {
		gap:1.5rem;
	}
	#hd_wrapper .right_box {
		gap:8px;
	}
	#hd_wrapper .right_box .search_box {
	display:none;'
	}
}

/* 전체메뉴 */
#hd .allmenu_box #all-menu-btn {
    position: relative;
    width: 4rem;
    height: 3rem;
    border: none;
    background: none;
}

#hd .allmenu_box #all-menu-btn .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0.3em;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

#hd .allmenu_box #all-menu-btn .bar1 {
	margin-top:-.9rem;
}

#hd .allmenu_box #all-menu-btn .bar3 {
	 margin-top:.9rem;
}

#hd .allmenu_box #all-menu-btn.open .bar1 {
   margin-top:0;
    -webkit-transform:translate(-50%, -50%) rotate(-45deg);
    -moz-transform:translate(-50%, -50%) rotate(-45deg);
    -o-transform:translate(-50%, -50%) rotate(-45deg);
    transform:translate(-50%, -50%) rotate(-45deg);
}

#hd .allmenu_box #all-menu-btn.open .bar2 {
  opacity: 0;
}

#hd .allmenu_box #all-menu-btn.open .bar3 {
    margin-top:0;
    -webkit-transform:translate(-50%, -50%) rotate(45deg);
    -moz-transform:translate(-50%, -50%) rotate(45deg);
    -o-transform:translate(-50%, -50%) rotate(45deg);
    transform:translate(-50%, -50%) rotate(45deg);
}

#hd.on:not(.open) {
    background: rgba(0, 0, 0, 0.95);
}

#hd.on {
    background: rgba(0, 0, 0, 0.95);
	z-index:400;
}

/* ========================================
   All Menu Desktop
======================================== */
#all-menu {
    position:fixed;
	top: 0;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: 100%;
    padding:30rem 0 0 3rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(0.8rem);
}

#all-menu nav {
    height: 100%;
    text-align: center;
    overflow-y: auto;
	padding-top: 9vh;
}

#all-menu nav a {
    color: var(--white);
}

#all-menu .depth1-ul {
    display: flex;
	justify-content: center;
	row-gap: 1rem;
}

#all-menu .depth1-ul > li {
	width: 300px;
    text-align: center;
}

#all-menu .depth1-ul > li > a {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--white);
}

#all-menu .depth2-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

#all-menu .depth2-ul > li {
	text-align:center;
}

#all-menu .depth2-ul > li > a {
    font-size: 1.7em;
    font-weight: 500;
    color: #888;
    transition: all 0.3s;
}

#all-menu .depth2-ul > li > a:hover {
	color:var(--white);
}

@media screen and (max-width: 1440px) {
	#all-menu .depth1-ul > li {
		width:250px;
	}
}

@media screen and (max-width: 1023px) {

    #all-menu {
        display: none !important;
    }
	#all-menu-m .close-btn {
		display:none;
	}
}

@media screen and (min-width: 1024px) {
    #all-menu-m {
        display: none !important;
    }
}
/* ========================================
   All Menu Mobile
======================================== */
#all-menu-m {
	display:none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    min-width: 320px;
}

#all-menu-m .dummy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#all-menu-m .inner-box {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 5rem;
    padding:160px 30px 0 30px;
    background: rgba(0,0,0,0.8);
    overflow-x: hidden;
}

#all-menu-m .inner-box .m_logo {
	display:none;
    position: absolute;
    top: 3em;
    left: 4.5em;
    z-index: 9999;
    width: 8.3rem;
    height: 2.1rem;
	cursor:pointer;
}

#all-menu-m .inner-box .m_logo a {
	display:inline-block;
	width:130px;
}

#all-menu-m .inner-box #close-btn {
    position: absolute;
    top: 2em;
    right: 1em;
    z-index: 9999;
    width: 4rem;
    height:3rem;
	cursor:pointer;
}

#all-menu-m .inner-box #close-btn.open {
 display:none;
}

#all-menu-m .inner-box #close-btn .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0.3rem;
    background: var(--white);
	cursor:pointer;
}

#all-menu-m .inner-box #close-btn .bar1 {
    transform: translate(-50%, -50%) rotate(-45deg);
    background: var(--white);
}

#all-menu-m .inner-box #close-btn .bar2 {
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--white);
}

#all-menu-m .inner-box nav .depth1-ul > li:not(:last-child) {
    margin-bottom: 40px;
}

#all-menu-m .inner-box nav .depth1-ul > li > a,
#all-menu-m .inner-box nav .depth1-ul > li > button {
    display: block;
    width: 100%;
    font-size: 2.4em;
    text-align: left;
	font-weight:700;
    color: var(--white);
}

#all-menu-m .inner-box nav .depth1-ul > li > button {
    position: relative;
    padding-right: 3.5em;
}

#all-menu-m .inner-box nav .depth1-ul > li > button:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 2.5rem;
    height: 1.4rem;
    margin-top: -0.7rem;
    background: url("../img/all-menu-arrow-ico.png") no-repeat center right / 100% auto;
    content: "";
    transition: all 0.3s;
}

#all-menu-m .inner-box nav .depth1-ul > li > button.on:after {
    transform: rotate(180deg);
}

#all-menu-m .inner-box nav .depth2-ul {
    display: none;
    margin-top: 30px;
    padding: 1.875rem;
    border-radius: 2rem;
    background: #333;
}

#all-menu-m .inner-box nav .depth2-ul > li:not(:last-child) {
    margin-bottom: 30px;
}

#all-menu-m .inner-box nav .depth2-ul > li > a {
    display: block;
    font-size: 1.7em;
    color: #888;
    cursor: pointer;
    transition: all 0.3s;
}

#all-menu-m .inner-box nav .depth2-ul > li > a:hover {
    color: var(--white);
}

#all-menu-m .inner-box .link-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#all-menu-m .inner-box .link-box a {
    width: fit-content;
    font-size: 2.6rem;
    color: #ea0121;
    padding-right: 3.5rem;
    background: url("../img/all-menu-link-arrow-ico.png") no-repeat center right / 2.5rem auto;
}

@media screen and (max-width: 1024px) {

	#all-menu-m .inner-box .m_logo {
		left: 3em;
		top:3.5em;
	}

	#all-menu-m .inner-box #close-btn {
		top: 3.5em;
		right: 1em;
	}

	#all-menu-m .inner-box .m_logo img {
		width:130px;
	}
}

/* ========================================
	메인 공통
======================================== */

section .txtbox h3 {
    font-size: 4.5em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

section .txtbox h3 span {
	color:var(--primary-color);
}

section .txtbox p {
    font-size: 2em;
	color:#777;
    letter-spacing: -0.02em;
    line-height: 1.6;
}

section .txtbox p.theme_color {
	color:var(--primary-color);
}

@media screen and (max-width: 1280px) {
	section .txtbox h3 {
		font-size: 3.5em;
	}
}

/* ========================================
   Main Section 1 - Hero Slider
======================================== */
#main-section1 {
    position: relative;
}

#main-section1 .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 100%;
    color: var(--white);
    text-align: center;
    transform: translate(-50%, -50%);
}

#main-section1 .text-box h2 {
    font-size: 6em;
    font-weight: 700;
    line-height: 1.4;
	letter-spacing:-0.02em;
}

#main-section1 .text-box p {
    margin-top: 3em;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.85;
	letter-spacing:-0.02em;
}

#main-section1 .swiper-slide {
    position: relative;
    height: 100vh;
    max-height:74em;
	min-height:50em;
}

#main-section1 .swiper-slide .img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 32px);
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    transition: transform 5s linear;
	border: 16px solid transparent;
	border-top:unset;
	border-bottom-left-radius: 325px;
	background-clip: padding-box, border-box;
	background-origin: border-box;
}

#main-section1 .swiper-slide-active .img-box {
    transform: translate(-50%, -50%) scale(1);
}

#main-section1 .swiper-slide.slide-1 .img-box {
    background-image: url("/theme/basic/img/main_slide_01.png"), linear-gradient(90deg, #6926fa 0%, #2c244d 100%); ;
}

#main-section1 .swiper-slide.slide-2 .img-box {
    background-image: url("/theme/basic/img/main_slide_02.png"), linear-gradient(90deg, #6926fa 0%, #2c244d 100%);;
}

#main-section1 .swiper-slide.slide-3 .img-box {
    background-image: url("/theme/basic/img/main_slide_03.png"), linear-gradient(90deg, #6926fa 0%, #2c244d 100%);;
}

#main-section1 .swiper-slide.slide-4 .img-box {
    background-image: url("/theme/basic/img/main_slide_04.png"), linear-gradient(90deg, #6926fa 0%, #2c244d 100%);;
}

#main-section1 .txt_box {
	  position: absolute;
	  bottom:150px;
	  left:250px;
	  width:100%;
	  max-width:1420px;
	   z-index: 11;
}

#main-section1 .txt_box p {
	font-size: 2.4em;
    font-weight: 500;
    letter-spacing: -0.02em;
   color:var(--white);
}

#main-section1  .txt_box h3 {
	margin-top:5.5rem;
	color:var(--white);
	font-size: 4.6em;
	 font-weight: 400;
    letter-spacing: -0.02em;
	line-height:1.3;
}

#main-section1 .main-control-box {
	position: absolute;
	  bottom:150px;
	  right:250px;
	  width:100%;
	  max-width:1420px;
	  display:flex;
	  gap:2rem;
	  justify-content: end;
	   z-index: 11;
}

#main-section1 .play-pause-btn {
	display: flex;
    justify-content: center;
    align-items: center;
	width:28px;
	height:28px;
	border:1px solid var(--white);
	border-radius:50%;
}

#main-section1 .play-pause-btn .pause-icon {
	display:none;
}

#main-section1 .swiper-pagination-bullets {
	width:auto;
	left:unset;
	right:50px;
}

#main-section1 .main-control-box .pagination-dot .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 1);
	opacity:0.3;
}

#main-section1 .main-control-box .pagination-dot .swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

@media screen and (max-width: 1400px) {

	#main-section1 .swiper-slide {
		max-height:52em;
	}

	#main-section1 .swiper-slide .img-box {
		width:calc(100% + 32px);
		border-bottom-left-radius: 100px;
	}

	#main-section1 .txt_box {
		left:10px;
		bottom:unset;
		top:14rem;
	}

	#main-section1 .txt_box h3 {
		margin-top:3.5rem;
		font-size:2.8rem;
	}

	#main-section1 .txt_box p {
		font-size:1.8rem;
	}

	#main-section1 .main-control-box {
		max-width:400px;
		right:unset;
		left:16rem;
		justify-content:start;
	}
	#main-section1 .swiper-pagination-bullets {
		right:unset;
		left: -15rem;
	}
	#main-section1 .play-pause-btn {
		margin-left:60px;
	}

}

@media screen and (max-width: 800px) {

	#main-section1 .swiper-slide {
		max-height:52em;
	}
}


/* ========================================
   Main Section 2 - Products
======================================== */
#main-section2 {
	position:relative;
    padding: 15em 0 22em 0;
    overflow: hidden;
}

#main-section2 .txtbox {
    text-align: center;
}

#main-section2 .txtbox h3 {
    font-size: 4.5em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

#main-section2 .txtbox p {
    font-size: 2em;
	color:#777;
    letter-spacing: -0.02em;
    line-height: 1.6;
	font-weight:500;
	text-transform: uppercase;
}

#main-section2 .txtbox p.theme_color {
	color:var(--primary-color);
}

#main-section2 .info_box {
    margin-top: 7em;
}

#main-section2 .info_box ul {
	display:flex;
	flex-wrap:wrap;
	gap:40px 35px;
}

#main-section2 .info_box ul li  {
	width:calc((100% - 70px) / 3);
}

#main-section2 .info_box ul li .img_box {
	border-radius:2rem;
	overflow:hidden;
}

#main-section2 .info_box ul li .img_box img {
	width:100%;
	height:100%;
}


#main-section2 .info_box .desc_box {
	text-align:center;
	margin-top:25px;
}

#main-section2 .info_box .desc_box p {
	font-size: 2.2em;
	color:#333;
    letter-spacing: -0.02em;
	font-weight: 600;
}

@media screen and (max-width: 1024px) {
	#main-section2 .info_box ul li {
		width:calc((100% - 70px) / 2);
	}
}

@media screen and (max-width: 800px) {
	#main-section2 .info_box ul li {
		width:100%;
	}
}

/* ========================================
   Main Section 3 - Slider Section
======================================== */
#main-section3 {
	overflow:hidden;
    padding: 120px 0 22rem 0;
    background:#f4f2fd;
	position:relative;
}

#main-section3::after {
	display:block;
	position:absolute;
	bottom:-35px;
	left:160px;
	content:'Montis, Technology that Changes the World';
	font-size:12.5rem;
	color:var(--white);
	font-weight:700;
	letter-spacing:-0.01em;
	white-space: nowrap;
	animation: move-left  40s linear infinite;
}

#main-section3 .inner {
	display:flex;
	justify-content: space-between;
    align-items: center;
}

#main-section3 .more_btn_box .more_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px;
	height:58px;
    gap: 10px;
    padding: 20px 25px;
    border: 1px solid var(--text-dark);
    border-radius: 2.9rem;
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-dark);
}

#main-section3 .more_btn_box .more_btn::after {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/theme/basic/img/arrow_icon_black.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    transition: all 0.3s ease;
}

#main-section3 .more_btn_box .more_btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

#main-section3 .more_btn_box .more_btn:hover::after {
    background-image: url('/theme/basic/img/arrow_icon.png');
}

#main-section3 .swiper {
	overflow:unset;
}

#main-section3 .swiper-box {
    position: relative;
	margin-top:75px;
}

#main-section3 .swiper-inner-box {
	width:100%;
	max-width:1420px;
	margin: 0 auto;
}

#main-section3 .swiper-slide {
    position: relative;
    background-color: #fff;
    border-radius: 2rem;
    width: 300px !important;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 4px solid transparent;
	transition: all 0.3s ease;
	box-shadow: 0 0 15px 1.5px rgba(0, 51, 255, 0.1);
}

#main-section3 .swiper-slide .slide-content {
	text-align:center;
}

#main-section3 .swiper-slide .slide-content .slide-img {
	text-align:center;
	height:200px;
	line-height:200px;
}

#main-section3 .swiper-slide .slide-content p {
	height:100px;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: -0.02em;
    color:#333;
	line-height:1.5;
}

#main-section3 .swiper-slide .slide-content p .gray {
    color:#999;
}

#main-section3 .swiper-slide:hover {
	border: 4px solid var(--primary-color);
}

#main-section3 .swiper-slide:hover .slide-content p {
	color:var(--primary-color);
}

@media screen and (max-width: 1280px) {
	#main-section3 {
		background-position:right -275em bottom -3rem;
	}
	#main-section3 .inner  {
		flex-wrap:wrap;
		row-gap: 4rem;
	}
	#main-section3 {
		padding:8rem 0 15rem 0;
	}


	#main-section3 .swiper-box {
		padding:0 1rem;
	}
}



/* ========================================
   Main Section 4 - Info Section
======================================== */
#main_section4 {
    padding: 150px 0;
}

#main_section4 .info_box {
    margin-top: 120px;
}

#main_section4 .info_box ul {
    display: flex;
    gap: 15px;
}

#main_section4 .info_box ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 15px) / 3);
    padding:3em 3.5em;
    border-radius: 2em;
    background: var(--bg-light);
    cursor: pointer;
}

#main_section4 .info_box ul li p {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-dark);
}

#main_section4 .info_box ul li .arrow_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-dark);
}

#main_section4 .txtbox p {
	font-weight:500;
}

#main_section4 .info_box ul li:hover .arrow_box {
    background: var(--primary-color);
}

#main_section4 .info_box ul li:hover .arrow_box img {
    transform: rotate(-45deg);
    transition: all 0.3s;
}

@media screen and (max-width: 1024px) {

	 #main_section4 {
        padding:12em 0;
    }

	#main_section4 .txtbox h5 {
		font-size: 2.7em;
	}

	#main_section4 .info_box {
		margin-top:80px;
	}

    #main_section4 .info_box ul {
        flex-wrap: wrap;
        gap: 20px;
		justify-content: center;
    }

    #main_section4 .info_box ul li {
        width: 100%;

    }
}

/* ========================================
   Footer Styles
======================================== */
.footer {
    position: relative;
    padding: 40px 80px;
    background-color: #222;
    color: #ffffff;
	border:1px solid #030000;
}

.footer .footer-container {
    width: 100%;
	max-width:1760px;
	margin:0 auto;
	    display: flex;
		flex-direction: column;
}

.footer .footer-container .top {
	display: flex;
    justify-content: space-between;
}

.footer .footer-links a {
    font-size: 1.8em;
    font-weight: 500;
    color: var(--white);
}

.footer .company-info {
    font-size: 1.6em;
    color: #cccccc;
}

.footer .company-info .info-table {
	margin-top:3.5rem;
}

.footer .info-row {
    display: flex;
    margin-bottom: 20px;
    color: #777;
}

.footer .info-row:last-child {
    margin-bottom: 0;
}

.footer .info-label {
    width:fit-content;
	min-width:150px;
	font-weight: normal;
    flex-shrink: 0;
	font-size:1.6rem;
	color:#888;
}

.footer .info-content {
    flex: 1;
}

.footer .copyright {
    margin-top:3rem;
}

.footer .copyright p {
    font-size: 1.6rem;
    color: #777;
    letter-spacing: -0.02em;
}

.footer .right {
	text-align:right;
}

.footer .right h2 {
	 font-size: 1.8em;
	 letter-spacing: -0.02em;
	  font-weight:500;
}

.footer .right .tel {
	margin-top:2rem;
	 font-size: 2.8em;
	 font-weight:700;
	letter-spacing: -0.02em;
}

.footer .right .time {
	display:inline-block;
	margin-top:2rem;
	color:#888;
	 font-size: 1.6em;
	 letter-spacing: -0.02em;
}


.footer .right .catalogBox {
	margin-top:4rem;
}

.footer .right .catalogBox a {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 200px;
    height: 5rem;
    text-align: center;
	color:#fff;
	border:1px solid #fff;
	border-radius:2.5rem;
	font-size:1.6rem;
	margin-left:auto;
}

.footer .right .catalogBox a:hover {
	color:var(--white);
	background:var(--primary-color);
	border:unset;
}

@media screen and (max-width: 1760px) {
	.footer .footer-container {
		padding:0 1rem;
	}
}

@media screen and (max-width: 1420px) {
	.footer .footer-container {
		flex-wrap:wrap;
		justify-content: end;
		row-gap:2rem;
	}
}

@media screen and (max-width: 1280px) {
	footer .footer-info {
		flex:none;
	}

	.footer .footer-info .top {
		flex-wrap:wrap;
	}
}

@media screen and (max-width: 1024px) {

	.footer {
		padding:4rem  1rem;
	}

	.footer .footer-container .top {
		flex-wrap:wrap;
	}
	.footer .right {
		margin-top:4rem;
		text-align:left;
	}
}

@media screen and (max-width: 800px) {
}