@charset "utf-8";
@import url('font.css');

/* css 변수 */
:root {
    --engFont: 'Lexend', 'Noto Sans KR', sans-serif;
    /* --koFont: 'NEXON Lv1 Gothic OTF', 'Noto Sans KR', sans-serif; */
    --koFont: 'NexonLv1Gothic', '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 {
    display: block;
}
/* ====== common ====== */
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}
.section {
    padding: 160px 0;
}
/* 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-weight: 400;
    font-family: var(--koFont);
    letter-spacing: -0.73333px;
    /* 사이즈가 큰 제목들은 항상 레터스페이싱(자간) 설정 꼭꼭 해주기! */
    line-height: 1.6;
    word-break: keep-all;
    color: #222;
}
h5 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing:  -0.73333px;
  line-height: 1.4;
  word-break: keep-all;
  color: #222;
}
.txt {
  font-size: 1rem;
  letter-spacing: -0.66667px;
  line-height: 1.8;
  word-break: keep-all;
}
.ls0 {
    letter-spacing: 0 !important;
}

/* Btn */
.moreBtn {
    display: inline-block;
    width: 200px;
    height: 56px;
    border-radius: 56px;
    text-align: left;
    padding: 0 30px;
    border: 2px solid #222;
    transition: all .3s linear;
    background-color: transparent;
}
.moreBtn:hover {
    border: 2px solid var(--mainColor);
    background-color: var(--mainColor);
}
.moreBtn.w {
    border-color: #fff;
}
.moreBtn.w:hover {
    background-color: #fff;
}
.moreBtn span {
    display: block;
    width: 100%;
    line-height: 52px;
    color: #222;
    letter-spacing: -0.466667px;
    font-size: 1rem;
    transition: all .3s linear;
    position: relative;
}
.moreBtn:hover span {
    color: #fff;
}
.moreBtn.w span {
    color: #fff;
}
.moreBtn.w:hover span {
    color: var(--mainColor);
}
.moreBtn span svg {
    width: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    fill: #222;
    /* fill: 색 채우기 */
    transition: all .3s linear;
}
.moreBtn:hover span svg {
    fill: #fff;
}
.moreBtn.w span svg {
    fill: #fff;
}
.moreBtn.w:hover span svg {
    fill: var(--mainColor);
}

html,body {
    line-height: 1.7;
    font-family: 'Pretendard', 'NEXON Lv1 Gothic OTF', 'Noto Sans KR', 'Lexend', Malgun Gothic, 'Malgun Gothic', sans-serif;
    font-size: 18px;
}

/* ====== popup-zone영역 ====== */
.popup-zone {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.65);
    z-index: 10000;
}
.popup-zone .popup-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 800px;
    border-radius: var(--borderR);
    overflow: hidden;
}
/* slide */
.popup-zone .popup-box .sw-popup {
    width: 100%;
    position: relative;
}
.popup-zone .popup-box .sw-popup .swiper-slide {}
.popup-zone .popup-box .sw-popup .swiper-slide a {}
.popup-zone .popup-box .sw-popup .swiper-slide a img {
    width: 100%;

}
.popup-zone .popup-box .sw-popup .popup-btn-prev,
.popup-zone .popup-box .sw-popup .popup-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 2;
    font-size: 0;
    opacity: 0;
    transition: all .3s linear;
}
.popup-zone:hover .popup-box .sw-popup .popup-btn-prev,
.popup-zone:hover .popup-box .sw-popup .popup-btn-next {
    opacity: 1;
}
.popup-zone .popup-box .sw-popup .popup-btn-prev {
    left: 10px;
    background: url('../images/arrow_p_w.svg') no-repeat center;
    background-size: auto 100%;
}
.popup-zone .popup-box .sw-popup .popup-btn-next {
    right: 10px;
    background: url('../images/arrow_n_w.svg') no-repeat center;
    background-size: auto 100%;
}
/* popup-pagination */
.popup-zone .popup-box .sw-control {
    padding: 15px 0;
    background-color: var(--mainColor);
}
.popup-zone .popup-box .sw-control .sw-paging {
    text-align: center;
    line-height: 0;
}
.popup-zone .popup-box .sw-control .sw-paging .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,1);
    opacity: 0.5;
    margin: 0 5px;
    transition: all .3s linear;
}
.popup-zone .popup-box .sw-control .sw-paging .swiper-pagination-bullet-active {
    opacity: 1;
}
/* popup-close */
.popup-zone .popup-box .popup-close {
    font-size: 0;
}
.popup-zone .popup-box .popup-close li {
    display: inline-block;
    width: 50%;
    text-align: center;
    background-color: #222;
    line-height: 0;
    font-size: 1rem;
}
.popup-zone .popup-box .popup-close li:last-child {
    border-left: 1px solid rgba(255,255,255,0.2);
}
.popup-zone .popup-box .popup-close li input {
    display: inline-block;
    width: 100%;
    border: none;
    outline: none;
    background: none;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.333333px;
    padding: 12px 0;
    display: block;
    font-family: 'Pretendard','NEXON Lv1 Gothic OTF','Noto Sans KR', 'Lexend', Malgun Gothic,'Malgun Gothic', sans-serif;
    cursor: pointer;
}

/* ====== quick-menu영역 ====== */
.quick-menu {
    position: fixed;
    right: 60px;
    bottom: 10%;
    text-align: center;
    background-color: rgba(0,0,0,0.88);
    border-radius: var(--borderR);
    padding: 26px 10px;
    z-index: 999;
}
.quick-menu ul {}
.quick-menu ul li {
    padding: 0 0 20px;
}
.quick-menu ul li:last-child {
    padding: 0;
}
.quick-menu ul li.top-btn {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.quick-menu ul li a {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    transition: all .3s linear;
    letter-spacing: -0.466667px;
}
.quick-menu ul li.top-btn a {
    font-weight: bold;
    font-family: 'Lexend', 'NEXON Lv1 Gothic OTF', 'Pretendard', 'Noto Sans KR', Malgun Gothic, 'Malgun Gothic', sans-serif !important;
}
.quick-menu ul li a:hover {
    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;
    background-size: auto 100%;
    /* 높이를 100%로 해서 너비는 auto
    즉, 높이에 맞추겠다는 의미 */
}
.quick-menu ul li.top-btn a:hover span {
    background-image: url('../images/top_icon_on.svg');
}
.quick-menu ul li.instagram a span {
    width: 28px;
    height: 28px;
    background: url('../images/instagram_icon.svg') no-repeat center;
    background-size: auto 100%;
}
.quick-menu ul li.instagram a:hover span {
    background-image: url('../images/instagram_icon_on.svg');
}
.quick-menu ul li.inquiry a span {
    width: 32px;
    height: 32px;
    background: url('../images/inquiry_icon.svg') no-repeat center;
    background-size: auto 100%;
}
.quick-menu ul li.inquiry a:hover span {
    background-image: url('../images/inquiry_icon_on.svg');
}
.quick-menu ul li.proposal a span {
    width: 34px;
    height: 34px;
    background: url('../images/proposal_icon.svg') no-repeat center;
    background-size: 100% auto;
}
.quick-menu ul li.proposal a:hover span {
    background-image: url('../images/proposal_icon_on.svg');
}
.quick-menu ul li.consultation a span {
    width: 34px;
    height: 34px;
    background: url('../images/consultation_icon.svg') no-repeat center;
    background-size: 100% auto;
}
.quick-menu ul li.consultation a:hover span {
    background-image: url('../images/consultation_icon_on.svg');
}

/* ====== mobile-menu영역 ====== */
.mb-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /* width: 320px; */
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    overflow: auto;
    padding: 25px 3%;
    /* padding %는 모바일 메뉴 맨 위 이 부분에서
    한번만 주면 된다 */
    transition: all .2s ease-in;
}
.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;
    margin-top: -5px;
}

.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;
    font-weight: bold;
    color: #222;
    letter-spacing: -0.4px;
    position: relative;
    transition: all .7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mb-menu .mb-main-menu > li .mb-menu-list.active {
    color: var(--mainColor);
}
.mb-menu .mb-main-menu > li .mb-menu-list.mb-li-arrow span {
    position: absolute;
    right: 0;
    top:50%;
    transform: translateY(-50%);
    color: #222;
    opacity: 0.7;
    font-size: 30px;
    transition: all .3s linear;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active span {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
    color: var(--mainColor);
}
.mb-menu .mb-main-menu > li .mb-submenu {
    display: none;
    padding-bottom: 20px;
}
.mb-menu .mb-main-menu > li .mb-submenu li {
    padding: 8px 0;
    line-height: 1.2;
}
.mb-menu .mb-main-menu > li .mb-submenu li a {
    font-size: 16px;
    letter-spacing: -0.466667px;
    line-height: 1.2;
}

/* ====== header영역 ====== */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 112px;
    overflow: hidden;
    background-color: #fff;
    z-index: 999;
    transition: all 0.4s;
}
.header::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 112px;
    opacity: 0;
    transition: all .4s;
}
.header.fixed {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.header.nofixed {
    top: -200px;
}
.header.down::before {
    opacity: 1;
}
.header.down {
    height: 340px;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* logo */
.header .logo {}
.header .logo a {
    display: block;
    width: 240px;
}
.header .logo a img {
    width: 100%;
}
/* nav */
.header nav {}
.header nav .mainMenu {
    font-size: 0;
}
.header nav .mainMenu > li {
    display: inline-block;
    vertical-align: top;
    padding: 0 21px;
    position: relative;
}
.header nav .mainMenu > li > a {
    display: block;
    font-size: 20px;
    padding: 44px 16px;
    line-height: 1.2;
    letter-spacing: -0.466667px;
    position: relative;
}
.header nav .mainMenu > li:hover > a {
    color: var(--mainColor);
}
.header nav .mainMenu > li > a::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--mainColor);
    transition: all .3s linear;
}
.header nav .mainMenu > li:hover > a::before {
    width: 100%;
}
.header nav .mainMenu > li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    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 {
    font-size: 16px;
    display: block;
    color: #777;
    letter-spacing: -0.466667px;
    line-height: 1.5;
    word-break: keep-all;
}
.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 {
    width: 100%;
    height: 100vh;
    position: relative;
}
.visual .sw-visual {
    width: 100%;
    height: 100%;
    /* 여기에 position: relative를 주면
    버튼이 내려가는 이유
    같은 부모가 아니라서
    -> so, 같은 부모인 visual에 relative를 주어야 한다. */
}
.visual .sw-visual .swiper-slide {}
/* bg-pc */
.visual .sw-visual .swiper-slide .visual-bg-pc {
    width: 100%;
    height: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-pc h2 {
    /* 너비, 높이 어차피1 100%이기 때문에 안적어주어도 된다. */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
}
.visual .sw-visual .swiper-slide .visual-bg-pc h2 img {
    display: inline-block;
    max-width: 100%;
}
.visual .sw-visual .swiper-slide .visual-bg-pc > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* bg-mb */
.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;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.visual .sw-visual .swiper-slide .visual-bg-mb h2 img {
    display: inline-block;
}
.visual .sw-visual .swiper-slide .visual-bg-mb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
    /* ㄴ기본값이라서 적어줄 필요가 없음 */
}
/* swiper-pagination */
.visual .sw-visual .swiper-pagination {
    /* position: absolute; */
    top: 143px;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
    max-width: 1400px;
    padding: 0 25px;
}
.visual .sw-visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 15px 0 0;
    background-color: #fff;
    opacity: 0.25;
    transition: all .3s linear;
}
.visual .sw-visual .swiper-pagination-bullet:hover {
    opacity: 1;
}
.visual .sw-visual .swiper-pagination-bullet:last-child {
    margin: 0 0 0 0;
}
.visual .sw-visual .swiper-pagination-bullet-active {
    opacity: 1;
}
/* go-down-btn */
.visual .go-brand-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    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 {
    text-align: center;
}
.brand .brand-img {
    max-width: 527px;
    margin: 0 auto;
}
.brand .brand-img img {
    width: 100%;
}
.brand .brand-desc {}
.brand .brand-desc h4 {
    padding: 30px 0 14px;
}
.brand .brand-desc .txt {
    font-size: 1rem;
    letter-spacing: -0.666667px;
    line-height: 1.8;
    word-break: keep-all;
}
.brand .brand-btn {
    padding: 60px 0 0;
}

/* ======= menu영역 ======= */
.menu {
    background-color: var(--mainColor);
}
.menu .container {}
/* title */
.menu .menu-title {}
.menu .menu-title .menu-img {
    width: 60px;
    margin: 0 auto 15px;
}
.menu .menu-title .menu-img img {
    width: 100%;
}
.menu .menu-title h3 {
    color: #fff;
    text-align: center;
}

/* tab menu */
.menu .menu-tab-btns {
    margin-top: 15px;
}
.menu .menu-tab-btns ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.menu .menu-tab-btns ul li {
    margin: 3px;
}
.menu .menu-tab-btns ul li a {
    display: block;
    width: 90px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all .3s linear;
}
.menu .menu-tab-btns ul li a.focus {
    color: #fff;
    background-color: #ac130c;
    font-weight: 700;
}

/* tab contents */
.menu .menu-tab-contents {}
/* swiper-slide */
.menu .menu-tab-contents > div {
    position: relative;
}
.menu .menu-tab-contents > div .sw-menu {
    width: calc(100% + 30px);
    margin: 0 -15px;
    /* 내용물이 들어갈 수 있는 공간(1400-패딩50=1350px)에서
    그림자가 보일 수 있는 공간을 확보하기 위해서 15 X 2 = 30px을 해주어야 한다.
    하지만 30px이 늘어나면 컨텐츠 영역이 오른쪽으로 30px이 밀려나서 튀어나오기 때문에 센터를 맞추어 주기 위해서
    margin을 -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: 0 4px 15px rgba(0,0,0,0.13);
    background-color: #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 {
    margin: 1px;
    height: 50px;
}
.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%;
    transition: all .5s linear;
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide:hover a .menu-slide-img img {
    transform: scale(1.1);
}
.menu .menu-tab-contents > div .sw-menu .swiper-slide a .menu-slide-desc {
    padding: 26px 0 40px;
    text-align: center;
    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;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--koFont);
    transition: all .3s linear;
}
.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;
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s linear;
}

/* swiper slide navigation */
.menu .menu-tab-contents > div .btn-prev,
.menu .menu-tab-contents > div .btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 39px;
    cursor: pointer;
}
.menu .menu-tab-contents > div .btn-prev {
    right: calc(100% + 48px); 
}
.menu .menu-tab-contents > div .btn-next {
    left : calc(100% + 48px); 
}
.menu .menu-tab-contents > div .btn-prev img,
.menu .menu-tab-contents > div .btn-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear;
}
.menu .menu-tab-contents > div .btn-prev:hover img,
.menu .menu-tab-contents > div .btn-next:hover img {
    opacity: 0.3;
}

/* .menu .menu-tab-contents #toast {}
.menu .menu-tab-contents #set {display: none;}
.menu .menu-tab-contents #side {display: none;}
.menu .menu-tab-contents #drink {display: none;} */

.menu .menu-btn {
    margin-top: 30px;
    text-align: center;
}

/* ====== news영역 ====== */
.news {}
.news .container {}
/* news-title */
.news .news-title {}
.news .news-title h3 {
    text-align: center;
}
/* news-tab-btns */
.news .news-tab-btns {
    margin-top: 15px;
}
.news .news-tab-btns ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.news .news-tab-btns ul li {
    margin: 3px;
}
.news .news-tab-btns ul li a {
    display: block;
    width: 90px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    text-align: center;
    color: rgba(34,34,34,0.7);
    font-size: 1rem;
    transition: all .3s linear;
}
.news .news-tab-btns ul li a.focus {
    color: #fff;
    background-color: var(--mainColor);
    font-weight: 700;
}
/* news-tab-contents */
.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);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.13);
    background-color: #fff;
    transition: all .3s linear;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-img {
    width: 100%;
    overflow: hidden;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
    transition: all .5s linear;
}
.news .news-tab-contents > div .sw-news .swiper-slide:hover a .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;
    overflow: hidden;
    white-space: nowrap;
}
.news .news-tab-contents > div .sw-news .swiper-slide a .news-slide-desc .date {
    display: block;
    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;
}

/* sw-news navigation */
.news .news-tab-contents > div .btn-prev,
.news .news-tab-contents > div .btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 39px;
    cursor: pointer;
}
.news .news-tab-contents > div .btn-prev {
    right: calc(100% + 48px);
}
.news .news-tab-contents > div .btn-next {
    left: calc(100% + 48px);
}
.news .news-tab-contents > div .btn-prev img,
.news .news-tab-contents > div .btn-next img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s linear;
    opacity: 0.3;
}
.news .news-tab-contents > div .btn-prev:hover img,
.news .news-tab-contents > div .btn-next:hover img {
    opacity: 1;
}

.news .news-tab-contents #total {}
.news .news-tab-contents #notice {}
.news .news-tab-contents #event {}
/* 이렇게 안쓰는 칸(주황색줄)들은 주석처리X 지우기O */


/* ====== banner영역 ====== */
.banner {
    position: relative;
    width: 100%;
    height: 635px;
    background: url('../images/banner_2501171042339\ \(1\).jpg') no-repeat center;
    background-size: cover;
    overflow: hidden;
}
.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 .circle-wrap .banner-red-circle {
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background-color: var(--mainColor);
}
.banner .banner-wrap .circle-wrap .banner-red-circle::before {
    content: '';
    display: block;
    width: 200%;
    height: 100%;
    margin-left: -150%;
    background-color: var(--mainColor);
}
.banner .banner-wrap .circle-wrap .banner-red-circle .banner-title {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50%;
    width: 100%;
    /* 컨텐츠만큼 너비가 자동 책정이 되기 때문에 요소들이 삐져나갈 수 있다.
    so, max-width를 50%로 주어서 쓸 수 있는 너비영역을 잡아주어야 함 */
}
.banner .banner-wrap .circle-wrap .banner-red-circle .banner-title h3 {
    color: #fff;
    line-height: 1;
    padding: 0 0 25px;
}
.banner .banner-wrap .circle-wrap .banner-red-circle .banner-title h4 {
    color: #fff;
    padding: 0 0 35px;
}
.banner .banner-wrap .circle-wrap .banner-red-circle .banner-title .banner-btn {}


/* ====== footer영역 ====== */
.footer {
    background-color: var(--subColor);
    min-width: 280px;
}
.footer .container {}
/* footer-top */
.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;
    /* margin: 0 -15px; */
}
.footer .footer-top ul li {
    line-height: 1.2;
    /* margin: 0 15px; */
}
.footer .footer-top ul li a {
    display: block;
    font-size: 16px;
    letter-spacing: -0.466667px;
    line-height: 1.2;
    color: var(--mainColor);
    opacity: 0.7;
    transition: all .3s linear;
}
.footer .footer-top ul li.on a {
    opacity: 1;
    font-weight: bold;
}
.footer .footer-top ul li a:hover {
    opacity: 1;
}
/* footer-bottom */
.footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 90px;
}
/* footer-bottom-logo */
.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-bottom-info */
.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 {
    /* display: flex; */
    font-size: 0;
    letter-spacing: -0.466667px;
    line-height: 1.5;
    padding: 0 0 12px;
    color: rgba(255,40,30,0.7);
}
.footer .footer-bottom .footer-info ul li.contact {
    padding: 0 0 8px 100px;
    position: relative;
}
.footer .footer-bottom .footer-info ul li.contact:last-child {
    padding-bottom: 0;
}
.footer .footer-bottom .footer-info ul li strong {
    font-size: 16px;
    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;
    top: 0;
    left: 0;
    padding: 0;
}
.footer .footer-bottom .footer-info ul li span {
    font-size: 16px;
    display: inline-block;
    padding: 0 15px 0 0;
    /* align-items: baseline; */
    line-height: 1.5;
    letter-spacing: normal;
}
.footer .footer-bottom .footer-info ul li span img {
    display: inline-block;
    width: 12px;
    margin: -2px 5px 0 0;
    /* line-height: 1.75; */
    /* vertical-align: middle; */
}
.footer .footer-bottom .footer-info ul li.contact b {
    font-size: 16px;
}
.footer .footer-bottom .footer-info .copyright {
    font-family: var(--engFont);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255,40,30,0.8);
    line-height: 1.5;
    word-break: keep-all;
    padding: 20px 0 0;
}
.footer .footer-bottom .footer-info .copyright span,
.footer .footer-bottom .footer-info .copyright span a {
    display: inline-block;
    vertical-align: top;
    font-family: var(--engFont);
    color: rgba(255,40,30,0.5);
    transition: all .3s linear;
}
.footer .footer-bottom .footer-info .copyright span a {
    line-height: 1.75;
}
.footer .footer-bottom .footer-info .copyright span a:hover {
    color: rgba(255,40,30,1);
}
/* footer-bottom-sns */
.footer .footer-bottom .sns {
    width: 180px;
    /* transform: translateY(10px); */
    margin-top: 10px;
}
.footer .footer-bottom .sns ul {
    /* display: flex; */
    /* gap: 30px; */
    font-size: 0;
}
.footer .footer-bottom .sns ul li {
    display: inline-block;
    margin-right: 30px;
}
.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:hover {
    opacity: 0.5;
}
.footer .footer-bottom .sns ul li a img {
    width: 100%;
}

/* ======  ====== */
