@font-face {
    font-family: 'SBAggroL';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroL.woff') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, button, input, textarea, p, select, blockquote, th, td, img, a {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    color: #000;
  }

html {
scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    user-select: none;
}

.topbanner {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000; /* 헤더 위로 배치 */
}


.topbanner .swiper-wrapper {
    display: flex;
    height: 48px;
}

.topbanner .swiper-slide {
    position: relative;
    height: 48px; /* 배너 높이 고정 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* 이미지를 영역에 맞게 잘라줌 */
}

.slide-link {
    display: block;
    height: 100%;
}
.slide-image {
    height: auto; /* 비율 유지 */
    object-fit: cover; /* 이미지를 컨테이너에 잘 맞게 조정 */
}

/* 공통 버튼 스타일 */
.topbanner .swiper-button-prev,
.topbanner .swiper-button-next {
    display: flex;
    justify-content: center;
    align-items: center;
}
.topbanner .swiper-button-next, .swiper-button-prev{
    height: 25px;
    top: 70%;
}
.topbanner .swiper-button-next{
    background-image: url('/assets/images/index/ADbanner/next.png');
 
}
.topbanner .swiper-button-prev{
    background-image: url('/assets/images/index/ADbanner/prev.png');
    
}


.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 1000;
    padding: 10px;
}

.header .content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;

}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    position: relative;
    font-weight: 400;
    font-family: "SBAggroL";
}
.nav a:hover {
    color: #007CDB;
    transition: 0.5s ease;
}

.nav a::after {
    font-size: 12px;
    position: absolute;
    right: -10px;
    top: 0;
}

.nav-move::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -6px;
    width: 7.5px;
    height: 7.5px;
    background-color: #120E4A;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* 회원가입, 이용하기 버튼 */
.moveButtons {
    display: flex;
    gap: 25px;
}
.moveButtons .loginBtn {
    font-family: "SBAggroL";
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 10px;
    background-color: #1A1A80;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
}

.moveButtons .joinBtn {
    font-family: "SBAggroL";
    padding: 8px 0;
    font-weight: 500;
}

.moveButtons .loginBtn:hover {
    background-color: #0d0d6b;
}


.section {
    width: 100%;
    display: flex;
    justify-content: center;
    scroll-margin-top: 83px;
}

.content-wrapper {
    width: 1200px;
    height: 400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 10px;
    justify-content: center;
}

/* 각 세로 영역 */
.column {
    flex-direction: column;
    display: flex;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    opacity: 0;
}

.column.show {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.section1 .P0 .column1 .consultBtn{
    background-color: #2A275C;   
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 22px;
}


.section1 .column img {
    object-fit: contain;
    /* 이미지가 왜곡되지 않도록 크기에 맞춤 */
}

.section1 .swiper-wrapper {
    overflow: visible;
    /* 슬라이드의 전체 영역을 표시 */
}

.section1 .swiper-slide {
    overflow: visible;
    /* 슬라이드 내부 요소의 z-index 적용 */
}


/* 세션 1 */
/* 컬럼 1*/
.section1 .column1 {
    
    justify-content: space-between;
    grid-column: 1 / span 5;
    grid-row: 2 / span 3;
}


.section1 .column1 .title {
    font-family: "SBAggroL";
    font-size: 35px;
    font-weight: 900;
}
.section1 .section{
    padding:130px 0 0 0; 
}
.section1 .P0{
   background-color: #F6FBF4;
   cursor: pointer;
}
.section1 .P1{
   background-color: #EAF3FB;
}
.section1 .P2{
    background-color: #FFF9F3;
 }
 .section1 .P3{
    background-color: #595959;
    cursor: pointer;
 }
.section1 .column1 .contents {
    font-size: 19px;

}

.section1 .column1 .contents span {
    font-weight: 700;
}

.section1 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #120E4A;
    /* 기본 색상 */
    border-radius: 50%;
    /* 원형 */
    opacity: 1;
    transition: all 0.3s ease;
    /* 애니메이션 효과 */
    opacity: 0.5;
}

.section1 .swiper-slide {
    position: relative;
    /* 부모 요소에 position을 추가 */
    z-index: 0;
    /* 기본값 */
}

/* 활성화된 페이지네이션 (막대 형태) */
.section1 .swiper-pagination-bullet-active {
    width: 80px;
    /* 길게 막대형으로 */
    height: 8px;
    background-color: #6561a1;
    /* 활성화 색상 */
    border-radius: 10px;
    /* 막대 형태의 둥근 모서리 */
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.section1 .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 25px;
}
.section1 .S2 img{
    width: 100%;
    height: 100%;
}

.section1 .swiperMoveBox {
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    gap: 50px;
    z-index: auto;
    position: relative;
    opacity: 1;
}

.section1 .contetsbox .title {
    font-size: 32px;
    font-weight: 500;
    font-family: "SBAggroL";
}

.section1 .underButton {
    display: grid;
    width: 100%;
    height: 50px;
    line-height: 50px;
    cursor: pointer;

}

.section1 .underButton .ounerclan {
    background-color: #4BA8E8;
    border-radius: 0 0 17px 17px;
    color: #fff;
    font-size: 18px;
    font-family: "SBAggroL";
}

.section1 .underButton .sellerpick {
    background-color: #F95D7B;
    border-radius: 0 0 17px 0;
    color: #fff;
    font-size: 18px;
    font-family: "SBAggroL";

}
.section1 .column2{
    grid-column: 9 / span 4;
    grid-row: 1 / span 4;
}
.section1 .column2.S3{
    grid-row: 2 / span 3;
}
.section1 .column2 img{
    border-radius: 20px;
}
.section1 .column2.show {
    z-index: 3;
}
.section1 .column3{
    grid-column: 7 / span 4;
    grid-row: 1 / span 4;
}
.section1 .column3.show {
    width: 340px;
    background-image: url('/assets/images/index/4.png');
    background-size: cover;
    background-position: center;
    z-index: 1 !important;
    position: relative;
}



.section2 .content-wrapper {
display: grid;
grid-template-columns: repeat(12, 1fr); /* 컬럼 고정 너비 설정 */
grid-template-rows: repeat(8, 1fr);
gap: 10px;
height: 800px;
}

.section2 .column1 {
font-size: 34px;
font-weight: 700;
grid-column: 1 / span 6;
grid-row: 2;
}

.section2 .column2 {
grid-column: 7 / span 6;
grid-row: 2;
text-align: right;
}

.scroll-container {
grid-column: 1 / span 12;
grid-row: 3 / span 5;
display: flex;
overflow-y: hidden;
padding: 10px 5px;
gap: 10px;
overflow-x:scroll;
margin-bottom: -35px;
}
.scroll-container::-webkit-scrollbar {

height: 8px; /* 가로 스크롤바 높이 */
width: 8px;  /* 세로 스크롤바 너비 */
}

/* 스크롤바 트랙 (배경) */
.scroll-container::-webkit-scrollbar-track {

background: #ffffff; /* 트랙 배경색 */
border-radius: 10px;
}

.section6 .scroll-container::-webkit-scrollbar-track {

background: #E4EDFF; /* 트랙 배경색 */
border-radius: 10px;
}

/* 스크롤바 핸들 (이동하는 부분) */
.scroll-container::-webkit-scrollbar-thumb {
background: #c0c0c0; /* 핸들 색상 */
border-radius: 10px;
}

/* 스크롤바 핸들에 마우스 오버 시 */
.scroll-container::-webkit-scrollbar-thumb:hover {
background: #a0a0a0; /* 마우스 오버 시 색상 */
}


.section2 .column3 {
grid-column: 1 / span 3;
}

.section2 .column4 {
grid-column: 4 / span 3;
}

.section2 .column5 {
grid-column: 7 / span 3;
}

.section2 .column6 {
grid-column: 10 / span 3;
}

.section2 .column3,
.section2 .column4,
.section2 .column5,
.section2 .column6 {
width: 290px;
height: 500px;
background-color: #FFFFFF;
border-radius: 20px;
box-shadow: 0px 0px 3.68px 0px #00000040;
flex: 0 0 auto; /* 가로 스크롤 시 크기 고정 */
}

.section2 .info {
display: inline-block;
margin: 25px;
color: #555;
}

.section2 .imgLayer {
width: 100%;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
}

.section3 .content-wrapper {
    height: 800px;
    grid-template-rows: repeat(8, 1fr);
    /* 5행 */
    gap: 20px;
}
.section3 .column1{
    grid-column:6 / span 2;
    grid-row: 1 / span 1;
}

.section3 .column2 {
    text-align: center;
    grid-column: 4 / span 6;
    grid-row: 2 / span 1;
}

.section3 .column2 .title {
    font-size: 30px;
    font-weight: 700;

}


.section3 .column2 .info {
    margin-top: 15px;
}

.section3 .itembox {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    box-shadow: 0px 0px 3.68px 0px #00000040;
}
.section3 .column3{
    grid-column: 3 / span 4;
    grid-row: 4 / span 4;
}
.section3 .column3 .itembox {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    /* 5행 */

}
.section3 .column4{
    grid-column: 7 / span 4;
    grid-row: 4 / span 4;
}

.section3 .column4 .itembox {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    /* 5행 */
}

.section3 .itembox .imgLayer {
    grid-row: 1 / span 4;
    display: flex;
    justify-content: center;
    /* 가로 중앙 정렬 */
    align-items: center;
    background: #278268;
    border-radius: 25px 25px 0 0;
}

.section3 .column3 .itembox .imgLayer {
    grid-row: 1 / span 2;
}

.section3 .itembox .info {
    grid-row: 3 / span 1;
}

.section3 .column4 .itembox .info {
    grid-row: 5 / span 2;
}

.section3 .itembox p {
    color: #555;
}

.section3 .itembox.i1 .imgLayer {
    background: #0063B0;
}

.section3 .itembox.i2 .imgLayer {
    background: #16A0FA;
}

.section3 .itembox.i3 .imgLayer {
    background: linear-gradient(90deg, #FFE0B2 0%, #FFF09B 100%);
}

.section3 .itembox.i4 .imgLayer {
    background: linear-gradient(180deg, #C10591 0%, #F832CD 100%);
}

.section3 .column4 {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.section3 .itembox .info .title,
.section3 .itembox .info .contet {
    margin: 15px 0 0 15px;
}

.section3 .column3 .itembox .info .title,
.section3 .column3 .itembox .info .contet {
    margin: 15px 0 0 22px;
}

.section3 .column4 .itembox .info .title {
    font-size: 14px;
}

.section3 .column3 .itembox .info .title {
    font-size: 14px;
}

.section3 .column3 .itembox .info .contet {
    font-size: 20px;
}


.section4 .itembox {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 3.68px 0px #00000040;
}



.section4 .content-wrapper {
    height: 400px;
    width: 100%;
    grid-template-rows: repeat(7, 1fr);
    /* 5행 */

}
.section4 .column1{
    grid-column: 4 / span 6;
    grid-row: 1 / span 2;
}

.section4 .column1 {
    text-align: center;
    gap: 15px;
}

.section4 .column1 .title {
    margin-top: 35px;
    font-size: 30px;
    font-weight: 700;
}

.section4 .column1 .info {
    margin-top: 15px;
}

.section4 .column2 .allMallModal {
    display: inline-block;
    background-color: #120E4A;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    width: auto;
    color: #fff;
}

.section4 .mall-slider {
    overflow: hidden;
    grid-column: 1 / span 12;
    grid-row: 5 / span 2;
    margin-top: 20px;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    opacity: 0;
}
.mall-slider.show {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}


.section4 .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section4 .logo-item img {
    height: auto;
    width: 150px;
    object-fit: contain;
}
.section4 .column2{
    grid-column: 6 / span 2;
    grid-row: 4 / span 1;
}

.section4 .swiper-wrapper {
    transition-timing-function: linear;
}

.section5 .content-wrapper {
    height: 500px;
}

.section5 .column1 {
    font-size: 32px;
    font-weight: 700;
    grid-column: 4 / span 6;
    grid-row: 2 / span 1;
}
.section5 .column2{
    grid-column: 1 / span 4;
     grid-row: 3 / span 3;
}
.section5 .column3{
    grid-column: 5 / span 4;
    grid-row: 3 / span 3;
}
.section5 .column4{
    grid-column: 9 / span 5;
    grid-row: 3 / span 3;
}



.section5 .item {
    background-color: #B3ADD9;
    border-radius: 25px;
    height: 250px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    ;
    display: grid;
}

.section5 .item p {
    color: #fff;
    display: inline-block;
}

.section5 .item .countLayer {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.section5 .item .countLayer .numberIncrease {
    font-size: 36px;
    font-weight: 700;
}

.section5 .item .imgLayer {
    grid-column: 3 / span 2;
    grid-row: 3 / span 3;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.section5 .item .imgLayer img {
    width: 70%;
    height: auto;
}

.section5 .item .subLayer {
    grid-column: 1 / span 2;
    grid-row: 4 / span 2;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.section5 .item .subLayer p {
    font-size: 12px;
}

.section6 .content-wrapper {
    height: 800px;
    grid-template-rows: repeat(8, 1fr);
    /* 5행 */
    text-align: center;
}

.section6 .column1 {
    gap: 20px;
    grid-column: 4 / span 6;
    grid-row: 2 / span 2;
}

.section6 .column1 .i1 {
    font-size: 32px;
    font-weight: 700;
    color: #120E4A;
}

.section6 .column1 .i2 {
    font-size: 16px;
    color: #120E4A;
}

.section6 .item {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 18px;
    text-align: left;
    grid-template-rows: repeat(2, 1fr);
    /* 5행 */
    display: grid;
}

.section6 .item .bold {
    color: #1E1E1E;
    font-size: 23px;
    font-weight: 700;
    margin: 15px 0 0 15px;
}
.section6 .item .vat {
    font-size: 13px;
}

.section6 .item .gray {
    color: #7A7A7A;
    font-size: 14px;
    margin: 0 0 0 15px;
}

.section6 .item .info {
    margin: 0 0 0 15px;
}

.section6 .item .gudokBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    background-color: #120E4A;
    color: #fff;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.section6 .item .gudokBtn:hover {
    background-color: #272197;
}


.section6 .scroll-container {
    grid-column: 1 / span 12;
    grid-row: 4 / span 2;
    display: flex;
    overflow-y: hidden;
    padding: 10px 5px;
    gap: 10px;
    overflow-x: scroll;
    margin-bottom: -35px;
}
.section6 .column2,
.section6 .column3,
.section6 .column4,
.section6 .column5{
    width: 300px;
}
.section6 .column5 a{ 
    font-family: "SBAggroL";
}
.section6 .column6{
    justify-content: center;
    align-items: center;
    display: flex;
    grid-column: 1 / span 12;
    grid-row: 6 / span 2;
}

.section6 .column6 .underbar {
    background-color: rgba(18, 14, 74, 0.4);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    width: 100%;
    padding: 30px;
    border-radius: 25px;
}

.section6 .column6 .underbar p {
    margin: 0;
    color: #FFFFFF;
    display: inline;
    
}

.section7 .content-wrapper {
    height: 600px;
    width: 100%;
    grid-template-rows: repeat(6, 1fr);
    /* 5행 */
}

.section7 .column1 {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 4 / span 6;
    grid-row: 1 / span 2;
}

.section7 .column1 p {
    color: #1E1E1E;
    font-size: 29px;
    font-weight: 700;
    text-align: center;
}

.section7 .review-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section7 .review-item .contentBox {
    height: 100%;
    width: 370px;
    object-fit: contain;
    border-radius: 16.38px;
    grid-template-rows: repeat(5, 1fr);
    /* 5행 */
    background-color: #EFF4FF;
    display: grid;
}

.section7 .review-slider {
    overflow: hidden;
    grid-column: 1 / span 12;
    grid-row: 3 / span 3;
    display: grid;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    opacity: 0;
}


.review-slider.show {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.section7 .swiper-slide {
    width: auto !important;
    /* 기본 너비를 자동으로 설정 */
    flex-shrink: 0;
    /* 슬라이드의 너비가 축소되지 않도록 설정 */
}

.section7 .review-swiper {
    width: 100%;
    display: flex;
}

.section7 .swiper-wrapper {
    transition-timing-function: linear;
}

.section7 .swiper-slide.review-item .top {
    grid-row: 1 / span 4;
    margin: 25px;
    display: grid;

}

.section7 .swiper-slide.review-item .bottom {
    grid-row: 5 / span 1;
    margin: 25px;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #838383;
    padding-top: 15px;
}

.section7 .swiper-slide.review-item .top .title {
    font-size: 21.2px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 35px;
}

.section7 .swiper-slide.review-item .top .content {
    color: #555;
    font-size: 14.45px;
    line-height: 25px;
}

.section8 {
    background-color: #F4F1FF;
    padding: 20px;
}

.section8 .content-wrapper {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    height: auto;
    grid-template-rows: 100px auto auto;
   
}

.section8 .column1 {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 4 / span 6;
    grid-row: 1 / span 1;
}

.section8 .column1 p {
    font-size: 32px;
    font-weight: 700;
}

.section8 .column2 {
    grid-column: 3 / span 8;
    grid-row: 2 / span 4;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section8 .column2 .question-item {
    transition: all 1s;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
}

.section8 .column2 .question {
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section8 .column2 .question img {
    transition: all 0.5s ease;
    transform: rotateX(360deg);
}

.section8 .column2 .question-item.active .question img {
    transform: rotateX(180deg);
    transition: all 0.5s ease;
}

.section8 .column2 .answer {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.section8 .column2 .answer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #242424;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.section8 .column2 .question-item.active .answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 25px;
    padding-top: 25px;
}

.section8 .column2 .question-item.active .answer::before {
    transform: scaleX(1);
}

.section8 .column2 .question-item.active {
    max-height: 500px;
}

.section8 .column2 .question-item.active .question {
    border-radius: 12px 12px 0 0;
}

.section8 .column2 .bold {
    color: #222222;
    font-weight: 700;
}

.section8 .column2 .blue {
    color: #2BBAEE;
    border-bottom: 1px solid #2BBAEE;
}

.section8 .column2 .bottomLine {
    border-bottom: 1px solid #222222;
}

.section9 .column1{
    grid-column: 2 / span 6;
    grid-row: 2 / span 5;
}
.section9 .column2{
    grid-column: 8 / span 4;
    grid-row: 2 / span 5;
}
.section9 .content-wrapper{
    height: 700px;
    grid-template-rows: repeat(7, 1fr);
    gap:15px;
}
.section9 .newsBox .title a {
    font-size: 16px;
    font-family: "SBAggroL";
    font-weight: 700;
    padding: 5px 20px;
    background-color: #E8E8E8;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section9 .newsBox{
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    padding: 15px;
}
.section9 .youtubeBox{
    display: grid;
    grid-template-rows: repeat(7, 1fr);
    width: 100%;
    height: 100%;
    gap: 15px;
}
.section9 .youtubeBtn{
    background-color: #FF0000;
    border-radius: 10px;
    grid-row: 1/ span 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
}
.section9 .youtubeBtn a{
    color:#ffffff;
    font-size: 18px;
    font-family: "SBAggroL";
}
.section9 .youtubeVideo.i1{
    grid-row: 2/ span 3;
}
.section9 .youtubeVideo.i2{
    grid-row: 5/ span 3;
}
.section9 .youtubeVideo iframe{
    border-radius: 10px;
}
.section9 .newsBox .title{
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin: 5px;
    
}
.section9 .newsBox .title p{
    font-size: 24px;
    font-weight: 700;
}
.section9 .newsBox .item .title{
    padding: 0;
    justify-content: start;
    padding: 5px;
    border-top:1px solid #DCDCDC;
    margin: 5px;
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    padding-top: 10px;
} 
.section9 .newsBox .item img{
    width: 27px;
    height: 27px;
}
.section9 .content .item .content {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2; /* 예상 줄 수를 조절하세요 */
-webkit-box-orient: vertical;
text-overflow: ellipsis;
white-space: normal;
max-height: 7.8em; /* 글자 수와 라인 수에 따라 높이를 조절 */
margin: 5px;
font-size: 15px;
margin-bottom: 15px;
}
.section10{
    box-shadow: 0px -3.33px 13.33px 0px #0000001A;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    transition: transform 0.3s ease; /* 스무스한 이동을 위한 트랜지션 */
}
.section10.absolute {
    position: absolute;
    bottom: auto;
}
.section10 .content-wrapper{
    height: 60px;
    grid-template-rows: repeat(1,1fr);
  
}
.section10 .column{
    justify-content: center;
    align-items: center;
}
.section10 .column1{
    grid-column: 2 / span 4;
}
.section10 .column1 p{
   border: 1px solid #2A275C;
   color: #120E4A;
   font-family: "SBAggroL";
   width: 100%;
   height: 70%;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 30px;
   cursor: pointer;
   transition: all 0.3s, color 0.3s; /* 호버 시 부드러운 전환 효과 */
}
.section10 .column1 p:hover {
    height: 68%;
    width: 98%;
    
    font-size: 15.5px;
}
.section10 .column2{
    grid-column:  6 /span 6;
}
.section10 .column2 a{
   background-color: #2A275C;
   color: #fff;
   font-family: "SBAggroL";
   width: 100%;
   height: 70%;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 30px;
   cursor: pointer;
   transition: all 0.3s, color 0.3s; /* 호버 시 부드러운 전환 효과 */
}
.section10 .column2 a:hover {
    height: 68%;
    width: 98%;
    font-size: 15.5px;
}   
.section11{
    padding-top: 60px;
}
.section11 .content-wrapper{
    height: 600px;
    grid-template-rows: repeat(11, 1fr);
}
.section11 .column1{
    grid-column: 1 /span 12;
    grid-row: 2;
    display:flex ;
    justify-content: space-between;
    flex-direction: row;
}
.section11 .column1 .icons{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.section11 .column2 {
    grid-column: 1 / span 10;
    grid-row: 4 /span 3;
    gap: 25px;
}
.section11 .column3 {
    grid-column: 1 / span 12;
    grid-row: 7 /span 1;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.section11 .inipayLogo{
    cursor: pointer;
}
.section11 .column3 .since p{
    display: inline-block;
}
.section11 .row.flexWrap {
    flex-wrap: wrap;
}
.section11 .row.flexWrap p,
.section11 .row.flexWrap a,
.section11 .row.flexWrap span{
    display: inline-block;
    color: #fff;
    margin: 0 5px;
}
.section11 .footerTerms{
    cursor: pointer;
}
.section11 .column4 {
    border-top: 1px solid #E0E0E0;
    grid-column: 1 / span 12;
    grid-row: 9 /span 2;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.section11 .column4 .banks{
    display: flex;
    padding-top: 25px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
.section11 .column4 .banks .item{
    width: auto;
}
.section11 .column4 .banks .item span{
    color: #fff;
}
.section11 .column4 .banks .item img{
    display: inline-block;
}
.topBtn{
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 188px;
    right: 29px;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0px 0.79px 3.15px 0px #00000033;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(32, 32, 32, 0.6);
align-items: center;
justify-content: center;
z-index: 10000001;
overflow: hidden;
display: flex;
padding: 0 30px;
box-sizing: border-box;
transform: translate(0%, 0%);
}

.modal .layerPopup {
width: -moz-fit-content;
width: fit-content;
height: auto;
margin: 0 auto;
box-sizing: border-box;
overflow: hidden;
position: relative;
}

.modal .layerPopup .popupHead {
width: 100%;
height: 40px;
display: flex;
justify-content: right;
align-items: flex-start;
}

.modal .layerPopup .popupHead button {
cursor: pointer;
border: none;
background: none;
}

.modal .layerPopup .popupHead button span {
font-size: 16px;
font-weight: 300;
letter-spacing: -1.12px;
text-align: left;
color: #fff;
}

.modal .layerPopup .popupBody {
width: 100%;
height: auto;
background-color: white;
max-height: 70vh;
overflow-y: auto;
overflow-x: hidden;
}

.modal .layerPopup .popupBody::-webkit-scrollbar {
width: 12px;
height: 12px;
}

.modal .layerPopup .popupBody::-webkit-scrollbar-track {
background-color: #fff;
border: 1px solid #e2e2e2;
}

.modal .layerPopup .popupBody::-webkit-scrollbar-thumb {
background-color: #f2f2f2;
border: 1px solid #e2e2e2;
}

.modal .layerPopup .popupBody h1 {
font-size: 24px;
font-weight: bold;
letter-spacing: -1.92px;
text-align: center;
color: #202020;
}

.modal .layerPopup .btnBox {
width: 100%;
height: auto;
margin: 0 auto;
display: flex;
align-items: center;
}

.modal .layerPopup .btnBox button {
width: 100%;
outline: none;
padding: 15px 0;
cursor: pointer;
border: none;
font-size: 16px;
font-weight: 500;
letter-spacing: -1.12px;
text-align: center;
color: #2e1e00;
}
.modal#footer_term_1_modal .popupHead,
.modal#footer_term_2_modal .popupHead,
.modal#footer_term_3_modal .popupHead {
width: 95%;
max-width: 680px;
}

.modal#footer_term_1_modal .popupBody,
.modal#footer_term_2_modal .popupBody,
.modal#footer_term_3_modal .popupBody {
width: 95%;
max-width: 680px;
}

.modal#footer_term_1_modal .popupBody .head,
.modal#footer_term_2_modal .popupBody .head,
.modal#footer_term_3_modal .popupBody .head {
width: 100%;
height: auto;
background-color: #f2f2f2;
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 34px;
box-sizing: border-box;
}

.modal#footer_term_1_modal .popupBody .head h5,
.modal#footer_term_2_modal .popupBody .head h5,
.modal#footer_term_3_modal .popupBody .head h5 {
font-size: 18px;
font-weight: bold;
letter-spacing: -0.9px;
text-align: center;
color: #22262f;
}

.modal#footer_term_1_modal .popupBody .body,
.modal#footer_term_2_modal .popupBody .body,
.modal#footer_term_3_modal .popupBody .body {
width: 100%;
padding: 30px 34px 20px 34px;
box-sizing: border-box;
}

.modal#footer_term_1_modal .popupBody .body .textDiv,
.modal#footer_term_2_modal .popupBody .body .textDiv,
.modal#footer_term_3_modal .popupBody .body .textDiv {
width: 100%;
border: 1px solid #e8e8e8;
box-sizing: border-box;
max-height: 280px;
overflow-y: auto;
overflow-x: hidden;
padding: 20px;
}

.modal#footer_term_1_modal .popupBody .body .textDiv::-webkit-scrollbar,
.modal#footer_term_2_modal .popupBody .body .textDiv::-webkit-scrollbar,
.modal#footer_term_3_modal .popupBody .body .textDiv::-webkit-scrollbar {
width: 12px;
height: 12px;
}

.modal#footer_term_1_modal .popupBody .body .textDiv::-webkit-scrollbar-track,
.modal#footer_term_2_modal .popupBody .body .textDiv::-webkit-scrollbar-track,
.modal#footer_term_3_modal .popupBody .body .textDiv::-webkit-scrollbar-track {
background-color: #fff;
border: 1px solid #e2e2e2;
}

.modal#footer_term_1_modal .popupBody .body .textDiv::-webkit-scrollbar-thumb,
.modal#footer_term_2_modal .popupBody .body .textDiv::-webkit-scrollbar-thumb,
.modal#footer_term_3_modal .popupBody .body .textDiv::-webkit-scrollbar-thumb {
background-color: #f2f2f2;
border: 1px solid #e2e2e2;
}

.modal#footer_term_1_modal .popupBody .body .textDiv pre,
.modal#footer_term_2_modal .popupBody .body .textDiv pre,
.modal#footer_term_3_modal .popupBody .body .textDiv pre {
font-size: 16px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
text-align: left;
color: #22262f;
white-space: pre-line;
}

.modal#footer_term_1_modal .popupBody .body button,
.modal#footer_term_2_modal .popupBody .body button,
.modal#footer_term_3_modal .popupBody .body button {
margin: 0 auto;
margin-top: 30px;
background-color: #3d78ff;
color: white;
font-size: 14px;
text-align: center;
width: 200px;
display: block;
border: none;
outline: none;
padding: 5px 0;
cursor: pointer;
}
.intro_pre {
	color: #fff;
	font-family: 'sd-misaeng';
	font-size: 2.5rem;
	position: absolute;
	left: 21rem;
	top: 2rem;
	cursor: pointer;
}

.intro_pre:after {
	content: '';
	position: absolute;
	width: 10rem;
	height: 9rem;
	background-color: #fff;
	top: -90px;
	background: url(/assets/images/intro/intro_pigtail_2.png) no-repeat;
	left: 6rem;
	min-width: 153px;
	display: none;
    
}

.pre_use_popup {
    position: fixed; /* 화면에 고정 */
	width: 100%;
	height: 100%;
	top: 0px;
	z-index: 10000;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    background-color: rgba(0, 0, 0, 0.5); /* 팝업 뒤 배경 반투명 */

}
.pre_use_popup_close {
	position: absolute;
	background-color: #fff;
	width: 4rem;
	height: 4rem;
	border-radius: 100%;
	top: -4.5rem;
	cursor: pointer;
	right: 0px;
}

.pre_use_popup_close div {
	width: 1px;
	height: 2rem;
	background-color: #0088b8;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -0.5px;
	transform: rotate(45deg);
	margin-top: -1rem;
}

.pre_use_popup_close div:nth-of-type(1) {
}

.pre_use_popup_close div:nth-of-type(2) {
	transform: rotate(-45deg);
}
.middle_box_con {
	text-align: center;
}

.middle_box_img {
	max-width: 350px;
	width: 22rem;
	margin-top: -7.5rem;
	margin-left: 11rem;
	display: inline-block;
	float: left;
}

.middle_box_img img {
	width: 100%;
	box-shadow: 0 0 59px -12px #555555;
	border-radius: 1.8rem;
}

.middle_box_text_1 {
	display: block;
	padding-top: 4rem;
}

.middle_box_text_1 h1 {
	text-align: left;
	font-size: 2rem;
	line-height: 2.5rem;
	color: #3e3a39;
	letter-spacing: -2px;
    margin-left: 10px;
}

.middle_box_blue {
	font-weight: normal;
	color: #4aa5ed;
}

.middle_box_text_2 {
	display: block;
	padding-top: 1rem;
}

.middle_box_text_2 h1 {
	text-align: left;
	font-size: 1rem;
	color: #666666;
	line-height: 1.7rem;
    margin-left: 10px;
}
.middle_box_ph {
	border: 0px;
	width: 70%;
	height: 100%;
	font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
}
.middle_box {
	width: 100%;
	background-color: #fff;
	height: 25rem;
	position: absolute;
	top: 50%;
	margin-top: -14rem;
}

.pre_use_popup_close {
	position: absolute;
	background-color: #fff;
	width: 4rem;
	height: 4rem;
	border-radius: 100%;
	top: -4.5rem;
	cursor: pointer;
	right: 0px;
}

.pre_use_popup_close div {
	width: 1px;
	height: 2rem;
	background-color: #0088b8;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -0.5px;
	transform: rotate(45deg);
	margin-top: -1rem;
}

.pre_use_popup_close div:nth-of-type(1) {
}

.pre_use_popup_close div:nth-of-type(2) {
	transform: rotate(-45deg);
}

.middle_box_con {
	text-align: center;
}

.middle_box_img {
	max-width: 350px;
	width: 22rem;
	margin-top: -7.5rem;
	margin-left: 11rem;
	display: inline-block;
	float: left;
}

.middle_box_img img {
	width: 100%;
	box-shadow: 0 0 59px -12px #555555;
	border-radius: 1.8rem;
}

.middle_box_text_1 {
	display: block;
	padding-top: 4rem;
}

.middle_box_text_1 h1 {
	text-align: left;
	font-size: 2rem;
	line-height: 2.5rem;
	color: #3e3a39;
	letter-spacing: -2px;
}

.middle_box_blue {
	font-weight: normal;
	color: #4aa5ed;
}

.middle_box_text_2 {
	display: block;
	padding-top: 1rem;
}

.middle_box_text_2 h1 {
	text-align: left;
	font-size: 1rem;
	color: #666666;
	line-height: 1.7rem;
}

.ph_input_wrap {
	width: 24rem;
	height: 4rem;
	border-radius: 2rem;
	border: 1px solid #eaeaea;
	margin-top: 2rem;
}

.middle_box_ph {
	border: 0px;
	width: 70%;
	height: 100%;
	font-size: 1rem;
}

.submit_ph {
	background: url('/assets/images/intro/intro_submit.png') no-repeat;
	float: right;
	width: 4rem;
	height: 100%;
	background-position: center;
	cursor: pointer;
	border-radius: 100%;
}

.middle_box_con_wrap {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.middle_box_right_con {
	float: left;
	margin-left: 4rem;
    position: absolute;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
}

.submit_ph {
	background: url('/assets/images/intro/intro_submit.png') no-repeat;
	float: right;
	width: 4rem;
	height: 100%;
	background-position: center;
	cursor: pointer;
	border-radius: 100%;
}
.ph_input_wrap {
	width: 24rem;
	height: 4rem;
	border-radius: 2rem;
	border: 1px solid #eaeaea;
	margin-top: 2rem;
}

.middle_box_con_wrap {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.middle_box_right_con {
	float: left;
	margin-left: 4rem;
}

.popup_display_none {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	/* display: none; */
}
p#tgt_cust_no_msg {
    float: left;
    margin: 10px 30px;
    font-size: 0.8rem;
    display: none;
    color: red;
}
p.color-green {
    color: green !important;
}
.AllMallModal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.5s ease; /* 배경 페이드 인 애니메이션 */
}


.AllMallModal .modal-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    background-color: #EFF4FF;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 80vh; /* 고정 높이 설정 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    gap: 10px;
    animation: zoomIn 0.3s ease; /* 모달 확대 애니메이션 */
    position: relative;
    overflow: hidden; /* 모달 내부의 스크롤 */
}

.modal-title {
    grid-column: 1 / span 6;
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: left;
    align-items: center;
}

.mall-count {
    grid-column: 1 / span 6;
    text-align: left;
    font-size: 1rem;
    color: #666;
    display: flex;
    justify-content: left;
    align-items: center;
}

/* openMall과 opcmMall에 스크롤을 추가 */
.openMall.logo-grid, .opcmMall.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(40px, 1fr));
    border-radius: 15px;
    background-color: #fff;
    grid-column: 1 / span 12;
    overflow-y: auto; /* 스크롤 */
    padding: 10px;
    gap: 5px; /* 필요에 따라 가로 간격 조절 */

}
.openMall.logo-grid{
    max-height: 300px;
    grid-row: 3 / span 5;
}
.opcmMall.logo-grid{
    max-height: 200px;
    grid-row: 9 / span 2
}
.openMall, .opcmMall {
    position: relative; /* 스피너 중앙 배치를 위해 부모를 상대 위치로 설정 */
}

/* 전체 스크롤바의 너비 */
.openMall.logo-grid::-webkit-scrollbar,
.opcmMall.logo-grid::-webkit-scrollbar {
    width: 5px; /* 가로 스크롤바 높이 */
    height: 5px; /* 세로 스크롤바 너비 */
}

/* 스크롤바 트랙 (배경) */
.openMall.logo-grid::-webkit-scrollbar-track,
.opcmMall.logo-grid::-webkit-scrollbar-track {
    background: #f1f1f1; /* 트랙 배경색 */
    border-radius: 10px; /* 트랙의 둥근 모서리 */
}

/* 스크롤바 핸들 */
.openMall.logo-grid::-webkit-scrollbar-thumb,
.opcmMall.logo-grid::-webkit-scrollbar-thumb {
    background: #CECDE8; /* 핸들 색상 */
    border-radius: 10px; /* 핸들의 둥근 모서리 */
}

/* 스크롤바 핸들 호버 시 색상 */
.openMall.logo-grid::-webkit-scrollbar-thumb:hover,
.opcmMall.logo-grid::-webkit-scrollbar-thumb:hover {
    background: #9f9ce2; /* 호버 시 핸들 색상 */
}

.logo-grid img {
    height: auto;
    object-fit: contain;
}


.btns {
    grid-column: 2 / span 10;
    grid-row: 12 /span 1;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    gap: 20px;
}

.action-btn {
    font-size: 1rem;
    cursor: pointer;
    border: none;
    width: 200px;
    padding: 5px;
}

.close-btn {
    color: #000000;
    grid-column: 12 / span 1;
    grid-row: 1 / span 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: -15px;
    cursor: pointer;
}

.exit-btn{
    background-color: #8B8B8B;
    color: #fff;
}

.register-btn {
    background-color: #007bff;
    color: white;
    text-align: center;
}
.open-mall-count{
    color: #175A8F;
}
.be-opened-mall-count{
    color: #8A0002;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #3498db;
    animation: spin 1s ease-in-out infinite;
    position: absolute; /* 부모의 중앙에 배치 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 중앙 정렬 */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 모달 창 확대 애니메이션 */
@keyframes zoomIn {
    from { transform: scale(0.7); }
    to { transform: scale(1); }
}
@keyframes zoomOut {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.7); opacity: 0; }
}


@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/ 
@media all and (min-width:1024px) and (max-width:1279px) { 
.section1 .column1 .title {
    font-size: 30px;
    font-weight: 900;
}

.section1 .column1 .contents {
    font-size: 17px;

}
.section1 .column1{
    grid-column: 2 /span 4;
}
.section1 .column2{
    grid-column: 8 / span 4;
    grid-row: 1 / span 5;
}
.section1 .column3{
    grid-column: 6 / span 4;
    grid-row: 1 / span 4;
}
.section1 .column2 img{
    border-radius: 20px;
}
.section2 .column1{
    font-size: 30px;
}
.section5 .column1{
    font-size: 27px;
}
.section6 .item .bold{
    font-size: 19px;
}
.section6 .item .gray{
    font-size: 13px;
}
.section9 .newsBox .title p{
    font-size: 20px;
}
.section9 .newsBox .item .title{
    font-size: 14px;
}
.section9 .content .item .content{
    font-size: 13px;
}


} 

/* 테블릿 가로 (해상도 768px ~ 1023px)*/ 
@media all and (min-width:768px) and (max-width:1023px) { 
.nav{
    gap:25px;
}
.nav a{
    font-size: 14px;
}
.moveButtons{
    gap: 10px;
}
.moveButtons .joinBtn{
    font-size: 12px;
    padding: 10px 0;
}
.moveButtons .loginBtn{
    font-size: 12px;
}
.section1 .column1 .title{
    font-size: 28px;
}
.section1 .column1 .contents{
    font-size: 13px;
}
.section1 .column1{
    grid-column: 2 / span 5;
}
.section1 .column2{
    grid-column: 8 / span 4;
    grid-row: 2 / span 3;
}
.section1 .column2 img{
    border-radius: 20px;
}
.section1 .contetsbox .title{
    font-size: 28px;
}
.section2 .column1{
    font-size: 23px;
}
.section2 .content-wrapper{
    height: 800px;
    grid-template-rows: repeat(8, 1fr);
}
.section2 .column3,
.section2 .column4,
.section2 .column5,
.section2 .column6 {
    height: 450px;
}
.section2 .info{
    margin: 15px;
    font-size: 13px;
}
.section3 .column2 .title{
    font-size: 26px;
}
.section3 .column2 .info{
    font-size: 15px;
}
.section3 .column3 .itembox .info .contet{
    font-size: 17px;
}
.section3 .column4 .itembox .info .title{
    font-size: 13px;
}
.section3 .itembox{
    border-radius: 15px;
}
.section3 .itembox .imgLayer{
    border-radius: 15px 15px 0 0;
}
.section3 .itembox .info .title, .section3 .itembox .info .contet{
    margin: 10px 0 0 15px;
}
.section3 .column4{
    grid-column: 7 / span 5;
    grid-row: 4 / span 4;
}
.section3 .column3{
    grid-column: 2 / span 5;
    grid-row: 4 / span 4;
}
.section4 .column1 .info{
    font-size: 15px;
}

.section4 .column2{
    justify-content: end;
}
.section5 .column1{
    font-size: 20px;
}
.section5 .item .countLayer{
    grid-column: 1 / span 4;
}
.section5 .item p{
    font-size: 18px;
}
.section5 .item .countLayer .numberIncrease{
    font-size: 28px;
}
.section5 .item .imgLayer {
    grid-column: 2 / span 2;
}
.section5 .item .subLayer{
    grid-column: 1 / span 4;
    grid-row: 5 / span 1
}
.section6 .column1 {
    grid-column: 3 / span 8;
    grid-row: 2 / span 2;
}
.section6 .item .bold{
    font-size: 14px;
}
.section6 .item .info{
    font-size: 13px;
}
.section7 .column1 p{
    font-size: 27px;
}
.section9 .newsBox .title p{
    font-size: 20px;
}
.section9 .newsBox .item .title{
    font-size: 13px;
}
.section9 .content .item .content{
    font-size: 12px;
}
.section11 .column3{
    grid-row: 8 /span 1;
}

} 

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/ 
@media all and (min-width:480px) and (max-width:767px) {

iframe[id^="channel-plugin-iframe"] {
    bottom: 100px !important; /* Y축 조정 */
}
.topBtn{
    display: none;
}
.nav{
    display: none;
}
.topbanner .swiper-button-prev,
.topbanner .swiper-button-next {
    display: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom:25px;
}
.section1 .content-wrapper{
    height: 700px;
    grid-template-rows: repeat(7, 1fr);
}
.section1 .column1{
    grid-column: 2 / span 10;
    grid-row: 2 / span 2;
}

.section1 .column2 img{
    border-radius: 20px;
    object-fit: contain;
}
.section1 .column2{
    grid-column: 2 / span 10;
    grid-row: 4 / span 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1 .column2 img{
    width: 48%;
}
.section1 .column1 .title{
    font-size: 30px;
}
.section1 .column2.S3 {
    grid-row: 4 / span 3;
}
.section1 .swiperMoveBox{
    gap: 80px;
}
.section1 .column3{
    display: none;
}
.section2 .column2{
    display: none;
}
.section2 .column1 {
    font-size: 23px;
    font-weight: 700;
    grid-column: 1 / span 12;
    grid-row: 2 / span 1;
}
.section2 .content-wrapper{
    width: 100%;
}
.section3 .content-wrapper{
    height: 1200px;
    grid-template-rows: repeat(12, 1fr);
}
.section3 .column1 {
grid-column: 4 / span 6;
grid-row: 1 / span 2;
}
.section3 .column2 {
    grid-column: 2 / span 10;
    grid-row: 2 / span 1;
}
.section3 .column2 .title{
    font-size: 28px;
}
.section3 .column3 {
    grid-column: 2 / span 10;
    grid-row: 3 / span 4;
}
.section3 .column3 .itembox .info .contet {
font-size: 14px;
}
.section3 .column4 {
grid-column: 2 / span 10;
grid-row: 7 / span 5;
}
.section4 .column1{
grid-column: 2 / span 10;
    grid-row: 1 / span 2;
}
.section4 .column1 .info {
    font-size: 15px;
}
.section4 .column2{
    grid-column: 5 / span 4;
    grid-row: 4 / span 1;
}
.section5 .content-wrapper{
    height: 900px;
    grid-template-rows: repeat(9, 1fr);
    grid-template-columns: repeat(4, 1fr);
    margin: 15px;

}
.section5 .column1 {
font-size: 28px;
font-weight: 700;
grid-column: 1 / span 4;
grid-row: 1 / span 2;
display: flex;
justify-content: center;
align-items: center;
}

.section5 .column2{
    grid-column: 1 / span 4;
    grid-row: 3 /span 2;
}
.section5 .column3{
    grid-column: 1 / span 4;
    grid-row: 5  /span 2;
}
.section5 .column4{
    grid-column: 1 / span 4;
    grid-row: 7  /span 2 ;
}
.section5 .item .imgLayer {
    grid-row: 2 / span 3;
}
.section5 .item .countLayer {
    grid-row: 2 / span 2;
}
.section5 .item{
    border-radius: 15px;
    height: 100%;
}
.section5 .item .imgLayer img {
width: 50%;
height: auto;
}
.section6 .content-wrapper {
height: 800px;
grid-template-rows: repeat(8, 1fr);
}
.section6 .column1 .i2 {
font-size: 15px;
}
.section6 .column1 {
    grid-column: 2 / span 10;
}
.section6 .scroll-container {
grid-column: 1 / span 12;
grid-row: 4 / span 2;
display: flex;
overflow-y: hidden;
padding: 10px 5px;
gap: 10px;
overflow-x:scroll;
margin-bottom: -35px;
}
.section6 .item {
width: 200px;
}
.section6 .item .bold{
    font-size: 17px;
}
.section6 .item .gray{
    font-size: 13px;
}
.section6 .item .info{
    font-size: 17px;
}
.section6 .column6{
    grid-column: 1 / span 12;
    grid-row: 7 / span 1;
}
.section7 .column1 {
    grid-column: 2 / span 10;
}


.section8 .column2 .question {
    font-size: 18px;
}
.section8 .column2{
    grid-column: 2 / span 10;
    grid-row: 2 / span 7;
}
.section8 .column2 .answer {
    font-size: 14px;
}
.section9 .content-wrapper {
    grid-template-columns: repeat(5, 1fr);
    height: 1400px;
    grid-template-rows: repeat(14, 1fr);
    margin: 0 15px;
}
.section9 .newsBox{
    padding: 15px;
}
.section9 .column1{
    grid-column: 1 / span 5;
    grid-row: 2 / span 6;
}
.section9 .column2{
    grid-column: 1 / span 5;
    grid-row: 8 / span 5;
}
.section10{
    padding: 10px 0;
}
.section10 .content-wrapper{
    grid-template-rows: repeat(2,1fr);
    height: 100px;
}
.section10 .column1{
    grid-column: 4 / span 6;
}
.section10 .column1 p{
    font-size: 14px;
}

.section10 .column2{
    grid-column: 4 / span 6;
}
.section10 .column2 a{
    font-size: 14px;
}
.section10 .column1 p:hover {
    font-size: 13.5px;
}
.section10 .column2 a:hover {
    font-size: 13.5px;
}
.section11 .content-wrapper{
    padding: 15px;
    height: 700px;
    grid-template-rows: repeat(14, 1fr);
}
.section11 .column1{
    grid-row:3;
}
.section11 .row.flexWrap{
    font-size: 13px;
    line-height: 1.5;
}
.section11 .column2{
    gap:10px;
    grid-column :1 / span 12;
}
.section11 .column3{
    grid-row: 9 / span 1;
    font-size: 12px;
}
.section11 .column4{
    grid-row: 10 / span 2;
}
.section11 .column4 .banks{
    font-size: 12px;
}

.middle_box_img {
    max-width: 140px !important;
    float: unset !important;
    margin: 0 auto !important;
    margin-top: -6rem ! IMPORTANT;
}
.middle_box {
    height: calc(100%) !important;
}
.middle_box_right_con {
    float: unset !important;
    margin-left: 0 !important;
    padding: 0 2rem 0rem 2rem;
    margin-top: 45px;
}

.middle_box_text_1 h1 {
    text-align: left;
    font-size: 23px;
    line-height: 1.3;
    color: #3e3a39;
    letter-spacing: -2px;
    margin-left: 0;
}
.middle_box_text_2 h1{
    font-size: 13px;
    line-height: 1.3;
    margin-left: 0;
}
.middle_box_img img {
    border-radius: 10px ! IMPORTANT;
}
.ph_input_wrap {
    width: 100%;
    height: 50px;
    border-radius: 2rem;
    border: 1px solid #eaeaea;
    margin-top: 2rem;
}
.middle_box_ph{
    width: 60%;
    font-size: 12px;
}
.middle_box {
    top: 50%;
}
.pre_use_popup_close {
    width: 3rem;
    height: 3rem;
    top: -3.5rem;
    right: 10px;
}
.modal#footer_term_1_modal .popupBody,
    .modal#footer_term_2_modal .popupBody,
    .modal#footer_term_3_modal .popupBody {
        width: 95%;
        max-width: 680px;
        overflow: hidden;
    }

    .modal#footer_term_1_modal .popupBody .head,
    .modal#footer_term_2_modal .popupBody .head,
    .modal#footer_term_3_modal .popupBody .head {
        padding: 20px 14px;
    }

    .modal#footer_term_1_modal .popupBody .head h5,
    .modal#footer_term_2_modal .popupBody .head h5,
    .modal#footer_term_3_modal .popupBody .head h5 {
        font-size: 16px;
    }

    .modal#footer_term_1_modal .popupBody .body,
    .modal#footer_term_2_modal .popupBody .body,
    .modal#footer_term_3_modal .popupBody .body {
        width: 100%;
        padding: 30px 14px 20px 14px;
        box-sizing: border-box;
    }

    .modal#footer_term_1_modal .popupBody .body .textDiv,
    .modal#footer_term_2_modal .popupBody .body .textDiv,
    .modal#footer_term_3_modal .popupBody .body .textDiv {
        width: 100%;
        border: 1px solid #e8e8e8;
        box-sizing: border-box;
        max-height: 280px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
    }

    .modal#footer_term_1_modal .popupBody .body .textDiv pre,
    .modal#footer_term_2_modal .popupBody .body .textDiv pre,
    .modal#footer_term_3_modal .popupBody .body .textDiv pre {
        font-size: 14px;
    }





} 

/* 모바일 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) {

iframe[id^="channel-plugin-iframe"] {
    bottom: 100px !important; /* Y축 조정 */
}
.topbanner .swiper-button-prev,
.topbanner .swiper-button-next {
    display: none;
}
.topBtn{
    display: none;
}
.nav{
    display: none;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom:25px;
}
.section1 .content-wrapper{
    height: 700px;
    grid-template-rows: repeat(7, 1fr);
    margin: 0 15px;
}
.section1 .column1{
    grid-column: 1 / span 12;
    grid-row: 1 / span 2;
}
.section1 .column2{
    grid-column: 1 / span 12;
    grid-row: 4 / span 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section1 .column2 img{
    width: 100%;
}
.section1 .column1 .title{
    font-size: 26px;

}
.section1 .column2.S3 {
    grid-row: 4 / span 3;
}
.section1 .swiperMoveBox{
    gap: 80px;
}
.section1 .contetsbox .title {
    font-size: 26px;
}
.section1 .column1 .contents{
    font-size: 14px;
}
.section1 .column3{
    display: none;
}
.section1 .column2 img{
    border-radius: 20px;
}
.section2 .column2{
    display: none;
}
.section2 .column1 {
    font-size: 23px;
    font-weight: 700;
    grid-column: 1 / span 12;
    grid-row: 2 / span 1;
}
.section2 .content-wrapper{
    width: 100%;
    margin: 0 15px;
}
.section3 .column2 .info {
    font-size: 13px;
}
.section3 .content-wrapper{
    height: 1100px;
    grid-template-rows: repeat(11, 1fr);
}
.section3 .column1 {
grid-column: 4 / span 6;
grid-row: 1 / span 2;
}
.section3 .column2 {
    grid-column: 1 / span 12;
    grid-row: 2 / span 1;
}
.section3 .column2 .title{
    font-size: 22px;
}
.section3 .column3 {
    grid-column: 2 / span 10;
    grid-row: 3 / span 4;
}
.section3 .column3 .itembox .info .contet {
font-size: 14px;
}
.section3 .column4 {
grid-column: 2 / span 10;
grid-row: 7 / span 4;
}
.section3 .column4 .itembox .info .title {
    font-size: 11px;
}
.section4 .column1{
grid-column: 1 / span 12;
    grid-row: 1 / span 2;
}
.section4 .column1 .title{
    font-size: 27px;
    margin-top: 15px;
}
.section4 .column1 .info {
    font-size: 15px;
    margin: 0;
}
.section4 .column2{
    grid-column: 4 / span 6;
    grid-row: 4 / span 2;
}
.section5 .content-wrapper{
    height: 900px;
    grid-template-rows: repeat(9, 1fr);
    grid-template-columns: repeat(4, 1fr);
    margin: 15px;

}
.section5 .column1 {
font-size: 28px;
font-weight: 700;
grid-column: 1 / span 4;
grid-row: 1 / span 2;
display: flex;
justify-content: center;
align-items: center;
}

.section5 .column2{
    grid-column: 1 / span 4;
    grid-row: 3 /span 2;
}
.section5 .column3{
    grid-column: 1 / span 4;
    grid-row: 5  /span 2;
}
.section5 .column4{
    grid-column: 1 / span 4;
    grid-row: 7  /span 2 ;
}
.section5 .item .imgLayer {
    grid-row: 3 / span 3;
}
.section5 .item .countLayer {
    grid-row: 2 / span 2;
    grid-column: 1 / span 3
}
.section5 .item{
    border-radius: 15px;
    height: 100%;
}
.section5 .item .subLayer {
    grid-column: 2 / span 1;
}
.section5 .item .imgLayer img {
width: 50%;
height: auto;
}
.section6 .column1 .i1 {
font-size: 30px;
}
.section6 .content-wrapper {
height: 800px;
grid-template-rows: repeat(8, 1fr);
margin: 0 15px;
}
.section6 .item.underbar p {
font-size: 14px;
}
.section6 .column1 .i2 {
font-size: 15px;
}
.section6 .column1 {
    grid-column: 1 / span 12;
}
.section6 .scroll-container {
grid-column: 1 / span 12;
grid-row: 4 / span 2;
display: flex;
overflow-y: hidden;
padding: 10px 5px;
gap: 10px;
overflow-x:scroll;
margin-bottom: -35px;
}
.section6 .item {
width: 200px;
}
.section6 .item .bold{
    font-size: 17px;
}
.section6 .item .gray{
    font-size: 13px;
}
.section6 .column6{
    grid-column: 1 / span 12;
    grid-row: 7 / span 1;
}
.section7 .content-wrapper{
    height: 700px;
    grid-template-rows: repeat(7, 1fr);
}
.section7 .review-slider {
    grid-row: 3 / span 4
}
.section7 .column1 {
    grid-column: 1 / span 12;
}
.section7 .column1 p {
    font-size: 22px;
}
.section7 .review-item .contentBox{
    width: 300px;

}
.section7 .swiper-slide.review-item .bottom{
    padding-top: 25px;
}
.section8 .column1 {
    grid-column: 2 / span 10;
    grid-row: 1 / span 1;
}


.section8 .column2 .question {
    font-size: 16px;
}
.section8 .column2{
    grid-column: 2 / span 10;
    grid-row: 2 / span 7;
}
.section8 .column2 .answer {
    font-size: 12px;
}
.section9 .content-wrapper {
    grid-template-columns: repeat(5, 1fr);
    height: 1300px;
    grid-template-rows: repeat(13, 1fr);
    margin: 0 15px;
}
.section9 .column1{
    grid-column: 1 / span 5;
    grid-row: 2 / span 5;
}
.section9 .newsBox{
    height: auto;
}
.section9 .newsBox .title p{
    font-size: 18px;
}
.section9 .column2{
    grid-column: 1 / span 5;
    grid-row: 8 / span 5;
}
.section9 .newsBox{
    padding: 15px;
}
.section9 .newsBox .item .title{
    font-size: 13px;
}
.section9 .content .item .content{
    font-size: 12px;
}
.section10{
    padding: 10px 0;
}
.section10 .content-wrapper{
    grid-template-rows: repeat(2,1fr);
    height: 100px;
}
.section10 .column1{
    grid-column: 4 / span 6;
}
.section10 .column1 p{
    font-size: 14px;
}
.section10 .column2{
    grid-column: 4 / span 6;
}
.section10 .column2 a{
    font-size: 14px;
}
.section11 .content-wrapper{
    padding: 15px;
    height: 700px;
    grid-template-rows: repeat(14, 1fr);
}
.section11 .column1{
    grid-row:3;
}
.section11 .row.flexWrap{
    font-size: 13px;
    line-height: 1.5;
}
.section11 .column2{
    gap:10px;
    grid-column :1 / span 12;
}
.section11 .column3{
    grid-row: 9 / span 1;
    font-size: 12px;
}
.section11 .column4{
    grid-row: 10 / span 2;
}
.section11 .column4 .banks{
    font-size: 12px;
}
.middle_box_img {
    max-width: 140px !important;
    float: unset !important;
    margin: 0 auto !important;
    margin-top: -6rem ! IMPORTANT;
}
.middle_box {
    height: calc(100%) !important;
}
.middle_box_right_con {
    float: unset !important;
    margin-left: 0 !important;
    padding: 0 2rem 0rem 2rem;
    margin-top: 45px;
}

.middle_box_text_1 h1 {
    text-align: left;
    font-size: 23px;
    line-height: 1.3;
    color: #3e3a39;
    letter-spacing: -2px;
    margin-left: 0;
}
.middle_box_text_2 h1{
    font-size: 13px;
    line-height: 1.3;
    margin-left: 0;
}
.middle_box_img img {
    border-radius: 10px ! IMPORTANT;
}
.ph_input_wrap {
    width: 100%;
    height: 50px;
    border-radius: 2rem;
    border: 1px solid #eaeaea;
    margin-top: 2rem;
}
.middle_box_ph{
    width: 60%;
    font-size: 12px;
}
.middle_box {
    top: 50%
}
.pre_use_popup_close {
    width: 3rem;
    height: 3rem;
    top: -3.5rem;
    right: 10px;
}
.modal#footer_term_1_modal .popupBody,
    .modal#footer_term_2_modal .popupBody,
    .modal#footer_term_3_modal .popupBody {
        width: 95%;
        max-width: 680px;
        overflow: hidden;
    }

    .modal#footer_term_1_modal .popupBody .head,
    .modal#footer_term_2_modal .popupBody .head,
    .modal#footer_term_3_modal .popupBody .head {
        padding: 20px 14px;
    }

    .modal#footer_term_1_modal .popupBody .head h5,
    .modal#footer_term_2_modal .popupBody .head h5,
    .modal#footer_term_3_modal .popupBody .head h5 {
        font-size: 16px;
    }

    .modal#footer_term_1_modal .popupBody .body,
    .modal#footer_term_2_modal .popupBody .body,
    .modal#footer_term_3_modal .popupBody .body {
        width: 100%;
        padding: 30px 14px 20px 14px;
        box-sizing: border-box;
    }

    .modal#footer_term_1_modal .popupBody .body .textDiv,
    .modal#footer_term_2_modal .popupBody .body .textDiv,
    .modal#footer_term_3_modal .popupBody .body .textDiv {
        width: 100%;
        border: 1px solid #e8e8e8;
        box-sizing: border-box;
        max-height: 280px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
    }

    .modal#footer_term_1_modal .popupBody .body .textDiv pre,
    .modal#footer_term_2_modal .popupBody .body .textDiv pre,
    .modal#footer_term_3_modal .popupBody .body .textDiv pre {
        font-size: 14px;
    }



}