﻿/* ✅ 화면 전체 영역 */
Member.member-wrap {
  width: 100%;
  padding: 60px 0;
  box-sizing: border-box;
}

/* ✅ 웹페이지 반경 1200px */
.member-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.member-text p{
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;  
  font-size: 20px;
  color: #000000;
  text-decoration: none;
}

/* 카드 */
.member-card {
  flex: 1;
  border: 1px solid #b3b3b3;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 30px;
}

.member-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.member-desc {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.member-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  background-color: #5873fe;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: .2s ease;
  border-radius: 6px;
}


.member-btn:hover {
  background: #485fcf;
}

.member-btn-way {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: .2s ease;
  margin-left: 10px;
}


.member-btn-way:hover {
  opacity: .8;
}


.member-btn_02 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: .2s ease;
  margin:0;
  border-radius: 6px;
}

.member-btn_02:hover {
  opacity: .8;
}


/* 하단 링크도 1200px 기준 가운데 */
.member-link {
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 100px;
}

.member-link a {
  font-size: 18px;
  color: #555;
  text-decoration: none;
}

.member-link a:hover {
  text-decoration: underline;
}


/*가입신청 step*/
.step-wrap {
  width: 100%;
  padding: 40px 0;
  margin-top: -40px;
}

.step-list {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;   /* 수정 */
gap: 120px;               
position: relative;
padding: 0;
list-style: none;
}

/* 가로 라인 */
.step-list::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #8fa0ff;
  z-index: 0;
}

.step-item {
  position: relative;
  text-align: center;
  z-index: 1;
}

/* 원 */
.step-circle {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  border: 2px solid #8fa0ff;
  background: #fff;
  color: #8fa0ff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

/* 텍스트 */
.step-text {
  display: block;
  font-size: 16px;
  color: #999;
}

/* ✅ active 상태 */
.step-item.active .step-circle {
  background-color: #5b6cff;
  border-color: #5b6cff;
  color: #fff;
}

.step-item.active .step-text {
  color: #000;
  font-weight: 600;
}


/*이용약관*/

.Terms {
  max-width: 1200px;
  margin: 30px auto 0;
  margin-bottom: 30px;
  margin-left: 600px;
  text-align: left;
  font-size: 20px;  
  color: #000000;
  font-weight: 600;
}

.terms-text {
  width: 100%;
  height: 200px;
  resize: none;
}


.terms-box {
  max-width: 1200px;
  margin: 15px auto 0;
  padding: 20px 10px;

  border-top: 1px solid #ddd;     /* ⭐ 위 라인 */
  border-bottom: 1px solid #ddd;  /* ⭐ 아래 라인 */

  font-size: 13px;
  line-height: 1.6;
  color: #333;

  height: 200px;
  overflow-y: auto;
  box-sizing: border-box;
}


/*휴대폰 본인인증*/
.cert-wrap {
  width: 100%;
  padding: 60px 0;
}

.cert-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-icon img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.cert-item h3 {
  max-width: 1200px;   
  margin: 0 auto;  
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
  line-height: 2;
}

.cert-item span {
  font-size: 20px;
  font-weight: 400;
  color: #6e6e6e;
}


.cert-item p {
  max-width: 1200px;   
  margin: 0 auto;
  margin-top: 20px;    
  text-align: center;    
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}


/*step 3 업종선택*/
/* wrapper */
.eyestore-card-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.eyestore-card-item {
  flex: 1;
  border: 1px solid #eee;
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 100px;

  /* a 태그 기본값 제거 */
  text-decoration: none;
  color: inherit;
}

.eyestore-card-icon {
  display: block;
  margin: 0 auto 15px;
  width: 36px;
}

.eyestore-card-text {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

/* hover 효과 (선택) */
.eyestore-card-item:hover {
  border-color: #9aa8ff;
  background-color: #edf0ff;
}


/*step4 정보입력*/
/* 모든 테이블 공통 */
.table_service {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
  table-layout: fixed;
}

/* 첫 줄 헤더 느낌 */
    .table_service tr:first-child td {
        background: #e1e4f1;
        font-weight: 600;
        text-align: center !important;
        vertical-align: middle;
        border-bottom: 1px solid #c6c8d3;
    }

/* 기본 셀 */
    .table_service td {
        height: 40px;
        padding: 12px 10px;
        border-bottom: 1px solid #c6c8d3;
        vertical-align: middle !important;
    }

/* 마우스 오버 */
    .table_service tr:hover {
        background: #fafafa;
    }

/* 1열: 선택 */
    .table_service tr td:nth-child(1) {
        text-align: center;
    }

/* 2열: 솔루션명 */
    .table_service tr td:nth-child(2) {
        text-align: left;
    }

/* 3열: 수량 */
    .table_service tr td:nth-child(3) {
        text-align: center;
    }

/* 4열: 월정료 (오른쪽 정렬 핵심) */
    .table_service tr td:nth-child(4) {
        text-align: center !important;
        padding-right: 16px; /* 숫자 정렬 예쁘게 */
    }

/* 5열: 비고 */
    .table_service tr td:nth-child(5) {
        text-align: center;
    }

/* 6열: 상세 */
    .table_service tr td:nth-child(6) {
        text-align: center;
    }


/*선택-체크박스 가운데정렬*/
    .table_service tr td:first-child {
        text-align: center;
    }

/* 안쪽에 들어간 테이블 (패키지 설명) */
    .table_service table {
        width: auto;
        margin: 0;
    }

    .table_service table td {
        padding: inherit; /* 12px 10px 그대로 */
        border-bottom: inherit; /* 필요하면 유지 (아래에서 필요시 제거 가능) */
        vertical-align: inherit;
        font-size: inherit; /* 14px 등 바깥값 그대로 */
        font-weight: inherit;
        font-family: inherit;
        color: inherit; /* #333 그대로 */
        background: transparent;
    }

/* input */
input[type="radio"],
input[type="checkbox"] {
  transform: scale(1.1);
  cursor: pointer;
}

input[type="text"],
input[type="password"] {
    font-size: 16px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left;
}

select {
    font-size: 16px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left;
}

textarea {
    
    font-size: 16px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left;
}


/* 기존 Header_C 클래스가 이미 있으니 살려서 보강 */
.Header_C {
  background: #f7f8fa;
  font-weight: 600;
  text-align: center;
}

/* 패키지 제목 줄 — 바깥 td와 완전히 동일하게 보이게 */
.table_service table tr:first-child td {
    background: transparent !important;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0;
    padding: 12px 10px; /* 바깥 td와 동일 */
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* 패키지 하위 항목(①②③) 왼쪽 정렬 */
.table_service table tr:not(:first-child) td {
    text-align: left !important;
    padding-left: 10px;
    line-height: 1.3;
    padding-top: 4px;
    padding-bottom: 4px;
}

/* 중첩 table 100% */
.table_service tr td table {
    width: 100%;
    margin: 0;
}

/* 패키지 행에서 수량/월정료 칸을 위쪽 기준으로 */
.table_service tr td:nth-child(3),
.table_service tr td:nth-child(4) {
    vertical-align: top;
    padding-top: 14px; /* 제목줄 라인에 맞게 살짝 내려줌 */
}

/* ①②③ 왼쪽 정렬 */
.table_service tr td:nth-child(2) table td {
    text-align: left !important;
    padding-left: 0 !important;
}



/* 패키지 하위 월정료(₩14,000 / ₩5,000 / ₩1,000) 가운데 정렬 */
.table_service tr td:nth-child(4) table td {
    text-align: center !important;
}


/* 6열 공통 폭 (두 표 동일하게 맞춤) */
.table_service tr td:nth-child(1) {
    width: 70px;
    text-align: center;
} /* 선택 */
.table_service tr td:nth-child(2) {
    width: 520px;
    text-align: left;
} /* 솔루션명/부가서비스명 */
.table_service tr td:nth-child(3) {
    width: 90px;
    text-align: center;
} /* 수량 */
.table_service tr td:nth-child(4) {
    width: 150px;
    text-align: center;
} /* 월정료 */
.table_service tr td:nth-child(5) {
    width: 170px;
    text-align: center;
} /* 비고 */
.table_service tr td:nth-child(6) {
    width: 70px;
    text-align: center;
} /* 상세 */

/* 수량 input 박스 중앙 정렬 + 높이 고정 */
.table_service tr td:nth-child(3) input[type="text"] {
    width: 50px;
    height: 25px;
    line-height: 32px;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}



.table_shop {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #1a1a1a;
    table-layout:inherit;
}


.table_shop td {
    height: 40px;
    padding: 12px 10px;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
    vertical-align: middle !important;
}

.table_shop tr:hover {
    background: #fafafa;
}
.table_shop tr td:nth-child(1) {
    width: 15%;
    text-align: center;
}
.table_shop tr td:nth-child(2) {
    width: 35%;
    text-align: left;
}
.table_shop tr td:nth-child(3) {
    width: 15%;
    text-align: center;
}
.table_shop tr td:nth-child(4) {
    width: 35%;
    text-align: center;
}

/*---------*/
.table_shop_02 td {
    height: 40px;
    padding: 12px 10px;
    border-top: 1px solid #c6c8d3;
    border-bottom: 1px solid #c6c8d3;
    vertical-align: middle !important;
}

.table_shop_02 {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    table-layout:inherit;
}


.table_shop_02 td {
    height: 40px;
    padding: 12px 10px;
    border-top: 1px solid #c6c8d3;
    border-bottom: 1px solid #c6c8d3;
    vertical-align: middle !important;
}

.table_shop_02 tr:hover {
    background: #fafafa;
}
.table_shop_02 tr td:nth-child(1) {
    background-color: #e1e4f1;
    width: 15%;
    text-align: center;
}
.table_shop_02 tr td:nth-child(2) {
    width: 35%;
    text-align: left;
}


/*---------*/

/*---------*/

.table_shop_03 td {
    height: 40px;
    padding: 12px 10px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle !important;
}

.table_shop_03 {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    table-layout:inherit;
}


.table_shop_03 td {
    height: 40px;
    padding: 12px 10px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle !important;
}

.table_shop_02 tr:hover {
    background: #fafafa;
}
.table_shop_03 tr td:nth-child(1) {
    background-color: #e1e4f1;
    width: 15%;
    text-align: center;
}
.table_shop_03 tr td:nth-child(2) {
    width: 35%;
    text-align: left;
}

/*---------*/


.table_shop_detail {
    width: 100%;
    max-width: 1200px;    
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
        

}

.table_shop_detail td {
    border: none;
    padding: 0;
    padding: 0px 6px;
    margin: 0;
    vertical-align: middle !important;
}

.table_shop_detail tr td:nth-child(1) {
    width: 20%;
    text-align: center;
}

.table_shop_detail tr td:nth-child(2) {
    width: 20%;
    text-align: center;
}

.table_shop_detail tr td:nth-child(3) {
    width: 20%;
    text-align: center;
}

.table_shop_detail tr td:nth-child(4) {
    width: 20%;
    text-align: center;
}

.table_shop_detail tr td:nth-child(5) {
    width: 20%;
    text-align: center;
}


.table_shop td:nth-child(1),
.table_shop td:nth-child(3) {
  background-color: #e1e4f1;
  font-weight: 500;
  color: #333;
}


/*---------*/


.table_shop_detail_02 {
    width: 100%;
    max-width: 1200px;    
    border-collapse: collapse;
    font-size: 14px;
    font-weight: 500;
    color: #1f1f1f;   

}

.table_shop_detail_02 td {
    border: none;
    padding: 0;
    padding: 0px 6px;
    margin: 0;
    vertical-align: middle !important;    
}

.table_shop_detail_02 tr td:nth-child(1) {
    width: 20%;
    text-align: center;
    background-color: #fff;
}

.table_shop_detail_02 tr td:nth-child(1):hover {
        background: #fafafa;
}

.table_shop_detail_02 tr td:nth-child(2) {
    width: 20%;
    text-align: center;
}

.table_shop_detail_02 tr td:nth-child(3) {
    width: 20%;
    text-align: center;
}

.table_shop_detail_02 tr td:nth-child(4) {
    width: 20%;
    text-align: center;
}

.table_shop_detail_02 tr td:nth-child(5) {
    width: 20%;
    text-align: center;
}

/*---------*/


.table_memo {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    table-layout: inherit;
}


.table_memo td {
    height: 40px;
    padding: 12px 10px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle !important;
}

.table_memo tr:hover {
    background: #fafafa;
}

.table_memo tr:hover {
    background: #fafafa;
}

.table_memo tr td:nth-child(1) {
    width: 15%;
    text-align: center;
}

.table_memo tr td:nth-child(2) {
    width: 85%;
    text-align: left;
}








/* 모든 테이블 공통 */
.table_extra {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    
}

    /* 기본 셀 */
.table_extra td {
    
    padding: 12px 10px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle !important;
}

/* 마우스 오버 */
.table_extra tr:hover {
    background: #fafafa;
}

.table_extra tr td:nth-child(1) {
    width: 20%;
    text-align: center;
}
.table_extra tr td:nth-child(2) {
    width: 20%;
    text-align: center;
}
.table_extra tr td:nth-child(3) {
    width: 20%;
    text-align: center;
}
.table_extra tr td:nth-child(4) {
    width: 20%;
    text-align: center;
}
.table_extra tr td:nth-child(5) {
    width: 20%;
    text-align: center;
}




.help-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    /*background: linear-gradient(145deg, #7b91fd, );*/
    background: #5873fe;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(88, 115, 254, 0.25);
    padding: 0;
}

.help-btn:hover {
    background: linear-gradient(145deg, #5b75fc, #2e51fd);
}

.help-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(47, 128, 237, 0.4);
}


/* 중복확인 버튼 */
.btn-check {
    margin-left: 6px;
    padding: 0 14px;
    height: 30px;
    border: none;
    background: #5873fe;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}

    .btn-check:hover {
        background: #415ce4;
    }

/* 검색 버튼 */
.btn-search {
    margin-left: 6px;
    padding: 0 14px;
    height: 30px;
    border: none;
    background: #5873fe;
    color: #fff;
    font-size: 13px;    
    border-radius: 4px;
    cursor: pointer;
}

.btn-search:hover {
    background: #4a5bf0;
}

.container {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-box_02 {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin: 0 auto 30px;
    line-height: 1.8;
    margin-top: 40px;
}

.info-box_02 .highlight {
    color: #5873fe;
    font-weight: bold;
}


.Member-btn-row{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
  box-sizing:border-box;
}

.Member-btn-wide{
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  margin-bottom: 130px;
  border-radius: 6px;
  background:#ffffff;
  border: 1px solid rgb(153, 153, 153);
  color:#2e2e2e;
  font-weight:600;
  text-decoration:none;
  box-sizing:border-box;
  transition: transform .25s cubic-bezier(.2,.8,.2,1),
              background-color .2s ease,
              color .2s ease;
  font-size: 20px;
}

.Member-btn-wide:hover{
  background:#5873fe;
  border:none;
  color:#fff;
}
.Member-btn-wide:active{ transform:translateY(0); }

@media (max-width:1024px){
  .Member-btn-row{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:520px){
  .Member-btn-row{ grid-template-columns:1fr; }
}



