/* 황토색 */
/* h1, 2커스텀 */
/* ── H1 : 페이지 대제목 ─────────────────────────── */
body h1:not(.sidebar h1){           /* 본문 안 h1 전용 */
  display:block;
  width:100%;
  margin:48px 0 2px;
  padding:14px 18px;
  background:transparent;                 /* 투명명 */
  color:#fff;                         /* 흰 글자 */
  font-size:1.8em;
  font-weight:700;
  border-radius:6px;
}
/* ── H2 : 풀-와이드 컬러 박스 + 흰 글자 ───────────────── */
body h2:not(.sidebar h2){
  color:#fff !important;    /* ← 글자색을 반드시 흰색으로 */
}
body h2:not(.sidebar h2){
  display:block;              /* 글자 길이와 무관하게 100% 폭 */
  width:100%;
  box-sizing:border-box;
  margin:80px 0 35px;
  padding:5px 18px;          /* 상하·좌우 여백 */
  background:#AE6032;        /* ★ 여기만 바꿔서 색상 테마 변경 */
  color:#fff;                 /* 흰 글자 */
  font-size:1.45em;          /* h3 보다 크게 */
  font-weight:700;
  border-radius:6px;          /* 라운드 모서리 */
}

/* ───────────────────────────────────────────
   𝗛3 |  이중 바 + 얇은 회색 언더라인
─────────────────────────────────────────── */
/* ── H3 : 굵은 파란 왼쪽 바 + 하단 실선 ───────────────── */
body h3:not(.sidebar h3){
  margin:60px 0 35px;
  padding:4px;
  font-size:1.2rem !important;
  font-weight:600 !important;
  line-height:1.35;
  color:#AE6032;
  border-left:7px solid #381010;   /* 왼쪽 굵은 바 */
  border-bottom:2px solid #E8B091; /* 얇은 하단선  */
  background:#fff;
  border-top:none;
}

/* ── H4 : 회색 얇은 왼쪽 바 ─────────────────────────── */
body h4:not(.sidebar h4){
  margin:35px 0 25px;
  padding:5px 10px;
  font-size:1.1rem !important;
  font-weight:600 !important;
  line-height:1.35;
  color:#E8B091;
  border-left:5px solid #858484;  /* 왼쪽 바(얇음) */
  border-bottom: 2px solid #E8B091;
  background:#fcfcfc;
  border-top:none;
}

/* 모바일 글자 크기 살짝 조정 및 기타 모바일 최적화 */
@media (max-width:767px){
  /* ── H1 ──────────────────── */
  body h1:not(.sidebar h1){
    font-size:1.5em; /* H1 폰트 크기 조정 */
    margin:30px 0 15px; /* H1 마진 조정 */
    padding:10px 15px; /* H1 패딩 조정 */
  }

  /* ── H2 ──────────────────── */
  body h2:not(.sidebar h2),
  #article-view h2{          /* 티스토리 뷰어용 */
    font-size:1.3em;
    padding:10px 14px;
    margin:48px 0 20px;     /* ⬅️ 32px → 48px 로 확대 */
  }

  /* ── H3 ──────────────────── */
  body h3:not(.sidebar h3),
  #article-view h3{
    font-size:1.1em;
    padding-left:2em;
    margin:40px 0 18px;     /* ⬅️ 26px → 40px 로 확대 */
  }

  /* ── H4 ──────────────────── */
  body h4:not(.sidebar h4){
    font-size:1.0em !important; /* H4 폰트 크기 조정 */
    margin:25px 0 15px; /* H4 마진 조정 */
    padding:4px 8px; /* H4 패딩 조정 */
  }

  /* 형광펜 밑줄효과 */
  u {
    box-shadow: inset 0 -6px 0 #FFEB3B; /* 모바일에서 밑줄 두께 살짝 줄이기 */
  }
}

/* 형관펜 밑줄효과 */
u {
    text-decoration: none;
    display: inline;
    box-shadow: inset 0 -8px 0 #FFEB3B;
}
/* 형관펜 밑줄효과끝 */




/* 버튼효과 */
/* 버튼 스타일 */
/*─────────────────────────────────────────────
  📌 BUTTON v3  (풀-와이드 + 손가락 이모지 + 호버 애니메이션)
────────────────────────────────────────────*/

.button{
  /* ▣ 레이아웃 ------------------ */
  display:block;            /* 한 줄 전체 차지 */
  width:100%;               /* 컨테이너 폭 100 % */
  box-sizing:border-box;    /* padding 포함 폭 계산 */
  text-align:center;        /* 글자 가운데 */

  /* ▣ 모양 & 서체 --------------- */
  background:#22550C;       /* 기본 진초록 */
  color:#fff !important;    /* 흰 글자 */
  font-size:18px;
  font-weight:700;
  padding:14px 18px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  text-decoration:none !important;

  /* ▣ 애니메이션 --------------- */
  position:relative;
  overflow:hidden;
  transition:
    background-color .25s ease,
    transform         .25s ease,
    font-size         .25s ease;
}

/* 흰색 빛 스캔 */
.button::before{
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background:rgba(255,255,255,.35);
  transform:skewX(-45deg);
  animation:slide-glow 2.8s infinite;
}

/* 👉 손가락 이모지 (기본 정지) */
.button::after{
  content:"👉";
  margin-right:8px;             /* 글자와 간격 */
  display:inline-block;
  transition:transform .25s ease; /* hover 흔들 때 부드럽게 */
}

/* hover - 배경, 크기, 글자 모두 확대 + 손가락 흔들 */
.button:hover{
  background:#20EB58;             /* 밝은 녹색 */
  transform:scale(1.06);
  font-size:19px;
}
.button:hover::after{
  animation:finger-wiggle .6s ease-in-out infinite alternate;
}

/* 빛 스캔, 손가락 키프레임 */
@keyframes slide-glow{
  0%{ left:-100% } 50%{ left:100% } 100%{ left:200% }
}
@keyframes finger-wiggle{
  from{ transform:translateX(-3px) }
  to  { transform:translateX( 3px) }
}

/*────────────────────────────────────────────
  모바일(≤767 px) – padding·글자 약간 축소
────────────────────────────────────────────*/
@media(max-width:767px){
  .button{
    font-size:16px;
    padding:12px 14px;
    transform:scale(1); /* 모바일에서는 호버 애니메이션 미적용 또는 축소 */
  }
  .button:hover{ /* 모바일에서 hover 효과 제거 */
    transform:scale(1);
    font-size:16px;
  }
  .button::before, .button::after { /* 모바일에서 애니메이션 제거 */
    animation: none;
  }
}



/* 목차 스타일 */
/* 목차 컨테이너 */

.toc-container {
    background-color: #f9fff9; /* 밝은 녹색 배경 */
    border: 2px solid #e7fce7; /* 연한 녹색 테두리 */
    border-radius: 8px; /* 둥근 테두리 */
    padding: 12px; /* 내부 여백 (20% 축소) */
    margin-bottom: 24px; /* 목차와 본문 사이 간격 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
    text-align: center; /* 목차 전체 중앙 정렬 */
    font-size: 0.9rem; /* 글자 크기 축소 */
    max-width: 80%; /* 전체 크기 20% 축소 */
    margin: 0 auto; /* 중앙 정렬 */
    animation: fade-in 1s ease-in; /* 페이드 인 애니메이션 */
}

/* 목차 제목 */
.toc-title {
    font-size: 18px; /* 제목 크기 */
    font-weight: bold;
    color: #073507; /* 진한 녹색 */
    margin-bottom: 12px;
    text-align: center; /* 제목 중앙 정렬 */
    text-transform: uppercase; /* 대문자 변환 */
    letter-spacing: 1px; /* 글자 간격 조정 */
    animation: bounce 2s infinite; /* 제목에 바운스 애니메이션 */
}

/* 목차 리스트 */
.toc-list {
    list-style-type: none; /* 기본 리스트 스타일 제거 */
    padding: 0;
    margin: 0 auto; /* 리스트를 부모 요소의 중앙에 배치 */
    display: inline-block; /* 중앙 정렬을 위해 리스트를 인라인 블록으로 변경 */
}

/* 목차 항목 */
.toc-list li {
    margin-bottom: 8px; /* 항목 간격 */
    text-align: center; /* 항목 텍스트 중앙 정렬 */
    animation: slide-in 0.5s ease-in-out both; /* 항목 등장 애니메이션 */
}

/* 목차 링크 */
.toc-list li a {
    text-decoration: none; /* 밑줄 제거 */
    color: #073507; /* 진한 녹색 텍스트 */
    font-weight: bold;
    font-size: 16px; /* 텍스트 크기 */
    padding: 6px 12px; /* 내부 여백 */
    display: inline-block;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-family: 'Arial', sans-serif; /* 세련된 폰트 적용 */
    text-transform: capitalize; /* 첫 글자만 대문자 */
}

.toc-list li a:hover {
    background-color: #e7fce7; /* 연한 녹색 배경 */
    color: #055202; /* 더 진한 초록색 */
    transform: scale(1.1); /* 확대 효과 */
}

/* 애니메이션 정의 */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slide-in {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* 목차 스타일끝 */

/* 모바일 목차 스타일 */
@media (max-width: 767px) {
  .toc-container {
    max-width: 95%; /* 모바일에서 너비 확장 */
    padding: 10px; /* 모바일에서 패딩 줄이기 */
    margin-bottom: 20px; /* 모바일에서 마진 조정 */
  }

  .toc-title {
    font-size: 16px; /* 모바일에서 제목 크기 줄이기 */
    margin-bottom: 10px;
    animation: none; /* 모바일에서 제목 애니메이션 제거 */
  }

  .toc-list li {
    margin-bottom: 6px; /* 모바일에서 항목 간격 줄이기 */
    animation: none; /* 모바일에서 항목 애니메이션 제거 */
  }

  .toc-list li a {
    font-size: 14px; /* 모바일에서 링크 텍스트 크기 줄이기 */
    padding: 5px 10px;
  }
  .toc-list li a:hover { /* 모바일에서 hover 효과 제거 */
    transform: scale(1);
    background-color: transparent;
    color: #073507;
  }
}


/* 내부링크 카드 */
/* 링크 카드 스타일 */
.link-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    border-radius: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa, #fbe9e7); /* 더 세련된 그라데이션 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 16px auto;
    cursor: pointer; /* 클릭 가능하도록 */
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    opacity: 0; /* 초기 숨김 */
}

.link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 썸네일 이미지 */
.thumbnail img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease; /* 이미지 확대 효과 */
}

.thumbnail img:hover {
    transform: scale(1.1);
}

/* 설명 텍스트 스타일 */
.description {
    flex: 1;
    min-width: 200px;
}

.description p.title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px;
    background: linear-gradient(to right, #42a5f5, #66bb6a); /* 제목 그라데이션 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* 텍스트 입체감 */
}

.description p.cta {
    font-size: 14px;
    color: #007BFF;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: underline dotted;
}

.description p.cta:hover {
    color: #0056b3;
    transform: scale(1.05);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .link-card {
        flex-direction: column; /* 모바일에서 세로로 정렬 */
        align-items: center; /* 중앙 정렬 */
        padding: 12px; /* 모바일에서 패딩 줄이기 */
        gap: 12px; /* 모바일에서 간격 줄이기 */
        transform: none; /* 모바일에서 hover 효과 제거 */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 모바일에서 그림자 약하게 */
    }
    .link-card:hover {
      transform: none; /* 모바일에서 hover 효과 제거 */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }


    .thumbnail img {
        width: 80px; /* 모바일에서 썸네일 크기 줄이기 */
        height: 80px;
        border-radius: 8px;
        transform: none; /* 모바일에서 hover 효과 제거 */
    }
    .thumbnail img:hover {
      transform: none; /* 모바일에서 hover 효과 제거 */
    }

    .description {
        min-width: unset; /* 모바일에서 최소 너비 해제 */
        text-align: center; /* 모바일에서 텍스트 중앙 정렬 */
    }

    .description p.title {
        font-size: 16px; /* 모바일에서 제목 크기 줄이기 */
        margin-bottom: 6px;
    }

    .description p.cta {
        font-size: 12px; /* 모바일에서 CTA 텍스트 크기 줄이기 */
        transform: none; /* 모바일에서 hover 효과 제거 */
    }
    .description p.cta:hover {
      transform: none; /* 모바일에서 hover 효과 제거 */
      color: #007BFF;
    }
}


/* 내부링크 카드끝 */


@charset "utf-8";

/*
 *
 * CSS CONTENTS:
 *
 * 01. Web Font
 * 02. Type Selector Reset
 * 03. Accessibility Navigation
 * 04. Layout Selector
 * 05. Components
 * 06. Entry Content
 * 07. Comment
 * 08. Aside(sidebar)
 * 09. ETC
 * 10. Option(Color Type & List Type)
 * 11. Retina Display
 * 12. Media Screen
 *
 */

/* Web Font Load */
@import url('https://fonts.googleapis.com/css?family=Nanum+Myeongjo:800&subset=korean');

/* Type Selector Reset */
body {
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  font-family: 'AppleSDGothicNeo', Pretendard-Regular, sans-serif;
  font-size: 1em;
  line-height: 2.5;
  color: #555;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}

header, footer, section, article, aside, nav, hgroup, details, menu, figure, figcaption {
  display: block;
}

button, input[type=submit], input[type=reset], input[type=button] {
  overflow: visible;
  cursor: pointer;
}

input[type=text], input[type=email], input[type=password], input[type=submit], textarea {
  -webkit-appearance: none;
}

input, select, textarea, button {
  font-family: Pretendard-Regular, sans-serif;
  font-size: 100%;
  border-radius: 0;
}

button {
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

ul li {
  list-style: none;
}

img, fieldset {
  border: none;
  /* vertical-align: top; */
}

hr {
  display: none;
}

a, a:link {
  text-decoration: none;
  color: #555;
}

a:visited {
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
  color: #222;
}

a:active {
  text-decoration: none;
}

/* Accessibility Navigation */
#acc-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 0;
}

#acc-nav a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin-left: -1px;
  margin-bottom: -1px;
  text-align: center;
  font-weight: bold;
  font-size: 0.875em;
  color: #000;
  white-space: nowrap;
}

#acc-nav a:focus, #acc-nav a:hover, #acc-nav a:active {
  width: 100%;
  height: auto;
  padding: 10px 0;
  background: #000;
  color: #fff;
  z-index: 1000;
}

/* Layout Selector */
#header {
  border-bottom: 1px solid #eee;
}

#header .inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

#header p {
  padding: 23px 0;
  font-family: 'Nanum Myeongjo';
  font-weight: 800;
  font-size: 1.75em;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: #333;
}

#header p a {
  display: inline-block;
  height: 32px;
  text-decoration: none;
  color: #333;
  vertical-align: top;
}

#header p img {
  width: auto;
  height: 32px;
}

#header .util {
  position: absolute;
  top: 24px;
  right: 0;
}

#header .util .search {
  position: relative;
  float: left;
  overflow: hidden;
  width: 32px;
  background-color: #fff;
  box-sizing: border-box;
  transition: width 0.5s;
  -webkit-transition: width 0.5s;
}

#header .util .search:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  border-radius: 50%;
  text-indent: -999em;
  background: #fff url(./images/ico_package.png) no-repeat 0 0;
  vertical-align: top;
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
}

#header .util .search input {
  width: 32px;
  height: 32px;
  padding: 5px 15px;
  border: 0;
  background-color: transparent;
  font-size: 0.875em;
  line-height: 1;
  outline: none;
  box-sizing: border-box;
}

#header .util .search input:focus {
  border-color: #484848;
}

#header .util .search input::placeholder {
  color: #969696;
}

#header .util .search button {
  position: absolute;
  top: 1px;
  right: 1px;
  z-index: 10;
  width: 30px;
  height: 30px;
  text-indent: -999em;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff url(./images/ico_package.png) no-repeat -1px -1px;
  vertical-align: top;
  outline: none;
}

#header .util .search.on {
  width: 200px;
}

#header .util .search.on:before {
  content: none;
}

#header .util .search.on input {
  display: block;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 32px;
}

#header .util .search.on button {
  border-color: transparent;
}

#header .util .profile {
  position: relative;
  float: left;
  margin-left: 14px;
}

#header .util .profile button {
  display: block;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  border-radius: 50%;
}

#header .util .profile img {
  width: 100%;
  height: 100%;

}

#header .util .profile nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  width: 96px;
  margin: 0 0 0 -48px;
  padding-top: 12px;
}

#header .util .profile ul {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#header .util .profile ul li a {
  display: block;
  margin-top: -1px;
  border: 1px solid #eee;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.875em;
  line-height: 2.3125rem;
  color: #777;
}

#header .util .profile ul li a:focus,
#header .util .profile ul li a:hover {
  background-color: #fafafa;
  color: #333;
}

#header .util .menu {
  display: none;
}

#gnb {
  height: 66px;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
}

#gnb::-webkit-scrollbar {
  display: none;
}

#gnb ul {
  display: inline-block;
  margin-left: -30px;
  vertical-align: top;
}

#gnb ul li {
  float: left;
  padding: 0 26px;
}

#gnb ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 22px 4px 24px;
  color: #777;
}

#gnb ul li a:hover,
#gnb ul li.current a {
  color: #333;
}

#gnb ul li.current a:after,
#gnb ul li a:hover:after,
#gnb ul li a:focus:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
}

#container {
  position: relative;
}

#container .content-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

#container .content-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  width: 1px;
  height: 100%;
  margin-left: 255px;
  background-color: #eee;
}

#container .content-wrap:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

#content {
  float: left;
  width: 68.518518518518519%;
  padding: 72px 0 60px;
  box-sizing: border-box;
}

#content>.inner:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

#aside {
  float: right;
  width: 21.296296296296296%;
  padding: 75px 0 32px;
  box-sizing: border-box;
}

#aside .close,
#aside .profile {
  display: none;
}

#footer {
  padding: 38px 0 28px;
  border-top: 1px solid #eee;
}

#footer .inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

#footer p {
  margin-bottom: 10px;
  font-size: 0.875em;
  color: #777;
}

#footer .order-menu a {
  display: inline-block;
  margin-bottom: 23px;
  font-size: 0.8125em;
  vertical-align: middle;
  color: #555;
}

#footer .order-menu a:hover,
#footer .order-menu a:focus {
  color: #333;
}

#footer .order-menu a:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 20px 2px 15px;
  background-color: #d2d2d2;
  vertical-align: middle;
}

#footer .order-menu a:first-child::before {
  content: none;
}

#footer .page-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff url(./images/ico_package.png) no-repeat -100px -200px;
  text-indent: -999em;
}

#footer .page-top:focus,
#footer .page-top:hover {
  background-color: #757575;
  background-position-x: -150px;
}

#tt-body-index .main-slider {
  display: block;
}

#tt-body-index #content {
  padding-bottom: 43px;
}

#tt-body-index .post-cover.notice {
  height: auto;
  background-color: transparent;
}

#tt-body-index .post-cover.notice h1 {
  margin: 0;
  font-size: 1.6875em;
  line-height: 1.5;
  color: #000;
}

#tt-body-index .post-cover.notice h1 a {
  color: #000;
}

#tt-body-index .post-cover.notice .meta {
  margin: 0 0 30px;
  color: rgba(0, 0, 0, 0.6);
}

#tt-body-page #container {
  padding-top: 339px;
}

#tt-body-page.post-cover-hide #container {
  padding-top: 0;
}

#tt-body-page .post-cover {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
}

#tt-body-tag .tags {
  margin-top: 0;
}

/* Components */
.btn, a.btn {
  display: inline-block;
  width: 100px;
  height: 36px;
  background-color: #c4c4c4;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  color: #fff;
  vertical-align: middle;
}

.btn:hover {
  background-color: #676767;
}

.main-slider {
  display: none;
  position: relative;
  top: -1px;
  z-index: 20;
  overflow: hidden;
  width: 100%;
  background-color: #cbcbcb;
}

.main-slider ul {
  position: relative;
}

.main-slider ul li {
  display: table;
  width: 100%;
  height: 340px;
  background-position: 50% 50%;
  background-size: cover;
}

.main-slider ul li a {
  display: table;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.15);
}

.main-slider ul li .inner {
  display: table-cell;
  vertical-align: middle;
}

.main-slider ul li .box {
  display: block;
  max-width: 910px;
  margin: 0 auto;
  padding: 0 24px 6px;
}

.main-slider ul li .text {
  display: block;
  overflow: hidden;
  max-width: 65%;
  text-overflow: ellipsis;
  font-weight: 300;
  font-size: 2.125em;
  line-height: 1.2352;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.main-slider ul li .btn {
  display: block;
  width: 118px;
  height: 35px;
  margin-top: 36px;
  border-radius: 35px;
  line-height: 35px;
  background-color: #fff;
  color: #555;
}

.main-slider ul li .btn:hover {
  background-color: #04beb8;
  color: #fff;
}

.main-slider .prev,
.main-slider .next {
  display: none;
}

.main-slider .paging {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  margin-left: 447px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.main-slider .paging button {
  display: block;
  width: 8px;
  height: 8px;
  margin: 10px 0;
  text-indent: -999em;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.main-slider .paging .current {
  background-color: rgba(255, 255, 255, 1);
}

.cover-thumbnail-1 {
  position: relative;
  margin-bottom: 77px;
}

.cover-thumbnail-1 h2 {
  margin-bottom: 19px;
  font-weight: 500;
  font-size: 1em;
  color: #555;
}

.cover-thumbnail-1 ul {
  display: inline-block;
  width: 103.378378378378378%;
  margin-left: -3.378378378378378%;
  margin-bottom: -40px;
  vertical-align: top;
}

.cover-thumbnail-1 ul li {
  float: left;
  width: 33.333333333333333%;
  padding-left: 3.26797385620915%;
  margin: 0 0 38px;
  box-sizing: border-box;
}

.cover-thumbnail-1 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-1 ul li a:hover .title,
.cover-thumbnail-1 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-1 ul li figure {
  display: block;
  height: 0;
  margin-bottom: 9px;
  padding-bottom: 130.434782608695652%;
  background-color: #f8f8f8;
}

.cover-thumbnail-1 ul li figure img {
  width: 100%;
  height: auto;
}

.cover-thumbnail-1 ul li .title {
  display: block;
  overflow: hidden;
  width: 95%;
  margin-bottom: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.75;
}

.cover-thumbnail-1 ul li .date {
  display: block;
  font-size: 0.75em;
  color: #999;
}

.cover-thumbnail-1 .more {
  position: absolute;
  top: 4px;
  right: 0;
  font-weight: 300;
  font-size: 0.875em;
  color: #999;
}

.cover-thumbnail-2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 77px;
}

.cover-thumbnail-2 h2 {
  margin-bottom: 28px;
  padding-bottom: 19px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  font-size: 1em;
  color: #555;
}

.cover-thumbnail-2 ul li {
  overflow: hidden;
  margin-top: 31px;
}

.cover-thumbnail-2 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-2 ul li a:hover .title,
.cover-thumbnail-2 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-2 ul li figure {
  float: right;
  width: 128px;
  margin-left: 57px;
}

.cover-thumbnail-2 ul li figure img {
  width: 100%;
  height: auto;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
}

.cover-thumbnail-2 ul li .title {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 10px;
  padding-top: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.25em;
  line-height: 1.4;
}

.cover-thumbnail-2 ul li .excerpt {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 20px;
  text-overflow: ellipsis;
  font-size: 0.875em;
  line-height: 1.5rem;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cover-thumbnail-2 ul li .meta {
  display: block;
  font-size: 0.75em;
  color: #999;
}

.cover-thumbnail-2 ul li .meta span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 8px 0 5px;
  background-color: #d2d2d2;
  vertical-align: middle;
}

.cover-thumbnail-2 ul li .meta span:first-child:before {
  content: none;
}

.cover-thumbnail-2 .more {
  display: block;
  width: 100%;
  margin-top: 31px;
  padding: 12px 0 11px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 0.875em;
  color: #999;
}

.cover-thumbnail-3 {
  position: relative;
  margin-bottom: 77px;
}

.cover-thumbnail-3 h2 {
  margin-bottom: 19px;
  font-weight: 500;
  font-size: 1em;
  color: #555;
}

.cover-thumbnail-3 ul {
  position: relative;
  display: inline-block;
  width: 103.378378378378378%;
  margin-left: -3.378378378378378%;
  margin-bottom: -25px;
  vertical-align: top;
}

.cover-thumbnail-3 ul li {
  float: left;
  width: 20%;
  margin-bottom: 22px;
  padding-left: 3.26797385620915%;
  box-sizing: border-box;
}

.cover-thumbnail-3 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-3 ul li a:hover .title,
.cover-thumbnail-3 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-3 ul li figure {
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 11px;
  padding-bottom: 129.6875%;
  background-color: #f8f8f8;
}

.cover-thumbnail-3 ul li figure img {
  width: 100%;
  height: auto;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
}

.cover-thumbnail-3 ul li .title {
  display: block;
  overflow: hidden;
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8125em;
  line-height: 1.4;
}

.cover-thumbnail-3 button {
  position: absolute;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid #eee;
  border-radius: 50%;
  background: url(./images/ico_package.png) no-repeat 0 -50px;
  text-indent: -999em;
  outline: none;
}

.cover-thumbnail-3 .prev {
  right: 30px;
}

.cover-thumbnail-3 .next {
  right: 0;
  background-position-x: -50px;
}

.cover-thumbnail-3 button:focus,
.cover-thumbnail-3 button:hover {
  background-color: #757575;
  background-position-y: -74px;
}

.cover-thumbnail-4 {
  position: relative;
  margin-bottom: 17px;
}

.cover-thumbnail-4 h2 {
  margin-bottom: 19px;
  font-weight: 500;
  font-size: 1em;
  color: #555;
}

.cover-thumbnail-4 ul {
  position: relative;
  display: inline-block;
  width: 103.378378378378378%;
  margin-left: -3.378378378378378%;
  vertical-align: top;
}

.cover-thumbnail-4 ul li {
  float: left;
  width: 33.333333333333333%;
  min-height: 283px;
  padding-left: 3.26797385620915%;
  margin: 0 0 55px;
  box-sizing: border-box;
}

.cover-thumbnail-4 ul li a {
  display: block;
  text-decoration: none;
}

.cover-thumbnail-4 ul li a:hover .title,
.cover-thumbnail-4 ul li a:focus .title {
  text-decoration: underline;
}

.cover-thumbnail-4 ul li figure {
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 60.869565217391304%;
  background-color: #f8f8f8;
}

.cover-thumbnail-4 ul li figure img {
  width: 100%;
  height: auto;
}

.cover-thumbnail-4 ul li .title {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 4px;
  padding-top: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

.cover-thumbnail-4 ul li .excerpt {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 15px;
  text-overflow: ellipsis;
  font-size: 0.8125em;
  line-height: 1.5rem;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cover-thumbnail-4 ul li .meta {
  display: block;
  font-size: 0.75em;
  color: #999;
}

.cover-thumbnail-4 ul li .meta span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 7px 8px 9px 5px;
  background-color: #d2d2d2;
  vertical-align: top;
}

.cover-thumbnail-4 ul li .meta span:first-child:before {
  content: none;
}

.cover-thumbnail-4 button {
  position: absolute;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid #eee;
  border-radius: 50%;
  background: url(./images/ico_package.png) no-repeat 0 -50px;
  text-indent: -999em;
  outline: none;
}

.cover-thumbnail-4 .prev {
  right: 30px;
}

.cover-thumbnail-4 .next {
  right: 0;
  background-position-x: -50px;
}

.cover-thumbnail-4 button:focus,
.cover-thumbnail-4 button:hover {
  background-color: #757575;
  background-position-y: -74px;
}

.cover-list {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 42px;
}

.cover-list h2 {
  margin-bottom: 35px;
  padding-bottom: 19px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  font-size: 1em;
  color: #555;
}

.cover-list ul li {
  overflow: hidden;
  margin-bottom: 33px;
}

.cover-list ul li a {
  display: block;
  text-decoration: none;
}

.cover-list ul li a:hover .title,
.cover-list ul li a:focus .title {
  text-decoration: underline;
}

.cover-list ul li .title {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.25em;
  line-height: 1.4;
}

.cover-list ul li .excerpt {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 18px;
  text-overflow: ellipsis;
  font-size: 0.875em;
  line-height: 1.5rem;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cover-list ul li .date {
  display: block;
  font-size: 0.75em;
  color: #999;
}

.cover-list .more {
  position: absolute;
  top: 4px;
  right: 0;
  font-weight: 300;
  font-size: 0.875em;
  color: #999;
}

.cover-event {
  margin-bottom: 57px;
}

.cover-event h2 {
  margin-bottom: 19px;
  font-weight: 500;
  font-size: 1em;
  color: #555;
}

.cover-event ul {
  display: inline-block;
  width: 102.702702702702703%;
  margin-left: -2.702702702702703%;
  vertical-align: top;
}

.cover-event ul li {
  float: left;
  width: 50%;
  padding-left: 2.631578947368421%;
  margin: 0 0 20px;
  box-sizing: border-box;
}

.cover-event ul li a {
  position: relative;
  display: block;
  padding-bottom: 33.333333333333333%;
  border: 1px solid #eee;
  background-color: #757575;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  text-decoration: none;
  color: #555;
}

.cover-event ul li a:hover,
.cover-event ul li a:focus {
  color: #333;
}

.cover-event ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.cover-event ul li .title {
  position: absolute;
  top: 15%;
  left: 24px;
  z-index: 30;
  overflow: hidden;
  max-width: 60%;
  margin-bottom: 7px;
  padding-top: 9px;
  text-overflow: ellipsis;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #fff;
}

.cover-event ul li .more {
  position: absolute;
  bottom: 20.833333333333333%;
  left: 24px;
  z-index: 30;
  text-decoration: underline;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.6);
}

.post-cover {
  position: relative;
  z-index: 20;
  display: table;
  width: 100%;
  height: 340px;
  background-color: #cbcbcb;
  background-position: 50% 50%;
  background-size: cover;
  box-sizing: border-box;
}

.post-cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.post-cover .inner {
  display: table-cell;
  position: relative;
  z-index: 10;
  vertical-align: bottom;
  padding-bottom: 78px;
}

.post-cover .category {
  display: block;
  max-width: 1080px;
  margin: 0 auto 13px;
  font-size: 0.875em;
  color: #fff;
}

.post-cover h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 2.125em;
  line-height: 1.2352;
  color: #fff;
}

.post-cover a {
  text-decoration: none;
  color: #fff;
}

.post-cover .meta {
  display: block;
  max-width: 1080px;
  margin: 34px auto 0;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.6);
}

.post-cover .meta a {
  color: rgba(255, 255, 255, 0.6);
}

.post-cover .meta a:before,
.post-cover .meta span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 8px 0 4px;
  background-color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
}

.post-cover .meta span:first-child:before {
  content: none;
}

.post-header {
  padding-top: 4px;
}

.post-header p {
  margin-bottom: 18px;
  font-size: 1em;
  line-height: 1.375;
}

#tt-body-archive .post-header span:before {
  content: "'";
}

#tt-body-archive .post-header span:after {
  content: "' 에 등록된 글";
}

#tt-body-tag .post-header span:before {
  content: "#";
}

#tt-body-search .post-header span:before {
  content: "'";
}

#tt-body-search .post-header span:after {
  content: "'의 검색결과";
}

.post-header p em {
  margin-left: 7px;
  font-style: normal;
  color: #04beb8;
}

.post-item {
  float: left;
  width: 31.081081081081081%;
  margin: 0 0 58px 3.378378378378378%;
}

.post-item:nth-child(3n+1) {
  clear: both;
  margin-left: 0;
}

.post-item a {
  display: block;
  text-decoration: none;
}

.post-item a:hover .title,
.post-item a:focus .title {
  text-decoration: underline;
}

.post-item .thum {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  margin-bottom: 5px;
  padding-bottom: 60.869565217391304%;
  background-color: #f8f8f8;
}

.post-item .thum img {
  width: 100%;
  height: auto;
  transform: translateY(-25%);
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
}

.post-item .title {
  display: block;
  overflow: hidden;
  max-width: 98%;
  margin-bottom: 4px;
  padding-top: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}

.post-item .excerpt {
  display: block;
  overflow: hidden;
  max-width: 95%;
  margin-bottom: 15px;
  text-overflow: ellipsis;
  font-size: 0.8125em;
  line-height: 1.5rem;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-item .meta {
  display: block;
  font-size: 0.75em;
  color: #999;
}

.post-item .meta span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  margin: 0 8px 0 5px;
  background-color: #d2d2d2;
  vertical-align: middle;
}

.post-item .meta span:first-child:before {
  content: none;
}

.post-item.protected .thum:before {
  content: "";
  pos

/* 테이블 기본 스타일 */
table {
  width: 100%;
  border-collapse: collapse; /* 셀 경계선을 하나로 합침 */
  margin: 40px 0; /* 위아래 여백 추가 */
  font-family: 'AppleSDGothicNeo', Pretendard-Regular, sans-serif;
  color: #555;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 은은한 그림자 추가 */
  border-radius: 8px; /* 둥근 모서리 */
  overflow: hidden; /* 둥근 모서리가 적용되도록 내용 숨김 */
}

/* 테이블 헤더 스타일 */
table thead th {
  background-color: #AE6032; /* h2의 황토색 배경 */
  color: #fff; /* 흰색 글자 */
  padding: 15px 20px; /* 여백 */
  text-align: left; /* 왼쪽 정렬 */
  font-weight: 700; /* 굵은 글씨 */
  font-size: 1.1em;
  border-bottom: 2px solid #381010; /* h3의 진한 갈색 하단 테두리 */
}

/* 테이블 바디 셀 스타일 */
table tbody td {
  padding: 12px 20px; /* 여백 */
  border-bottom: 1px solid #e7d8c7; /* 연한 황토색 계열의 하단 테두리 */
  background-color: #fff; /* 흰색 배경 */
  line-height: 1.5;
}

/* 짝수 행 배경색 */
table tbody tr:nth-child(even) {
  background-color: #fcf6f0; /* 살짝 더 밝은 황토색 계열 */
}

/* 홀수 행 배경색 */
table tbody tr:nth-child(odd) {
  background-color: #fff;
}

/* 마우스 오버 시 행 강조 */
table tbody tr:hover {
  background-color: #f2ede7; /* 호버 시 약간 더 진한 황토색 배경 */
  transform: scale(1.01); /* 약간 확대 */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* 테이블 첫 번째 열 (항목명) 강조 */
table tbody td:first-child {
  font-weight: 600;
  color: #381010; /* h3의 진한 갈색 글자색 */
}

/* 반응형 테이블 (모바일에서 스크롤 가능) */
@media (max-width: 767px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table thead, table tbody, table th, table td, table tr {
    display: block;
  }
  table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  table tr {
    margin-bottom: 15px;
    border: 1px solid #e7d8c7;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: right;
  }
  table td:before {
    content: attr(data-label); /* data-label 속성으로 헤더 내용 표시 */
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 10px;
    font-weight: bold;
    text-align: left;
    color: #AE6032; /* 황토색으로 레이블 표시 */
  }
  table tbody tr:hover {
    background-color: #fff; /* 모바일에서는 호버 효과 제거 */
    transform: none;
  }
}
  
/*─────────────────────────────────────────────
 📌 BUTTON v3  (풀-와이드 + 손가락 이모지 + 호버 애니메이션)
────────────────────────────────────────────*/

.button{
  /* ▣ 레이아웃 ------------------ */
  display:block;           /* 한 줄 전체 차지 */
  width:100%;              /* 컨테이너 폭 100 % */
  box-sizing:border-box;   /* padding 포함 폭 계산 */
  text-align:center;       /* 글자 가운데 */
  position:relative;       /* 애니메이션을 위해 relative 유지 */
  z-index: 10;             /* 다른 요소에 가려지지 않도록 z-index 높임 */

  /* ▣ 모양 & 서체 --------------- */
  background:#22550C;      /* 기본 진초록 */
  color:#fff !important;   /* 흰 글자 */
  font-size:18px;
  font-weight:700;
  padding:14px 18px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  text-decoration:none !important;
  user-select: none; /* 텍스트 드래그 방지 (UX 개선) */

  /* ▣ 애니메이션 --------------- */
  overflow:hidden;
  transition:
    background-color .25s ease,
    transform         .25s ease,
    font-size         .25s ease;
}

/* 흰색 빛 스캔 */
.button::before{
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background:rgba(255,255,255,.35);
  transform:skewX(-45deg);
  animation:slide-glow 2.8s infinite;
  z-index: 1; /* 빛 효과가 버튼 내용 위에 오도록 */
}

/* 👉 손가락 이모지 (기본 정지) */
.button::after{
  content:"👉";
  margin-right:8px;          /* 글자와 간격 */
  display:inline-block;
  transition:transform .25s ease; /* hover 흔들 때 부드럽게 */
  z-index: 2; /* 이모지가 버튼 내용 위에 오도록 */
  position: relative; /* z-index를 적용하려면 position이 필요 */
}

/* hover - 배경, 크기, 글자 모두 확대 + 손가락 흔들 */
.button:hover{
  background:#20EB58;           /* 밝은 녹색 */
  transform:scale(1.06);
  font-size:19px;
}
.button:hover::after{
  animation:finger-wiggle .6s ease-in-out infinite alternate;
}

/* 빛 스캔, 손가락 키프레임 */
@keyframes slide-glow{
  0%{ left:-100% } 50%{ left:100% } 100%{ left:200% }
}
@keyframes finger-wiggle{
  from{ transform:translateX(-3px) }
  to  { transform:translateX( 3px) }
}

/*────────────────────────────────────────────
  모바일(≤767 px) – padding·글자 약간 축소
────────────────────────────────────────────*/
@media(max-width:767px){
  .button{
    font-size:16px;
    padding:12px 14px;
    /* 모바일에서는 호버 애니메이션 미적용 또는 축소 */
    transform: none; /* scale(1) 대신 none으로 명시하여 어떤 transform도 적용되지 않게 함 */
    transition: none; /* 모바일에서 불필요한 트랜지션 제거 */
  }
  .button:hover{ /* 모바일에서 hover 효과 제거 */
    background:#22550C; /* 원래 배경색으로 유지 */
    transform: none;
    font-size:16px;
  }
  .button::before, .button::after { /* 모바일에서 애니메이션 제거 */
    animation: none;
    content: ""; /* 모바일에서 손가락 이모지와 빛 스캔 효과 제거 (선택 사항) */
  }
  .button::after {
    margin-right: 0; /* 이모지 제거 시 마진도 제거 */
  }
}
/*─────────────────────────────────────────────
 📌 MY BUTTON (풀-와이드 + 손가락 이모지 + 호버 애니메이션)
    - 'button' 클래스와 동일한 스타일
────────────────────────────────────────────*/

.myButton{
  /* ▣ 레이아웃 ------------------ */
  display:block;
  width:100%;
  box-sizing:border-box;
  text-align:center;
  position:relative;
  z-index: 10; /* 다른 요소에 가려지지 않도록 z-index 높임 */

  /* ▣ 모양 & 서체 --------------- */
  background:#22550C;
  color:#fff !important;
  font-size:18px;
  font-weight:700;
  padding:14px 18px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  text-decoration:none !important;
  user-select: none; /* 텍스트 드래그 방지 (UX 개선) */

  /* ▣ 애니메이션 --------------- */
  overflow:hidden;
  transition:
    background-color .25s ease,
    transform         .25s ease,
    font-size         .25s ease;
}

/* 흰색 빛 스캔 */
.myButton::before{
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background:rgba(255,255,255,.35);
  transform:skewX(-45deg);
  animation:slide-glow 2.8s infinite;
  z-index: 1;
}

/* 👉 손가락 이모지 (기본 정지) */
.myButton::after{
  content:"👉";
  margin-right:8px;
  display:inline-block;
  transition:transform .25s ease;
  z-index: 2;
  position: relative;
}

/* hover - 배경, 크기, 글자 모두 확대 + 손가락 흔들 */
.myButton:hover{
  background:#20EB58;
  transform:scale(1.06);
  font-size:19px;
}
.myButton:hover::after{
  animation:finger-wiggle .6s ease-in-out infinite alternate;
}

/* 빛 스캔, 손가락 키프레임 (myButton과 button이 공유) */
/* @keyframes slide-glow, @keyframes finger-wiggle 은 이미 위에 정의되어 있으므로 중복 정의하지 않아도 됩니다. */


/*────────────────────────────────────────────
  모바일(≤767 px) – padding·글자 약간 축소 (myButton)
────────────────────────────────────────────*/
@media(max-width:767px){
  .myButton{
    font-size:16px;
    padding:12px 14px;
    transform: none;
    transition: none;
  }
  .myButton:hover{
    background:#22550C;
    transform: none;
    font-size:16px;
  }
  .myButton::before, .myButton::after {
    animation: none;
    content: ""; /* 모바일에서 손가락 이모지와 빛 스캔 효과 제거 (선택 사항) */
  }
  .myButton::after {
    margin-right: 0;
  }
}

.myButton {
	box-shadow: 0px 1px 0px 0px #f0f7fa;
	background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
	background-color:#33bdef;
	border-radius:20px;
	border:1px solid #057fd0;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:19px;
	padding:13px 26px;
	text-decoration:none;
	text-shadow:0px -1px 0px #5b6178;
}
.myButton:hover {
	background:linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
	background-color:#019ad2;
}
.myButton:active {
	position:relative;
	top:1px;
}
/* style.css 맨 아래쪽 */
.button,
.myButton{
  /* 기존 .button의 배경, 패딩, 테두리 등 통째로 복사 */
  display:inline-block;
  padding:12px 24px;
  border-radius:8px;
  background:#003c8f;
  color:#fff;
  font-weight:700;
  transition:.25s;
}

.button:hover,
.myButton:hover{background:#1f9a4c;}