@charset "utf-8";

.mid-wrap{
  width:100%;
  background:#fff;
  padding:40px 0;
}

.mid-inner{
  width:100%;
  max-width:1100px;   /* PC 최대폭 */
  margin:0 auto;
  padding:0 20px;     /* 모바일 좌우 여백 */
  word-break: keep-all;
}

/* 서브 비주얼 */
.sub-visual{
  width:100%;
  margin-bottom:30px;
}

.sub-visual img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}


/* 타이틀 */
.sub_wrap {}

.sub-title{
  font-size:34px;
  font-weight:900;
  margin-bottom:12px;
}

.sub-title-line{
  width:100%;
  height:3px;
  background:#dcdcdc;
  margin-bottom:28px;
}



/* 01-인사말 */
.greet{
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 14px;
  padding: 26px 24px;
}

.greet-lead{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #111;
}

.greet .txt{
  margin: 0 0 25px;
  letter-spacing: -0.01em;
  color: #333;
}

/* ✅ 모바일에서 <br> 때문에 줄이 너무 깨지는 문제 해결 */
.greet .txt br{ display: none; }

/* 서명 */
.greet-sign{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed #e9e9e9;
  color: #444;
  text-align: right;
  word-break: keep-all;
}

.greet-sign .sign-name{
  font-weight: 800;
  color: #111;
  margin-left: 6px;
}

/* ====== Tablet 이하 ====== */
@media (max-width: 768px){
  .mid-wrap{padding:25px 0 0 0;}
  .sub-visual{margin-bottom:20px;}
  .sub-title{ font-size: 24px;}

  .greet{ padding: 22px 18px; border-radius: 12px; }
  .greet-lead{ font-size: 17px; }
  .greet .txt{ font-size: 14.5px; line-height: 1.8; }
}

/* ====== Mobile ====== */
@media (max-width: 480px){
  .greet{ padding: 22px 14px; }
  .greet .sub-title{ font-size: 18px; }
  .greet{
    padding: 18px 14px;
    border-radius: 12px;
  }
  .greet-lead{ font-size: 16px; margin-bottom: 12px; }
  .greet .txt{
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
  }
  .greet-sign{
    font-size: 13.5px;
    text-align: left; /* 모바일은 왼쪽정렬이 더 읽기 편함 */
  }
}




/* 02-프로그램 */

.program{
  padding-top:12px;
}

.program table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}

.program table th{
  background:#35b9d6;
  color:#fff;
  font-weight:600;
  padding:14px 10px;
  text-align:center;
  border-bottom:2px solid #ddd;
}

.program td{
  border:1px solid #35b9d6;          /* 이미지처럼 청록 라인 */
  padding:14px 14px;
  font-size:15px;
  line-height:1.55;
  vertical-align:middle;
  background:#fff;
  word-break:keep-all;
}

.program .time{
  font-weight:800;
  text-align:center;
  white-space:nowrap;
}

.program .speaker{
  font-weight:800;
  text-align:center;
  white-space:nowrap;
}

.program .break{
  text-align:center;
  font-weight:800;
  background:#f3fbff;
}

.break-row td,
.lunch-row td{
  background:#f3fbff;
}

/* ===== Mobile: 표 → 카드형 ===== */
@media (max-width:768px){
	.program table thead{
		display:none;
	  }

  .program table,
  .program tbody,
  .program tr{
    display:block;
    width:100%;
  }

  /* 일반 행: 카드 */
  .program tr{
    border:1px solid #35b9d6;
    border-radius:12px;
    overflow:hidden;
    margin:0 0 12px;
    background:#fff;
  }

  /* td를 한 줄씩 */
  .program td{
    display:flex;
    gap:10px;
    align-items:flex-start;
    width:100%;
    border:none;
    border-top:1px solid rgba(53,185,214,0.35);
    padding:12px 14px;
    font-size:14px;
  }
  .program td:first-child{
    border-top:none;
  }

  /* 라벨 표시 */
  .program td[data-label]::before{
    content: attr(data-label);
    flex:0 0 64px;
    font-weight:800;
    color:#0b5a6a;
    letter-spacing:-0.02em;
  }

  /* 시간/연자 정렬 PC처럼 강제하지 않기 */
  .program .time,
  .program .speaker{
    text-align:left;
    white-space:normal;
  }

  /* Break / 점심 같은 colspan 행 처리 */
  .program tr.break-row,
  .program tr.lunch-row{
    border-radius:12px;
  }
  .program tr.break-row td,
  .program tr.lunch-row td{
    display:block;
    border:none;
    padding:14px 14px;
    background:#f3fbff;
    font-weight:900;
  }
  .program tr.break-row td::before,
  .program tr.lunch-row td::before{
    content:"";
    display:none;
  }
}












/* 03-등록안내 */
.guideWrap{
/*
  width:1100px;
  max-width:calc(100% - 40px);
  margin:0 auto;
  padding:30px 0 80px;
  color:#111;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", Arial, sans-serif;
  border:2px solid red;*/
}

.page-rule{
  height:2px;
  background:#d9d9d9;
  width:100%;
}

/* ===== Blocks ===== */
.block{
  /*padding:34px 0;
  border-bottom:1px solid #ededed;*/
  padding-bottom:35px;
}
.block:last-child{ border-bottom:none; }

.block-title{
 position:relative;
  padding-left:18px;   /* 라인 공간 */
  font-size:24px;
  font-weight:900;
  margin-bottom:18px;
  color:#004270;
  letter-spacing:-0.5px; 
}

.block-title::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:7px;
  height:24px;
  background:#004270;     /* 원하는 컬러 */
  border-radius:3px;
}

.block-title .small{
  font-size:14px;
  font-weight:700;
  color:#666;
  margin-left:6px;
}


.contact-row{
  display:flex;
  gap:14px;
  padding:10px 0;
  border-bottom:1px dashed #ededed;
}
.contact-row:last-child{ border-bottom:none; }
.contact-row .label{
  width:90px;
  font-weight:900;
  color:#333;
}
.contact-row .value{
  flex:1;
  color:#111;
}


/*
.body{
  font-size:16px;
  line-height:1.9;
  margin:10px 0 0;
  color:#222;
}*/

/* ===== Notice Box ===== */
.notice{
  background:#f7fafc;
  border:1px solid #e6eef5;
  border-radius:12px;
  padding:16px 18px;
  font-size:16px;
  line-height:1.2;
  color:#222;

}
.notice p{ margin:6px 0;}

.muted{ color:#666; }
.inline{ margin-left:10px; }

/* ===== Pill ===== */
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #e3e3e3;
  background:#fff;
  font-size:16px;
  line-height:1.2;
}
.accent{ color:#d93025; font-weight:800; }

/* ===== List ===== */
.list{
  margin:0;
  padding-left:18px;
  font-size:16px;
  line-height:1.9;
  color:#222;
}
.list li{ margin:6px 0; }
.list.compact li{ margin:4px 0; }

/* ===== Table ===== */
.table-wrap{
  margin-top:12px;
  border:1px solid #e6e6e6;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
.tbl{
  width:100%;
  border-collapse:collapse;
  font-size:16px;
}
.tbl th, .tbl td{
  padding:14px 16px;
  border-bottom:1px solid #ececec;
  border-right:1px solid #ececec;   /* 추가 */
}
.tbl thead th{
  background:#f3f5f7;
  font-weight:900;
  text-align:center;
}
.tbl tbody tr:last-child td{ border-bottom:none; }

/* 마지막 열은 오른쪽 선 제거 */
.tbl th:last-child,
.tbl td:last-child{
  border-right:none;
}
/* 첫번째 열 왼쪽 선 추가 */
.tbl th:first-child,
.tbl td:first-child{
  border-left:1px solid #ececec;
}



.center{ text-align:center; }

.hint{
  margin:10px 0 0;
  font-size:16px;
  font-weight:800;
  color:#d93025;

}

/* ===== Bank/Contact ===== */
.bank, .contact{
  margin-top:12px;
  border:1px solid #e6e6e6;
  border-radius:12px;
  padding:16px 16px;
  background:#fff;
}
/*
.bank-row, .contact-row{
  display:flex;
  gap:14px;
  padding:10px 0;
  border-bottom:1px dashed #ededed;
}
.bank-row:last-child, .contact-row:last-child{ border-bottom:none; }
.label{
  width:90px;
  font-weight:900;
  color:#333;
}
.value{
  flex:1;
  color:#111;
}
*/
.bank-row.single-line {
  display: flex;
  justify-content: flex-start;   /* 가로 왼쪽 정렬 */
  align-items: center;       /* 세로 가운데 정렬 */
  gap: 100px;
  flex-wrap: nowrap;         /* 줄바꿈 방지 */
  text-align: left;
  color:#222222;
}

.bank-row.single-line strong {
  font-weight: 700;
  margin-right: 20px;
}

/* 모바일에서도 한 줄 유지 */
@media (max-width: 768px) {
  .bank-row.single-line {
    flex-wrap: nowrap;
	gap: 40px;
   
  }
}



/* ===== Buttons ===== */
.btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 14px;
  border-radius:10px;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
}
.btn:hover{ opacity:0.92; }

.btn.ghost{
  background:#fff;
  color:#111;
  border:1px solid #d9d9d9;
}

/* ===== Refund badges ===== */
.ok{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#e8f6ee;
  color:#167a3e;
  font-weight:900;
}
.no{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#fdecec;
  color:#d93025;
  font-weight:900;
}

/* ===== Responsive ===== */
@media (max-width: 720px){
  .page-title{ font-size:36px; }
  .block-title{ font-size:20px; }
  .tbl{ font-size:14px; }
  .notice, .body, .list{ font-size:15px; }
  .label{ width:72px; }
}



.download-btn-gray{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 28px;
  margin-top:14px;

  font-size:18px;
  font-weight:800;
  letter-spacing:-0.2px;

  color:#333;
  text-decoration:none;

  border-radius:12px;
  border:1px solid #bfc3c7;

  background:linear-gradient(#f7f7f7, #dcdcdc);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 3px 6px rgba(0,0,0,.15);

  transition:all .15s ease;
}

/* 아이콘 */
.download-btn-gray .icon{
  font-size:20px;
}

/* hover */
.download-btn-gray:hover{
  background:linear-gradient(#ffffff, #d0d0d0);
  transform:translateY(-1px);
}


/* 안내 박스 */
.refund-note{
  background:#f7fafc;
  border:1px solid #e6eef5;
  border-radius:12px;
  padding:16px 18px;
  line-height:1.9;
  font-size:16px;
  color:#222;
}

.refund-note p{
  margin:6px 0;
}

.refund-email{
  margin-top:10px;
}


/* 도표 전체 */
.refund-grid{
  margin-top:16px;
  border:1px solid #e6e6e6;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

/* 한 줄 */
.refund-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 18px;
  border-bottom:1px solid #ededed;
}

.refund-row:last-child{
  border-bottom:none;
}

/* 왼쪽 텍스트 */
.refund-left{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:baseline;
  min-width:0;
}

.refund-label{
  font-weight:900;
  color:#111;
  letter-spacing:-0.3px;
}

.refund-text{
  color:#555;
  font-weight:600;
  letter-spacing:-0.2px;
}

/* 오른쪽 배지 영역 */
.refund-right{
  flex:0 0 180px;              /* ✅ 폭 고정해서 정렬 안정 */
  display:flex;
  justify-content:center;
}

/* 배지(기존 ok/no 그대로 써도 됨) */
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:15px;
  white-space:nowrap;
}

.badge.ok1{
  color:#000;
}

.badge.no1{
  color:#b42318;
}

.danger{
  color:#d93025;
  font-weight:800;
}


/* 모바일 */
@media (max-width:720px){
  .refund-row{
    padding:16px 14px;
  }
  .refund-right{
    flex:0 0 120px;
  }
  .badge{
    font-size:14px;
    padding:7px 12px;
  }
}




/* 다운로드 영역 */
.refund-download{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

/* ✅ 회색 그라데이션 버튼 (이전 버튼과 동일) */
.download-btn-gray{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 22px;

  font-size:16px;
  font-weight:800;

  color:#333;
  text-decoration:none;

  border-radius:12px;
  border:1px solid #bfc3c7;

  background:linear-gradient(#f7f7f7, #dcdcdc);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 3px 6px rgba(0,0,0,.15);

  transition:all .15s ease;
}

.download-btn-gray .icon{
  font-size:18px;
  line-height:1;
}

.download-btn-gray:hover{
  background:linear-gradient(#ffffff, #d0d0d0);
  transform:translateY(-1px);
}

/* 공용 */
.muted{ color:#000; font-weight:700;}
.muted2{ color:#666;}
.muted_email{ color:#009066;}
.inline{ margin-left:6px; }

/* 모바일 */
@media (max-width:720px){
  .refund-note{ font-size:15px; }
  .refund-table{ font-size:14px; }
  .refund-result{ width:160px; }
  .download-btn-gray{ width:100%; justify-content:center; }
}






/* 카드 */
.credit-body{

}

/* 섹션 */
.credit-section{
  margin-top:35px;
}

.credit-section:first-child{
  margin-top:0;
}
/*
.credit-head{
  font-size:24px;
  font-weight:800;
  margin-bottom:12px;
  padding-left:12px;
  border-left:5px solid #000;
}*/

.credit-head{
  position:relative;
  padding-left:18px;   /* 라인 공간 */
  font-size:24px;
  font-weight:900;
  margin-bottom:18px;
  color:#004270;
  letter-spacing:-0.5px; 
}

.credit-head::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:7px;
  height:24px;
  background:#004270;     /* 원하는 컬러 */
  border-radius:3px;
}

/* 리스트 */
.credit-list{
  padding-left:18px;
  line-height:1.8;
  font-size:16px;
}

.credit-list li{
  padding:5.5px 0;
	border-bottom:1px solid #eee;
}

/* ===== Notice Box ===== */
.credit-list-notice{
  background:#f7fafc;
  border:1px solid #e6eef5;
  border-radius:12px;
  padding:16px 18px;
  font-size:16px;
  line-height:1.2;
  color:#222;

}
.credit-list-notice p{ margin:6px 0; }

.credit-list-muted{ color:#666; }
.credit-list-inline{ margin-left:10px; }





.blue{ color:#0047d6; font-weight:700; }
.red{ color:#d60000; font-weight:800; }
.gray{ color:#666; }
.yellow{ background:#fff5a8; padding:2px 6px; }
.blue2 { background:#f3f5f7; padding:2px 6px; }

/* 2열 */
.credit-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.credit-box{
  border:1px solid #ddd;
  border-radius:10px;
  padding:16px;
}

.credit-mini-title{
  font-weight:800;
  margin-bottom:10px;
}

/* 룰 */
.credit-rule{
  list-style:none;
  padding:0;
}

.credit-rule li{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-top:1px solid #eee;
}

.credit-rule li:first-child{ border-top:none; }

/* 모바일 */
@media (max-width:900px){
  .credit-body{ width:92%; }
  .credit-grid{ grid-template-columns:1fr; }
}


.credit-note{
  margin-top:10px;
  font-size:16px;
  line-height: 1.6;
}

.credit-text{
  margin-top:10px;
  line-height:1.8;
}

/*
.credit-link-box{
  margin-top:14px;
  background:#fff3a5;
  padding:12px;
  border-radius:8px;
  font-weight:700;
}

.credit-link-box a{
  display:block;
  margin-top:6px;
  color:#0047d6;
}
*/
.credit-link-box{
  background:#f7fafc;
  border:1px solid #e6eef5;
  border-radius:12px;
  padding:13px 18px;
  line-height:1.9;
  font-size:16px;
  color:#222;
  margin-top:6px;
}

.credit-link-box a{
  display:block;
  
  color:#0047d6;
}

.credit-contact-mini{
  margin-top:10px;
  font-size:14px;
  color:#444;
}

.credit-contact{
  margin-top:10px;
  line-height:1.8;
}