/* Reset & Base */
:root {
  --red: #e1363c;
  --black: #222;
  --gray: #ddd;
  --gray2: #666;
  --white: #fff;
  --bg-light: #f9f9f9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; } /* 1rem = 10px 기준 */
body { 
    font-family: 'Pretendard', sans-serif; /* 폰트는 예시입니다 */
    font-size: 1.6rem; 
    color: var(--black); 
    line-height: 1.5;
    background-color: #fff;
    max-width: 440px; /* 요청하신 모바일 너비 */
    margin: 0 auto;
}
img { max-width: 100%; display: block; }
ul, li { list-style: none; }
a { text-decoration: none; color: inherit; }
.maintab-Wrap .maintab{padding-bottom:1rem;}

/* Utility */
.mb20 { margin-bottom: 2rem !important; }
.red { color: var(--red) !important; }
.fwbold { font-weight: bold !important; }
.gray2 { color: var(--gray2) !important; }

/* Layout & Container */
.inner { padding: 0 ; }
.conBox { margin-bottom: 6rem; width: 100%; }
.conBox.cen { text-align: center; }

/* Title Area */
.tabtitle { margin: 4rem 0; text-align: center; word-break: keep-all; }
.tabtitle h2 { font-size: 2.2rem; font-weight: 700; line-height: 1.3; margin-bottom: 1.5rem; }
.tabtitle p { font-size: 1.5rem; color: var(--gray2); line-height: 1.6; }

/* Content Headings */
.conBox h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; color: #000; }
.conBox > p { font-size: 1.4rem; color: var(--gray2); margin-bottom: 3rem; word-break: keep-all;}

/* Red Box List (Vertical Stack) */
.flex_column { display: flex; flex-direction: column; gap: 1.5rem; }
.redBox {
    background: var(--red);
    color: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
    box-shadow: 0 10px 20px rgba(225, 54, 60, 0.2);
    height:120px;
}
.redBox img { width: 5rem; height: auto; flex-shrink: 0; }
.redBox h5 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.redBox .textArea { font-size: 1.3rem; font-weight: 400; opacity: 0.9; line-height: 1.4;margin-bottom:0; }

/* Table Area (Scrollable) */
.tableArea {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--red);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.table-scroll { overflow-x: auto; white-space: nowrap; }
.tableArea table { width: 100%; font-size: 1.3rem; border-collapse: collapse; }
.tableArea thead { background: var(--red); color: var(--white); }
.tableArea th, .tableArea td { padding: 1.2rem; text-align: center; border-bottom: 1px solid #eee; }
.tableArea img { width: 100%; margin: 0 auto; border-radius: 0.8rem; }

/* Goobne History */
.hisTitle { font-size: 3.2rem; font-weight: 800; color: var(--red); margin-bottom: 2rem; letter-spacing: -1px; }
.history-flex { display: flex; flex-direction: column; gap: 2rem; }
.history-flex h3 { font-size: 2.2rem; line-height: 1.3; }
.STU-01-end { text-align: left; font-size: 1.4rem; color: var(--gray2); }

/* Statistics (Store Box) */
.stats-container {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-top: 2rem;
}
.storeBox {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem 1rem;
    border-radius: 2rem;
    text-align: center;
}
.storeBox h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.storeBox p { font-size: 1.1rem; margin-bottom: 1rem; }
.storeBox h1.fs45 { font-size: 2.8rem; margin: 0; color: var(--red); }

/* Supervisor / Support Grid (2 Columns) */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.Box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}
.Box:active { transform: scale(0.98); }
.Box img { width: 96%; margin: 0 auto 1.5rem; }
.Box h5 { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; word-break: keep-all; }
.Box .textArea { font-size: 1.2rem; color: var(--gray2); word-break: keep-all; line-height: 1.4;margin-bottom:0; }

/* Relative Text Box (Image overlay) */
.relbox .Box { padding: 0; border: none; overflow: hidden; position: relative; }
.relbox .Box img { width: 100%; margin: 0; border-radius: 2rem; filter: brightness(0.6); }
.relbox .textbox {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%;
    text-align: center;
}
.relbox h5 { color: #fff; margin-bottom: 0.5rem; font-size: 1.6rem; }
.relbox .textArea { color: rgba(255,255,255,0.9); font-size: 1.2rem; }

/* Benefits Grid (Small Icons) */
.conBox .textStyle01 { font-size: 2.4rem; margin-bottom: 2rem; line-height: 1.3; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.benefit-grid .Box { padding: 2rem 1rem 3rem; display: flex; flex-direction: column; align-items: center; justify-content: start; height: 100%; }
.benefit-grid .Box img { width: 7rem; margin-bottom: 1rem; }
.benefit-grid h5 { font-size: 1.4rem; margin-bottom: 0.5rem; }


.slide-text p{color:var(--black);}
.slide-img{width:100%;height:auto;}
.swiper-slide{width:90% !important;}
.slide-info{margin-bottom:1rem;}