@charset "utf-8";


/* ------------------ CSS Reset ------------------ */

/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-break: keep-all;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Paperlogy', 'GmarketSans', 'NotoSans', 'Pretendard', 'Roboto', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------ 폰트 기본 weight ------------------ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
strong {
  font-weight: 500;
}
.font_bold{
  font-weight: 700;
}
.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------ CSS Variables ------------------ */
:root {
  --color-primary: #0070f3;
  --color-secondary: #f5f5f5;
  --color-text: #222;
  --color-bg: #fff;
  --color-blue: #5473FF;
  --color-orange: #FEB31C;
  --color-pink: #F06161;
  --color-red: #ff0000;
  --color-gray: #a8a9a9;
  --color-green: #0D7C66;;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;

  --transition-fast: 0.1s ease-in-out;
  --transition-medium: 0.4s ease-in-out;
}



/* ------------------ 기본 컨테이너 ------------------ */

.text_green{
  color: var(--color-green);
}
.text_blue{
    color: var(--color-blue);
}
.text_orange{
    color: var(--color-orange);
}
.text_pink{
    color: var(--color-pink);
}
.text_red{
  color: var(--color-red);
}
.text_gray{
  color: var(--color-gray);
}

/* ------------------ padding ------------------ */
.padding_5 {
  padding:5px
}
.padding_10 {
  padding:10px
}
.padding_15 {
  padding:15px
}
.padding_20 {
  padding:20px
}
.padding_25 {
  padding:25px
}
.padding_30 {
  padding:30px
}
.padding_t5 {
  padding-top:5px
}
.padding_t10 {
  padding-top:10px
}
.padding_t15 {
  padding-top:15px
}
.padding_t20 {
  padding-top:20px
}
.padding_t25 {
  padding-top:25px
}
.padding_t30 {
  padding-top:30px
}
.padding_l5 {
  padding-left:5px
}
.padding_l10 {
  padding-left:10px
}
.padding_l15 {
  padding-left:15px
}
.padding_l20 {
  padding-left:20px
}
.padding_l25 {
  padding-left:25px
}
.padding_l30 {
  padding-left:30px
}
.padding_r5 {
  padding-right:5px
}
.padding_r10 {
  padding-right:10px
}
.padding_r15 {
  padding-right:15px
}
.padding_r20 {
  padding-right:20px
}
.padding_r25 {
  padding-right:25px
}
.padding_r30 {
  padding-right:30px
}
.padding_b5 {
  padding-bottom:5px
}
.padding_b10 {
  padding-bottom:10px
}
.padding_b15 {
  padding-bottom:15px;
}
.padding_b20 {
  padding-bottom:20px
}
.padding_b25 {
  padding-bottom:25px
}
.padding_b30 {
  padding-bottom:30px
}
.padding_b35 {
  padding-bottom:35px
}
.padding_b40 {
  padding-bottom:40px
}
.padding_b45 {
  padding-bottom:45px
}
.padding_b50 {
  padding-bottom:50px
}

/* ------------------ margin ------------------ */

.margin_5 {
  margin:5px
}
.margin_10 {
  margin:10px
}
.margin_15 {
  margin:15px
}
.margin_20 {
  margin:20px
}
.margin_25 {
  margin:25px
}
.margin_30 {
  margin:30px
}
.margin_35 {
  margin:35px
}
.margin_40 {
  margin:40px
}
.margin_45 {
  margin:45px
}
.margin_50 {
  margin:50px
}
.margin_t5 {
  margin-top:5px
}
.margin_t10 {
  margin-top:10px
}
.margin_t15 {
  margin-top:15px
}
.margin_t20 {
  margin-top:20px
}
.margin_t25 {
  margin-top:25px
}
.margin_t30 {
  margin-top:30px
}
.margin_t35 {
  margin-top:35px
}
.margin_t40 {
  margin-top:40px
}
.margin_t45 {
  margin-top:45px
}
.margin_t50 {
  margin-top:50px
}
.margin_l5 {
  margin-left:5px
}
.margin_l10 {
  margin-left:10px
}
.margin_l15 {
  margin-left:15px
}
.margin_l20 {
  margin-left:20px
}
.margin_l25 {
  margin-left:25px
}
.margin_l30 {
  margin-left:30px
}
.margin_r5 {
  margin-right:5px
}
.margin_r10 {
  margin-right:10px
}
.margin_r15 {
  margin-right:15px
}
.margin_r20 {
  margin-right:20px
}
.margin_r25 {
  margin-right:25px
}
.margin_r30 {
  margin-right:30px
}
.margin_r35 {
  margin-right:35px
}
.margin_r40 {
  margin-right:40px
}
.margin_r45 {
  margin-right:45px
}
.margin_r50 {
  margin-right:50px
}
.margin_b5 {
  margin-bottom:5px
}
.margin_b10 {
  margin-bottom:10px
}
.margin_b15 {
  margin-bottom:15px;
}
.margin_b20 {
  margin-bottom:20px
}
.margin_b25 {
  margin-bottom:25px
}
.margin_b30 {
  margin-bottom:30px
}
.margin_b35 {
  margin-bottom:35px
}
.margin_b40 {
  margin-bottom:40px
}
.margin_b45 {
  margin-bottom:45px
}
.margin_b50 {
  margin-bottom:50px
}

/* ------------------ Flex 유틸리티 ------------------ */
.flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_spaceBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hidden {
  display: none !important;
}

.text_bold{
  font-weight: 700;
}

/* ------------------ 버튼 / 링크 ------------------ */
button {
  transition: all var(--transition-fast);
  cursor: pointer;
}

button:hover {
  opacity: 0.85;
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}
.btn:hover {
  opacity: 0.85;
}
.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.btn.primary {
  background: transparent;
  border-color: var(--color-green);
}
.btn.cancel {
  border-color: #ef4444;
  color: #ef4444;
  background: #fff;
}


/* 메인슬라이드 */
.swiper.slide_con {
  max-width:  1200px;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide_list {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide_con{
  position: relative;
    width: 1160px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}
.swiper-button-prev,
.swiper-button-next {
  color: #fff;          /* 화살표 색상 */
  position: absolute;   /* 위치 지정 */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;          /* 다른 요소보다 위에 표시 */
  cursor: pointer;
}
.swiper-button-prev { left: 10px; }
.swiper-button-next { right: 10px; }

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #0D7C66 !important;   /* 메인 초록색 */
  font-size: 30px !important;  /* 필요시 크기도 조정 */
}

select {
  appearance: none; /* 브라우저 기본 화살표 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 180px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 16px;
  font-size: 14px;
  transition: border-color 0.2s;
}
select:focus {
  border-color: #0D7C66;              /* 메인컬러 보더 */
  box-shadow: 0 0 0 2px rgba(13,124,102,.2); /* 은은한 그림자 */
  outline: none;                      /* 브라우저 기본 outline 제거 */
}

input[type='search'],
input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'],
input[type='tel'],
input[type='url'],
input[type='file'] {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  background-color: #fff;
  padding: 8px 12px;
  border: 1px solid #DCDCE9;
  border-radius: var(--radius-md);
  font-size: 16px;
  color: #3D4354;
  width: 100%;
  /* line-height: 19px; */
}
input:focus {
  border-color: #0D7C66;
  outline: none;
  box-shadow: 0 0 0 2px rgba(37,99,235,.2);
}
html, body {
  height: 100%;
  margin: 0;
}
.main {
  flex: 1; /* 본문이 남은 공간 차지 -> 푸터를 아래로 밀어냄 */
}
/* 기본 테이블 스타일 */
.table {
  width: 100%;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  table-layout: fixed; /* 셀 크기를 고정 */
}
/* 헤더 */
.table thead th {
  background: rgba(13, 124, 102, 0.4);  /* 초록색 + 투명도 */
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);  /* 글래스모피즘 핵심 */
  -webkit-backdrop-filter: blur(10px);
}

/* 헤더 구분선 은은하게 */
.table thead tr {
  background: rgba(255, 255, 255, 0.05);
}

/* 본문 */
.table tbody td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  white-space: nowrap;      /* 줄바꿈 안 함 */
  overflow: hidden;         /* 넘친 글자 숨김 */
  text-overflow: ellipsis;
}

/* 링크 스타일 */
.table tbody td a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.table tbody td a:hover {
  color: #0D7C66;
}

/* 줄무늬 효과 (가독성 향상) */
.table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* 반응형 처리 */
@media (max-width: 768px) {
  .table thead {
    display: none;
  }
  .table, .table tbody, .table tr, .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
  }
  .table td {
    text-align: left;
    padding: 8px 10px;
    border: none;
  }
  .table td::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    color: #666;
  }
}
textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(15,23,42,.12);
  border-radius:12px;
  background:rgba(255,255,255,.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5);
  outline:none;
  transition:border-color .15s, box-shadow .15s, background .15s;
}
input:focus,
textarea:focus{
  border-color:#0D7C66;
  box-shadow:0 0 0 3px rgba(13,124,102,.20);
  background:rgba(255,255,255,.9);
}

#btn_top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  background-color: #0D7C66;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
#btn_top img {
  display: inline;
}
#btn_top:hover {
  background-color: #0b6b59;
  transform: translateY(-3px);
}

