@charset "utf-8";
@import "font.css";
:root {
    --engFont: 'Lexend', 'Noto Sans KR', sans-serif;
    --koFont: 'NEXON Lv1 Gothic OTF', 'Noto Sans KR', sans-serif;
    --mainColor: #FF281E;
    --subColor: #FFE68C;
    --brownColor: #301900;
    --colorBlack: #222;
    --grayBg: #F0ECD2;
    --borderR: 15px;
}
/* reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333;
}
img {
    vertical-align: top;
    display: block;
}

/* common */
.container {
    max-width: 1400px;
    width: 100%;
    padding: 0 25px;
    margin: 0 auto;
}
.section {
    padding: 160px 0;
    /* 섹션별 여백은 모두 같이 주는게 좋음
    보통 100~160px */
}
/* typography */
h3 {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--engFont);
    letter-spacing: 0;
    line-height: 1.2;
    word-break: keep-all;
    color: #222;
}
h4 {
    font-size: 22px;
    font-family: var(--koFont);
    font-weight: 400;
    letter-spacing: -0.733333px;
    line-height: 1.6;
    word-break: keep-all;
    color: #222;
}
h5 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.733333px;
    line-height: 1.4;
    word-break: keep-all;
    color: #222;
}
.txt {
    font-size: 1rem;
    letter-spacing: -0.666667px;
    line-height: 1.8;
    word-break: keep-all;
}
.date {
    font-size: 15px;
    letter-spacing: 0;
    font-family: var(--engFont);
    color: rgba(34, 34, 34, 0.5);
    line-height: 1.2;
    margin: 12px 0 0;
}

/* btns */
.moreBtn {
    display: inline-block;
    text-align: left;
    width: 200px;
    /* height: 56px; */
    padding: 0 30px;
    border-radius: 56px;
    border: 2px solid #222;
    transition: all .3s linear;
}
.moreBtn:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
}
.moreBtn.w {
    border: 2px solid #fff;
}
.moreBtn.w:hover {
    background-color: #fff;
}
.moreBtn span {
    display: block;
    width: 100%;
    line-height: 52px;
    position: relative;
    transition: all .3s linear;
}
.moreBtn span svg {
    width: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s linear;
    fill: #222;
}
.moreBtn:hover span {
    color: #fff;
}
.moreBtn.w span svg {
    fill: #fff;
}
.moreBtn.w:hover span svg {
    fill: var(--mainColor);
}
.moreBtn.w span {
    color: #fff;
}
.moreBtn.w:hover span {
    color: var(--mainColor);
}
.moreBtn:hover span svg {
    fill: #fff;
}
html {
    font-size: 18px;
}
body {
    font-family: 'Pretendard', 'NEXON Lv1 Gothic OTF', 'Noto Sans KR', 'Lexend', 'Malgun Gothic', 'Malgun Gothic', sans-serif;
}

/* window-mask */
.window-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.65);
    z-index: 1000;
}

/* modal */
.window-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    border-radius: var(--borderR);
    overflow: hidden;
    z-index: 9999;
}
.window-content .sw-modal {
    width: 100%;
    height: 500px;
}
.window-content .sw-modal .swiper-slide {}
.window-content .sw-modal .swiper-slide a {}
.window-content .sw-modal .swiper-slide a img {
    width: 100%;
}

.window-content .swiper-prev,
.window-content .swiper-next {
    position: absolute;
    top: 250px;
    /* transform: translateY(-50%); */
    width: 30px;
    height: 30px;
    z-index: 9999;
    cursor: pointer;
}
.window-content .swiper-prev {
    left: 10px;
}
.window-content .swiper-next {
    right: 10px;
}
.window-content .swiper-prev img,
.window-content .swiper-next img {
    width: 100%;
    height: 100%;
}

.window-content .swiper-pagination-modal {
    height: 40px;
    background-color: var(--mainColor);
    padding: 15px 0;
}
.window-content .swiper-pagination-bullets {
    /* display: inline-block; */
    text-align: center;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.window-content .swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
    transition: all .3s linear;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}
.window-content .swiper-pagination-bullet-active {
    background-color: #fff;
}

.window-content .modal-btn {}
.window-content .modal-btn ul {
    display: flex;
}
.window-content .modal-btn ul li:first-child {
    border-right: 0.5px solid rgba(255, 255, 255, .2) ;
}
.window-content .modal-btn ul li {
    width: 50%;
    text-align: Center;
    border-top: none;
    background: #222;
}
.window-content .modal-btn ul li a {
    display: block;
    font-size: 13.3333px;
    color: #fff;
    letter-spacing: -0.333333px;
    padding: 12px 0;
    width: 100%;
}

/* quick-menu */
.quick-menu {
    position: fixed;
    right: 60px;
    bottom: 10%;
    z-index: 999;
    text-align: center;
    background-color: rgba(0, 0, 0, .88);
    border-radius: var(--borderR);
    padding: 26px 10px;
}
.quick-menu ul li {
    padding: 0 0 20px;
}
.quick-menu ul li:last-child {
    padding: 0;
}
.quick-menu ul li.top-btn {
    margin: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.quick-menu ul li.top-btn a {
    font-family: 'Lexend', 'NEXON Lv1 Gothic', 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    letter-spacing: 0;
    font-weight: 700;
}
.quick-menu ul li a {
    display: block;
    font-size: 14px;
    letter-spacing: -0.466667px;
    line-height: 1.2;
    color: #fff;
    transition: all .3s linear;
}
.quick-menu ul li:hover a {
    color: var(--mainColor);
}
.quick-menu ul li a span {
    display: block;
    margin: 0 auto 8px;
    transition: all .3s linear;
}

.quick-menu ul li.top-btn a span {
    width: 13px;
    height: 13px;
    background: url(../images/top_icon.svg) no-repeat center / auto 100%;
}
.quick-menu ul li.top-btn:hover a span {
    background: url(../images/top_icon_on.svg) no-repeat center / auto 100%;
}
.quick-menu ul li.instagram a span {
    width: 28px;
    height: 28px;
    background: url(../images/instagram_icon.svg) no-repeat center / auto 100%;
}
.quick-menu ul li.instagram:hover a span {
    background: url(../images/instagram_icon_on.svg) no-repeat center / auto 100%;
}
.quick-menu ul li.inquiry a span {
    width: 32px;
    height: 32px;
    background: url(../images/inquiry_icon.svg) no-repeat center / auto 100%; 
}
.quick-menu ul li.inquiry:hover a span{
    background: url(../images/inquiry_icon_on.svg) no-repeat center / auto 100%; 
}
.quick-menu ul li.proposal a span {
    width: 34px;
    height: 34px;
    background: url(../images/proposal_icon.svg) no-repeat center / 100% auto;
}
.quick-menu ul li.proposal:hover a span {
    background: url(../images/proposal_icon_on.svg) no-repeat center / 100% auto;
}
.quick-menu ul li.consultation a span {
    width: 34px;
    height: 34px;
    background: url(../images/consultation_icon.svg) no-repeat center / 100% auto;
}
.quick-menu ul li.consultation:hover a span {
    background: url(../images/consultation_icon_on.svg) no-repeat center / 100% auto;
}

/* mobile-menu */
.mb-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 22px 3%;
    overflow-y: auto;
    /* transition: right .2s linear; */
}
.mb-menu.active {
    right : 0;
}
.mb-menu .mb-menu-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}
.mb-menu .mb-menu-title .mb-logo {}
.mb-menu .mb-menu-title .mb-logo a {
    display: block;
    width: 180px;
}
.mb-menu .mb-menu-title .mb-logo a img {
    width: 100%;
}
.mb-menu .mb-menu-title .mb-btn-close {
    display: block;
    width: 30px;
    height: 30px;
}
.mb-menu .mb-menu-title .mb-btn-close span {
    font-size: 30px;
    color: #222;
}
.mb-menu .mb-main-menu {}
.mb-menu .mb-main-menu > li {}
.mb-menu .mb-main-menu > li .mb-menu-list {
    display: block;
    padding: 15px 0;
    font-size: 20px;
    color: #222;
    font-weight: 700;
    letter-spacing: -0.4px;
    width: 100%;
    position: relative;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active {
    color: var(--mainColor);
}
.mb-menu .mb-main-menu > li .mb-menu-list span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: #222;
    font-size: 30px;
    opacity: 0.7;
    transition: all 0.3s linear;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active span {
    transform: translateY(-50%) rotate(180deg);
    color: var(--mainColor);
}
.mb-menu .mb-main-menu > li .mb-submenu {
    padding-bottom: 20px;
    display: none;
}
.mb-menu .mb-main-menu > li .mb-submenu li {
    padding: 8px 0;
}
.mb-menu .mb-main-menu > li .mb-submenu li a {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.46667px;
    color: rgba(34, 34, 34, 0.7);
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 112px;
    overflow: hidden;
    background-color: #fff;
    z-index: 999;
    transition: all 0.4s;
}
.header.fixed {
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.header.nofixed {
    top: -200px;
}

.header.down {
    height: 340px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.header::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: 112px;
    opacity: 0;
    transition: all .4s;
}
.header.down::before {
    opacity: 1;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo */
.header .logo {}
.header .logo a {}
.header .logo a img {
    width: 240px;
}

/* nav */
.header nav {}
.header nav .mainMenu {
    font-size: 0;
}
.header nav .mainMenu > li {
    display: inline-block;
    padding: 0 22px;
    vertical-align: top;
    position: relative;
}
.header nav .mainMenu > li > a {
    display: block;
    font-size: 20px;
    color: #111;
    letter-spacing: -0.466667px;
    padding: 44px 16px;
    transition: all 0.3s linear;
    position: relative;
}
.header nav .mainMenu > li > a::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--mainColor);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all .3s linear;
}
.header nav .mainMenu > li:hover a::before {
    width: 100%;
}
.header nav .mainMenu > li:hover a {
    color: var(--mainColor);
}
.header nav .mainMenu li .subMenu {
    position: absolute;
    left: 0;
    /* top: 100%; */
    top: 112px;
    width: 100%;
    padding: 22px 0;
    text-align: center;
}
.header nav .mainMenu li .subMenu li {
    padding: 0 0 12px;
}
.header nav .mainMenu li .subMenu li a {
    display: block;
    font-size: 16px;
    color: #777;
    letter-spacing: -0.466667px;
    line-height: 1.5;
    word-break: keep-all;
    transition: all 0.3s linear;
}
.header nav .mainMenu li .subMenu li:hover a {
    color: var(--mainColor);
    font-weight: 700;
}
/* menuBtn */
.header .menuBtn {
    display: none;
    width: 22px;
    height: 22px;
    position: relative;
}
.header .menuBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #222;
    position: absolute;
    left: 0;
}
.header .menuBtn span:nth-child(1) {top: 2px;}
.header .menuBtn span:nth-child(2) {top: 11px;}
.header .menuBtn span:nth-child(3) {top: 20px;}

/* main 영역 */
/* visual 영역 */
.visual {
    height: 100vh;
    position: relative;
}
.visual .sw-visual {
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* visual-pc */
.visual .sw-visual .swiper-slide .visual-bg-pc {
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-pc h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-pc h2 img {
    width: 52.5%;
}
.visual .sw-visual .swiper-slide .visual-bg-pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* visual-mobile */
.visual .sw-visual .swiper-slide .visual-bg-mb {
    display: none;
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-mb h2 {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
}
.visual .sw-visual .swiper-slide .visual-bg-mb h2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual .sw-visual .swiper-slide .visual-bg-mb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual .sw-visual .swiper-pagination-bullets {
    top: 152px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    text-align: right;
    max-width: 1380px;
}
.visual .sw-visual .swiper-pagination-bullet {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 15px 0 0;
    background-color: #fff;
    opacity: 0.25;
    transition: all .3s linear;
}
.visual .sw-visual .swiper-pagination-bullet-active {
    opacity: 1;
}

.visual .go-brand-btn {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    font-size: 0;
    z-index: 99;
}
.visual .go-brand-btn a {}
.visual .go-brand-btn a span {
    color: #fff;
    font-size: 50px;
    transition: all .3s linear;
}
.visual .go-brand-btn:hover a span {
    color: var(--mainColor);
}

/* brand 영역 */
.brand {}
.brand .container {}
.brand .brand-img {
    max-width: 527px;
    margin: 0 auto;
}
.brand .brand-img img {
    width: 100%;
}
.brand .brand-desc {
    text-align: center;
    color: var(--colorBlack);
}
.brand .brand-desc h4 {
    padding: 30px 0 14px;
}
.brand .brand-desc p.txt {
    color: rgba(34, 34, 34, 0.7);
}

.brand .brand-btn {
    padding-top: 60px;
    text-align: center;
}


/* menu 영역 */
.menu {
    background-color: var(--mainColor);
}
.menu .container {}
.menu .menu-title {}
.menu .menu-title .menu-img {
    width: 60px;
    margin: 0 auto 15px;
}
.menu .menu-title .menu-img img {
    width: 100%;
    object-fit: cover;
}
.menu .menu-title h3 {
    color: #fff;
    text-align: center;
}

.menu .menu-tab-btns {
    margin-top: 15px;
}
.menu .menu-tab-btns ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu .menu-tab-btns ul li {}
.menu .menu-tab-btns ul li a {
    display: block;
    font-size: 1rem;
    text-align: center;
    color: rgba(255,255,255,.7);
    width: 90px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    margin: 3px;
    transition: all .3s linear;
}
.menu .menu-tab-btns ul li a.focus {
    background: #AC130C;
    color: #fff;
    font-weight: 700;
}
/* menu-swiperSlide */
.menu .menu-tab-contents {}
.menu .menu-tab-contents > div {
    position: relative;
}
.menu .menu-tab-contents > div .sw-menu {
    width: calc(100% + 30px);
    margin: 0 -15px;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide {
    padding: 50px 15px 20px;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a {
    display: block;
    border-radius: var(--borderR);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: all .3s linear;
    position: relative;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-new-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-new-icon img {
    display: block;
    height: 50px;
    margin: 1px;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-img {}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-img img {
    width: 100%;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-desc {
    text-align: center;
    padding: 26px 0 40px;
    border-top: 1px solid #ddd;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-desc h5 {
    margin: 0 0 8px;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis; /*오페라 브라우저에서 */
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s linear;
    font-family: var(--koFont);
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-desc p {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 300;
    line-height: 1.2;
    font-family: var(--engFont);
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis; /*오페라 브라우저에서 */
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s linear;
}
/* menu-btn */
.menu .menu-tab-contents > div .btn-prev {
    position: absolute;
    top: 50%;
    right: calc(100% + 55px);
    transform: translateY(-50%);
    width: 22px;
    height: 39px;
    transition: all .3s linear;
    cursor: pointer;
}
.menu .menu-tab-contents > div .btn-prev:hover {
    opacity: 0.3;
}
.menu .menu-tab-contents > div .btn-prev img {
    display: block;
    width: 100%;
    height: 100%;
}
.menu .menu-tab-contents > div .btn-next {
    position: absolute;
    top: 50%;
    left: calc(100% + 55px);
    transform: translateY(-50%);
    width: 22px;
    height: 39px;
    transition: all .3s linear;
    cursor: pointer;
}
.menu .menu-tab-contents > div .btn-next:hover {
    opacity: 0.3;
}
.menu .menu-tab-contents > div .btn-next img {
    display: block;
    width: 100%;
    height: 100%;
}

.menu .menu-btn {
    margin-top: 30px;
    text-align: center;
}
.menu .menu-btn .w span {}
.menu .menu-btn .w span svg {

}

/* news 영역 */
.news {}
.news .container {}
.news .news-title {
    text-align: center;
}
.news .news-tab-btns {
    margin: 15px auto 0;
}
.news .news-tab-btns ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.news .news-tab-btns ul li {}
.news .news-tab-btns ul li a {
    display: block;
    font-size: 1rem;
    text-align: center;
    color: rgba(34,34,34,.7);
    width: 90px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    margin: 3px;
    transition: all .3s linear;
}
.news .news-tab-btns ul li a.focus {
    background-color: var(--mainColor);
    color: #fff;
    font-weight: 700;
}

/* news-swiperSlide */
.news .news-tab-contents {}
.news .news-tab-contents > div {
    position: relative;
}
.news .news-tab-contents > div .sw-news {
    width: calc(100% + 30px);
    margin: 0 -15px;
}
.news .news-tab-contents > div .sw-news .swiper-slide {
    padding: 50px 15px;
}
.news .news-tab-contents > div .sw-news .swiper-slide a {
    display: block;
    border-radius: var(--borderR);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    background: #fff;
    transition: all .3s linear;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-img {
    overflow: hidden;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.news .news-tab-contents > div .sw-news .swiper-slide a:hover .news-slide-img img {
    transform: scale(1.1);
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-desc {
    padding: 25px 30px;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-desc h5 {
    line-height: 1.2;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-desc .date {}

.news .news-tab-contents > div .btn-prev {
    position: absolute;
    top: 50%;
    right: calc(100% + 55px);
    transform: translateY(-50%);
    width: 22px;
    height: 39px;
    cursor: pointer;
}
.news .news-tab-contents > div .btn-prev img {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transition: all .3s linear;
}
.news .news-tab-contents > div .btn-prev:hover img {
    opacity: 1;
}
.news .news-tab-contents > div .btn-next {
    position: absolute;
    top: 50%;
    left: calc(100% + 55px);
    transform: translateY(-50%);
    width: 22px;
    height: 39px;
    cursor: pointer;
}
.news .news-tab-contents > div .btn-next img {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transition: all .3s linear;
}
.news .news-tab-contents > div .btn-next:hover img {
    opacity: 1;
}

/* banner 영역 */
.banner {
    width: 100%;
    height: 635px;
    overflow: hidden;
    position: relative;
    background: url(../images/banner_2501171042339.jpg) no-repeat center;
    background-size: cover;
}
.banner .container {
    height: 100%;
}
.banner .banner-wrap {
    height: 100%;
    position: relative;
}
.banner .banner-wrap .circle-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}
.banner .banner-wrap .banner-red-circle {
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background-color: var(--mainColor);
}
.banner .banner-wrap .banner-red-circle::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    margin: 0 -50%;
}
.banner .banner-wrap .banner-red-circle .banner-title {
    position: absolute;
    top: 50%;
    left: 50%; /*max-width:50% 이기 때문에 left 50일 때 딱 들어감 */
    transform: translateY(-50%);
    max-width: 50%;
    width: 100%;
}
.banner .banner-wrap .banner-red-circle .banner-title h3 {
    color: #fff;
    line-height: 1;
    padding: 0 0 25px;
}
.banner .banner-wrap .banner-red-circle .banner-title h4 {
    color: #fff;
    padding: 0 0 35px;
}
.banner .banner-wrap .banner-red-circle .banner-title .banner-btn {}

/* footer 영역 */
.footer {
    background-color: var(--subColor);
    min-width: 280px;
}
.footer .container {}
.footer .footer-top {
    padding: 28px 0 24px;
    border-bottom: 1px solid rgba(255, 40, 30, 0.15);
}
.footer .footer-top ul {
    display: flex;
    gap: 30px;
}
.footer .footer-top ul li {}
.footer .footer-top ul li a {
    display: block;
    font-size: 16px;
    letter-spacing: -0.466667px;
    color: var(--mainColor);
    opacity: .7;
    line-height: 1.2;
    transition: all .3s linear;
}
.footer .footer-top ul li.on a {
    opacity: 1;
    font-weight: 700;
}

.footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 90px;
}
.footer .footer-bottom .footer-logo {
    width: 144px;
}
.footer .footer-bottom .footer-logo a {
    display: block;
    width: 100%;
}
.footer .footer-bottom .footer-logo a img {
    width: 100%;
}

.footer .footer-bottom .footer-info {
    width: calc(100% - 144px - 180px);
    padding: 0 0 0 85px;
}
.footer .footer-bottom .footer-info ul {}
.footer .footer-bottom .footer-info ul li {
    font-size: 16px;
    letter-spacing: -0.466667px;
    line-height: 1.5;
    padding: 0 0 12px;
    color: rgba(255, 40, 30, 0.7);
    position: relative;
}
.footer .footer-bottom .footer-info ul li.contact {
    padding: 0 0 8px 100px;
}
.footer .footer-bottom .footer-info ul li strong {
    display: inline-block;  
    vertical-align: top;
    padding: 0 15px 0 0;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 40, 30, 1);
}
.footer .footer-bottom .footer-info ul li.contact strong {
    position: absolute;
    left: 0;
    top: 0;
}
.footer .footer-bottom .footer-info ul li span {
    display: inline-block;
    vertical-align: top;
    padding: 0 15px 0 0;
    line-height: 1.5;
}
.footer .footer-bottom .footer-info ul li span img {
    width: 12px;
    display: inline-block;
    margin: -2px 5px 0 0;
    vertical-align: middle;
}
.footer .footer-bottom .footer-info ul li span b {}

.footer .footer-bottom .footer-info .copyright {
    font-family: var(--engFont);
    color: rgba(255, 40, 30, .8);
    font-weight: 300;
    line-height: 1.5;
    font-size: 14px;
    padding: 20px 0 0;
}
.footer .footer-bottom .footer-info .copyright span {
    display: inline-block;
    vertical-align: top;
    transition: all .3s linear;
    font-family: var(--engFont);
    color: rgba(255, 40, 30, .5);
}
.footer .footer-bottom .footer-info .copyright span a {
    color: rgba(255, 40, 30, .5);
}
.footer .footer-bottom .footer-info .copyright span:hover a {
    color: rgba(255, 40, 30, 1);
}

.footer .footer-bottom .sns {
    width: 180px;
    margin-top: 10px;
}
.footer .footer-bottom .sns ul {
    font-size: 0;
}
.footer .footer-bottom .sns ul li {
    display: inline-block;
    margin-right: 30px;
    vertical-align: top;
}
.footer .footer-bottom .sns ul li:last-child {
    margin-right: 0;
}
.footer .footer-bottom .sns ul li a {
    display: block;
    width: 40px;
    height: 40px;
    transition: all .3s linear;
}
.footer .footer-bottom .sns ul li a img {
    width: 100%;
}