@charset "utf-8";

/* Pretendard 웹폰트 (기본폰트) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/* ── 색상 변수 ── */
:root {
  --ink: #1d1d1f;
  --po: #bc936f;
  --spo: #c3dbf0;
}

/* ── 기본 리셋 ── */
* {
  transition: 0.3s;
}

/* Common */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}
body,
html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body,
input,
textarea,
select,
button,
table {
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    Roboto,
    "Helvetica Neue",
    "Segoe UI",
    "애플 SD 산돌고딕 Neo",
    "Apple SD Gothic Neo",
    "맑은 고딕",
    "Malgun Gothic",
    sans-serif;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
}
img,
fieldset,
button {
  border: 0;
}
ul,
ol {
  list-style: none;
}
em,
address {
  font-style: normal;
}
a {
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
}
.blind {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}
.edge {
  position: absolute;
  top: 12px;
  right: 4px;
  width: 0;
  height: 0;
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent #333;
}
.clear {
  clear: both;
}

.side_join {
  display: none;
}

.b_menu {
  display: none;
}

.subtit {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}
.subtit p {
  font-size: 40px;
  font-weight: 700;
  line-height: 80px;
  color: var(--ink);
}

/* Breadcrumb (현재 위치) */
.breadcrumb {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  font-size: 12px;
  color: var(--ink);
}
.breadcrumb li a {
  color: var(--ink);
}
.breadcrumb li a:hover,
.breadcrumb li a:focus {
  color: var(--po);
}
.breadcrumb li:last-child,
.breadcrumb li:last-child a {
  color: var(--ink);
  font-weight: 700;
}

/* Skip to content */
.skip {
  margin: 0;
}
.skip > a {
  display: block;
  overflow: hidden;
  height: 0;
  line-height: 28px;
  text-align: center;
}
.skip > a:focus {
  height: auto;
}
/* Layout */
.container {
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
}
/* 메인(홈)만 회색 배경, 나머지는 흰색 */
.container.is-main {
  background-color: #f5f5f7;
}
.header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  zoom: 1;
}
.header > .side {
  float: right;
  z-index: 2;
  margin: 39px 0 0 22px;
  line-height: 20px;
}

.visual {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
}
.body {
  position: relative;
  padding: 30px 0;
}
.body.main {
  padding-top: 22px;
}
.body .content {
  padding: 0 0px;
  box-sizing: border-box;
}
.body.fixed-width {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.header:after,
.body:after {
  display: block;
  clear: both;
  content: "";
}
.content {
  zoom: 1;
}
.content:after {
  display: block;
  clear: both;
  content: "";
}
.content > :first-child {
  margin-top: 0;
}
.content img {
  max-width: 100%;
  height: auto;
}
/* Header */
.header > h1 {
  float: left;
  padding: 10px 0 5px;
  margin-right: 32px;
  line-height: 60px;
}
.header > h1 img {
  vertical-align: middle;
  max-height: 60px;
}
/* Fixed Header */
.container.fixed_header {
  padding-top: 100px;
}
.fixed_header .header_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  z-index: 1000;
  padding: 0;
}
.header_wrap {
  background-color: #bc936f;
}
/* Footer */
.footer {
  background-color: var(--ink);
}
.footer a:hover,
.footer a:focus {
  text-decoration: none;
}
.footer .f_info_area {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 40px;
}
.footer .f_cr_area {
  padding: 19px;
  background-color: var(--ink);
}
.footer .copyright {
  width: 100%;
  max-width: 1200px;
  font-size: 13px;
  color: #f1f1f1;
  line-height: 16px;
}
.footer .copyright a {
  color: #f1f1f1;
}
.footer .copyright a:hover,
.footer .copyright a:focus,
.footer .copyright a:active {
  color: --po;
}
.footer .copyright span {
  display: inline-block;
  margin-left: 60px;
}
.footer .sub_desc {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
.footer .f_info {
  float: left;
  width: 240px;
  margin-right: 65px;
}
.footer .f_logo {
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 16px;
  font-size: 24px;
  color: #555;
}
.footer .f_logo.log_txt a {
  font-size: 24px;
  font-weight: bold;
  color: #555;
}
.footer .f_logo img {
  max-width: 200px;
  opacity: 0.7;
}
.footer .f_info2 {
  overflow: hidden;
  margin-top: 7px;
}
.footer .site_map > ul {
  display: inline-block;
  overflow: hidden;
  background: url(../img/bg_sitemap.png) repeat-y;
}
.footer .site_map > ul li {
  float: left;
  width: 282px;
  margin: 0 0 0 24px;
}
.footer .site_map > ul li:first-child,
.footer .site_map > ul li.clear {
  clear: both;
  margin-left: 0;
}
.footer .site_map > ul li a {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0 23px;
  font-size: 15px;
  font-weight: bold;
  color: #555;
}
.footer .site_map > ul ul {
  overflow: hidden;
  margin: 0 0 10px;
}
.footer .site_map > ul ul li {
  margin-left: 0;
}
.footer .site_map > ul ul a {
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: normal;
  color: #888;
  line-height: 18px;
}
.footer .site_map > ul ul a:hover,
.footer .site_map > ul ul a:focus,
.footer .site_map > ul ul a:active {
  color: #555;
}
.footer .f_cr_area .mobile-footer-member {
  display: none;
}
/* footer 마지막 글자 로그인 트리거 (숨은 관리자 진입) */
.admin-login-trigger {
  cursor: pointer;
}
/* 로그인 회원 하단 고정 바 */
.member-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #1c1a17;
  border-top: 2px solid var(--po);
}
.member-bar .member-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.member-bar .mb-hello {
  font-size: 14px;
  color: #ddd;
  letter-spacing: -0.02em;
}
.member-bar .mb-hello b {
  color: var(--po);
  font-weight: 700;
}
.member-bar .mb-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.member-bar .mb-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--po);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.member-bar .mb-btn:hover,
.member-bar .mb-btn:focus {
  background: #fff;
  color: var(--po);
}
.member-bar .mb-out {
  background: transparent;
  border: 1px solid #666;
  color: #ddd;
}
.member-bar .mb-out:hover,
.member-bar .mb-out:focus {
  background: #fff;
  color: #1c1a17;
  border-color: #fff;
}
@media (max-width: 560px) {
  .member-bar .member-bar-inner {
    padding: 8px 14px;
  }
  .member-bar .mb-hello {
    font-size: 12.5px;
  }
  .member-bar .mb-btn {
    padding: 7px 14px;
    font-size: 13px;
  }
}

/* ── 이미지 커스텀 커서 (데스크톱 전용) ── */
@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }
  .cursor-ring,
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000001;
    will-change: transform;
  }
  /* 트레일 링은 이미지 커서에서는 사용하지 않음 */
  .cursor-ring {
    display: none;
  }
  /* 마우스를 따라다니는 이미지 커서 (img/cursor.png) */
  .cursor-dot {
    width: 17px;
    height: 22px;
    background: url("../img/cursor.png") no-repeat center / contain;
    transition:
      opacity 0.2s ease,
      width 0.15s ease,
      height 0.15s ease;
  }
  .cursor-dot.is-active {
    width: 22px;
    height: 29px;
    background-image: url("../img/cursor_h.png");
  }
}
/* button */
.btn_item {
  display: inline-block;
  margin: 35px 0;
  padding: 0 27px;
  height: 50px;
  font-family: "Open Sans";
  background-color: #555;
  font-size: 14px;
  line-height: 50px;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn_item:hover,
.btn_item:active .btn_item:focus {
  background-color: #cba061;
  color: #fff;
}
.btn_item + .btn_item {
  margin-left: 10px;
}
/* Login */
.header > .side > ul > li {
  float: left;
  position: relative;
}
.header > .side > ul:after {
  display: block;
  clear: both;
  content: "";
}
.header > .side > ul > li > a {
  display: block;
  width: 22px;
  height: 22px;
  margin-left: 12px;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
  text-align: center;
}
.header > .side > ul > li > a:hover,
.header > .side > ul > li > a:focus,
.header > .side > ul > li > a:active,
.header > .side > ul > li.on > a {
  color: #444;
}
.header > .side > ul .ly {
  position: relative;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 13px;
  background-color: #f9f9f9;
}
.header > .side > ul .ly.ly_login {
  overflow: hidden;
  margin-top: 0;
  background: url("../img/blank.gif") 0 0 repeat;
  height: 0;
}
.header > .side > ul .ly.ly_login ul {
  position: relative;
  margin-top: 18px;
  padding: 8px 0;
  background-color: #333;
  z-index: 3;
}
.header > .side > ul .on .ly.ly_login {
  height: auto;
}
.header > .side > ul .ly a {
  display: block;
  min-width: 120px;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  font-size: 13px;
  color: #9d9d9d;
}
.header > .side > ul .ly a:hover {
  color: var(--po);
  text-decoration: none;
}
.header > .side > ul > li .login_after {
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin-top: -9px;
  border-radius: 100%;
}
.header > .side > ul > li .login_after img {
  width: 40px;
  height: 40px;
}
.header > .side > ul > li .login_after ~ .ly_login .edge {
  right: 11px;
}
/* Magazine Header Type */
.custom_area {
  display: none;
}
.magazine .header {
  text-align: center;
}
.magazine .header > h1 {
  float: none;
  display: inline-block;
  margin: 0;
  padding: 80px 0 20px;
  vertical-align: top;
}
.magazine .header > .side {
  float: none;
  position: absolute;
  top: 0;
  right: 0;
  margin: 30px 0 0;
}
.magazine .gnb {
  float: none;
  max-width: 100%;
  margin-bottom: 40px;
}
.magazine .gnb > ul {
  display: inline-block;
  vertical-align: top;
}
.magazine .gnb > ul > li > a {
  position: relative;
  line-height: 60px;
}
.magazine .gnb > ul > li > a:after {
  position: absolute;
  top: 50%;
  left: -1px;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background-color: #888;
  content: "";
}
.magazine .gnb > ul > li:first-child > a:after {
  background: none;
}
.magazine .gnb > ul .depth2:after {
  background: none;
}
.magazine .gnb > ul .depth2,
.magazine .gnb > ul .depth3 {
  background-color: #f7f7f7;
}
.magazine .gnb > ul .depth2 a,
.magazine .header > .side > ul .ly a {
  color: #999;
}
.magazine .header > .side > ul .ly a:hover {
  color: red;
}
.magazine .gnb > ul > li > a:hover,
.magazine .gnb > ul > li > a:focus,
.magazine .gnb > ul > li > a:focus,
.magazine .gnb > ul > li.on > a,
.magazine .header > .side > ul > li.on > a,
.magazine .header > .side > ul .ly a:hover {
  color: var(--po);
}
.magazine .header > .side > ul .ly.ly_login ul {
  background-color: #f7f7f7;
  text-align: left;
}
.magazine .edge {
  border-color: transparent transparent #f7f7f7;
}
.magazine .header > .side > ul > li > a:hover,
.magazine .header > .side > ul > li > a:focus,
.magazine .header > .side > ul > li > a:active {
  color: var(--po);
}
.magazine .custom_area {
  display: block;
  position: absolute;
  top: 30px;
  left: 0;
}
.magazine .custom_area li {
  float: left;
  margin-right: 30px;
}
.magazine .custom_area a {
  font-size: 13px;
  line-height: 15px;
  color: #999;
}
.magazine .custom_area a:hover,
.magazine .custom_area a:hover,
.magazine .custom_area a:hover {
  color: var(--po);
}
.magazine .search_area {
  padding: 10px 20px;
}
/* Onepage Header Type */
.onepage .header_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.onepage .gnb > ul {
  background: url(../img/blank.gif) 0 0 repeat;
}
.onepage .gnb > ul > li > a {
  line-height: 60px;
  color: #f6f6f6;
}
.onepage .gnb > ul > li > a:hover,
.onepage .gnb > ul > li > a:focus,
.onepage .gnb > ul > li > a:focus,
.onepage .gnb > ul > li.on > a {
  color: #fff;
}
.onepage .shrink .gnb > ul > li > a {
  color: #888;
}
.onepage .shrink .gnb > ul > li > a:hover,
.onepage .shrink .gnb > ul > li > a:focus,
.onepage .shrink .gnb > ul > li > a:focus,
.onepage .shrink .gnb > ul > li.on > a {
  color: #444;
}
.onepage .header > .side > ul > li > a {
  color: #f6f6f6;
}
.onepage .header > .side > ul > li > a:hover,
.onepage .header > .side > ul > li > a:focus,
.onepage .header > .side > ul > li > a:active,
.onepage .header > .side > ul > li.on > a {
  color: #fff;
}
.onepage .search_area .btn_close {
  color: #f6f6f6;
}
.onepage .shrink .search_area .btn_close {
  color: #888;
}
.onepage .gnb > ul .depth2:after {
  background: none;
}
.onepage .gnb {
  margin-top: 20px;
}
.onepage .header > h1 {
  padding: 20px 0 0;
}
.onepage .search_area input[type="text"] {
  color: #f6f6f6;
}
.onepage .shrink .search_area input[type="text"] {
  color: #888;
}
.onepage .visual.sub.sub_type3 {
  margin-top: -100px;
}
/* Search */
.search_wrap {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.search_area {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 1160px;
  padding: 20px;
  z-index: 3;
  z-index: 3;
}
.search_area input {
  font-size: 13px;
  vertical-align: top;
}
.search_area input[type="text"] {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 10px 0;
  border: 0;
  background-color: transparent;
  font-size: 40px;
  color: var(--spo);
  -webkit-appearance: none;
}
.search_area input[type="text"]:focus {
  outline: 0;
}
.search_area input[type="text"]::-ms-clear {
  display: none;
}
.search_area .btn_close {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-size: 22px;
  color: var(--spo);
  text-align: center;
  line-height: 20px;
}
/* GNB */
.gnb {
  float: right;
  position: relative;
  z-index: 1;
  max-width: 742px;
  height: 100%;
  font-size: 13px;
}
.gnb a {
  text-decoration: none;
  white-space: nowrap;
}
.gnb > ul > li {
  float: left;
  position: relative;
  text-align: left;
}
.gnb > ul > li:last-child {
}
.gnb > ul:after {
  display: block;
  clear: both;
  content: "";
}
.gnb > ul > li > a {
  display: block;
  position: relative;
  padding: 0 20px;
  line-height: 100px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
}
.gnb > ul > li > a:hover {
  color: var(--spo);
}

.gnb > ul > li > a:focus,
.gnb > ul > li > a:focus,
.gnb > ul > li.on > a {
  color: var(--spo);
}

.gnb > ul > li:last-child {
  height: 50px;
  margin: 25px 0 0 10px;
  padding: 0 5px;
  line-height: 50px;
  color: var(--po);
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid var(--po);
}

.gnb > ul > li:last-child a {
  line-height: 50px;
  color: var(--po);
  font-size: 20px;
  font-weight: 700;
}

.gnb > ul > li:last-child:hover {
  background-color: var(--spo);
  border: 1px solid var(--po);
}
.gnb > ul > li:last-child:hover a {
  color: var(--po);
}

.gnb > ul .depth2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  padding: 8px 0;
  background-color: var(--ink);
  border-radius: 7px;
}
.gnb > ul .depth2 > li {
  position: relative;
}

.gnb > ul .depth2 a {
  display: block;
  position: relative;
  min-width: 170px;
  height: 40px;
  padding: 0 30px 0 20px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.gnb > ul .depth2 a:hover,
.gnb > ul .depth2 a:active,
.gnb > ul .depth2 a:focus,
.gnb > ul .depth2 > li.on > a {
  color: var(--po);
}
.gnb > ul .depth3 {
  display: none;
  position: absolute;
  top: -8px;
  left: 100%;
  z-index: 2;
  padding: 8px 0;
  background-color: #333;
}
.gnb > ul .depth2 > li.more > a:after {
  position: absolute;
  right: 20px;
  content: ">";
}

.gnb > ul > li.join a {
  line-height: 1.2;
  font-size: 16px;
  text-align: center;
  padding: 5px 30px;
  margin: 13px 0;
  background-color: #bc936f;
  color: #fff;
}
.gnb > ul > li.join a:hover,
.gnb > ul > li.join a:focus,
.gnb > ul > li.join a:focus,
.gnb > ul > li.join .on > a {
  background-color: var(--ink);
  color: #fff;
}

.fixed_header .header_wrap.shrink .gnb > ul > li.join a {
  line-height: 1.2;
  padding: 14px 30px;
  font-size: 14px;
}

.onepage .shrink .header > .side > ul > li > a {
  color: #444;
}
.onepage .shrink .gnb {
  margin-top: 0;
}
.magazine .shrink .gnb {
  margin-bottom: 10px;
}
.magazine .shrink h1 {
  margin-top: 10px;
}
.magazine .header_wrap.shrink .gnb > ul > li > a {
  line-height: 40px;
}
/* VISUAL */
.visual.sub {
  position: relative;
  padding: 0px 0;
  line-height: 30px;
}
.visual.sub .sub_title {
  position: relative;
  z-index: 2;
  width: 1200px;
  margin: 0 auto;
}
.visual.sub .sub_title h1 {
  position: relative;
  font-weight: 700;
  font-size: 17px;
  color: #444;
}
.visual.sub .sub_title h1:after {
  position: absolute;
  top: 115%;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #444;
  content: "";
}
.visual.sub .bg_img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.visual.sub.sub_type2 {
  padding: 0;
}
.visual.sub.sub_type2 .bg_img {
  display: block;
}
.visual.sub.sub_type2 .sub_title h1 {
  color: #fff;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 1px;
}
.visual.sub.sub_type2 .sub_title h1:after,
.visual.sub.sub_type3 .sub_title h1:after {
  background: none;
}
.visual.sub.sub_type3 {
  padding: 250px 0 210px;
  line-height: 40px;
  text-align: center;
}
.visual.sub.sub_type3 .bg_img {
  display: block;
  background-attachment: fixed;
  background-size: auto auto;
}
.visual.sub.sub_type3 .sub_title h1 {
  font-size: 39px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
}
/* LNB */
.body.fixed-width .lnb > ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 40px 0 0;
}
.body.fixed-width .lnb > ul > li {
  margin-bottom: 40px;
}
.body.fixed-width .lnb > ul > li > a,
.body.fixed-width .lnb > ul > li > span {
  display: block;
  line-height: 21px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
}
.body.fixed-width .lnb ul ul li.on a {
  color: var(--po);
}
.body.fixed-width .lnb ul ul a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  color: #888;
  text-decoration: none;
}
.body.fixed-width .lnb ul ul a:hover,
.body.fixed-width .lnb ul ul a:focus,
.body.fixed-width .lnb ul ul a:active {
  color: var(--po);
}
.body.fixed-width .lnb img {
  vertical-align: top;
}
.body.fixed-width.left .lnb,
.body.fixed-width.right .lnb {
  float: left;
  width: 260px;
  padding: 0 0 16px;
}
.body.fixed-width.left .content,
.body.fixed-width.right .content {
  float: right;
  width: 900px;
  min-height: 400px;
  padding: 40px 0 100px;
}
.body.fixed-width.right .lnb {
  float: right;
}
.body.fixed-width.right .content {
  float: left;
}
.body.fixed-width.none .lnb {
  display: none;
}
.body.fixed-width.none .content {
  float: none;
  width: 100%;
  margin-bottom: 40px;
}
/* Scroll to top link */
.btn_top {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 57px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background-color: var(--po);
  font-size: 24px;
  color: #fff;
  text-align: center;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.btn_top:hover {
  background-color: var(--ink);
  color: #fff;
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn_top i {
  line-height: 48px;
}
.swiper-container {
  height: 600px;
  font-family:
    Raleway, "나눔바른고딕", NanumBarunGothic, ng, "돋움", Dotum, AppleGothic,
    Helvetica, serif;
}
.swiper-container > div > div {
  display: table;
  height: 600px;
  color: #fff;
  background-size: cover;
}
.swiper-container > div > div > div {
  display: table-cell;
  vertical-align: middle;
}
.swiper-container > div > div > div > div {
  width: 1200px;
  margin: 0 auto;
}
.swiper-container h1 {
  font-weight: 700;
  margin: 0 0 19px 0;
  font-size: 60px;
  line-height: 70px;
  text-decoration: none;
}
.swiper-container p {
  font-size: 20px;
  line-height: 22px;
}
.swiper-button {
  position: absolute;
  top: 50%;
  display: none;
  margin: -25px 0 0 0;
}
.swiper-container:hover .swiper-button {
  display: block;
}
.swiper-button.left {
  left: 20px;
}
.swiper-button.right {
  right: 20px;
}
.swiper-button i {
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.swiper-button button {
  background-color: #333;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.swiper-pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 5px;
  width: 100%;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #fff;
  opacity: 0.6;
  margin: 0 3px;
  cursor: pointer;
}
.swiper-active-switch {
  background: #fff;
  opacity: 1;
}

@media all and (max-width: 768px) {
  body,
  html {
    min-width: 100%;
  }
  /* Layout */
  .container {
    min-width: 100%;
  }
  .header {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    margin: 0 auto;
    zoom: 1;
  }
  .magazine .header {
    text-align: left;
  }
  .magazine .header > h1 {
    text-align: left;
    display: block;
    padding: 0 15px;
  }
  .header > .side {
    display: none;
  }
  .body.fixed-width {
    width: auto;
    margin: 0;
  }
  .header:after,
  .body:after {
    clear: both;
    content: "";
  }
  .body {
    padding: 0;
  }
  .content {
    zoom: 1;
  }
  .content:after {
    clear: both;
    content: "";
  }
  .content > :first-child {
    margin-top: 0;
  }

  .body.fixed-width {
    border-left: none;
    border-right: none;
  }

  .body.fixed-width.none .content {
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 22px 30px;
    box-sizing: border-box;
  }
  .content img {
    max-width: 100%;
    height: auto;
  }
  .body.fixed-width.left .content,
  .body.fixed-width.right .content {
    width: auto;
    float: none;
    min-height: 100%;
    padding: 40px 0;
  }
  /* Header */
  .header > h1 {
    float: none;
    width: 200px;
    margin-left: 0;
    padding: 0 15px;
    line-height: 65px;
    height: 65px;
    display: block;
  }
  .header > h1 img {
    max-height: 45px;
    padding: 0;
    margin: 0;
  }
  .header.sub_type3 {
    position: absolute;
  }
  /* Fixed Header */
  .container.fixed_header {
    padding-top: 0;
  }
  .header_wrap.shrink {
    display: none;
  }
  .onepage .header > h1 {
    padding: 0 14px;
  }
  .fixed_header .header_wrap {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .fixed_header .header_wrap.shrink {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e1e1e1;
    background-color: #fff;
    -webkit-animation: ani-header 0.5s forwards;
    animation: ani-header 0.5s forwards;
  }
  .fixed_header .header_wrap.shrink .header > h1 {
    padding: 0;
  }
  .fixed_header .header_wrap.shrink .gnb > ul > li > a {
    line-height: 60px;
  }
  .fixed_header .header_wrap.shrink .header > .side {
    margin: 19px 0 0 22px;
  }
  .fixed_header .header_wrap.shrink .search_area {
    padding: 0 20px;
  }

  /* button */
  .btn_item {
    display: inline-block;
    margin: 35px 0;
    padding: 0 27px;
    height: 50px;
    font-family: "Open Sans";
    background-color: #555;
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 1px;
    color: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .btn_item:hover,
  .btn_item:active .btn_item:focus {
    background-color: #cba061;
    color: #fff;
  }
  .btn_item + .btn_item {
    margin-left: 10px;
  }
  /* Login */
  .header > .side {
    display: none;
  }
  .header > .custom_area {
    display: none;
  }
  /* Search */
  .search_wrap {
    display: none;
  }
  .gnb {
    float: none;
    position: static;
    z-index: 1;
    max-width: 100%;
    height: 100%;
    font-size: 1em;
    background: #fff;
  }
  .onepage .gnb {
    margin-top: 0;
  }
  .magazine .gnb {
    margin-bottom: 0;
  }
  .gnb a {
    white-space: normal;
    font-size: 14px;
    display: block;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }
  .gnb > ul {
    display: none;
    padding: 0;
    max-height: 360px;
    overflow-x: scroll;
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    -webkit-overflow-scrolling: touch;
  }
  .magazine .gnb > ul {
    display: none;
  }
  .gnb > ul > li {
    float: none;
    position: static;
    border-left: none;
    padding: 0 22px;
  }
  .gnb > ul > li:first-child > a {
    border-top: 0;
  }
  .gnb > ul:after {
    display: none;
  }
  .magazine .gnb > ul > li > a,
  .gnb > ul > li > a {
    position: static;
    padding: 10px 0;
    line-height: normal;
    font-size: normal;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
  }
  .onepage .gnb > ul > li > a {
    color: #555;
    line-height: normal;
  }
  .onepage .gnb > ul > li > a:hover,
  .onepage .gnb > ul > li > a:focus,
  .onepage .gnb > ul > li > a:focus,
  .onepage .gnb > ul > li.on > a {
    color: #555;
  }
  .magazine .gnb > ul .depth2,
  .magazine .gnb > ul .depth3,
  .gnb > ul .depth2 {
    display: block;
    position: static;
    padding: 0;
    background-color: #fff;
  }
  .gnb > ul .depth2 > li {
    position: static;
  }
  .gnb > ul .depth2:after {
    display: none;
  }
  .gnb > ul .depth2 a {
    position: static;
    min-width: 100%;
    height: auto;
    padding: 5px 0 5px 20px;
    line-height: normal;
    color: #555;
    font-size: 18px;
  }
  .gnb > ul .depth3 {
    display: block;
    position: static;
    background-color: #fff;
    padding: 0;
  }
  .gnb > ul .depth3 a {
    color: #999;
  }
  .gnb > ul .depth2 > li.more > a:after {
    display: none;
  }

  .gnb > ul > li:last-child {
    display: none;
  }

  /* GNB */
  .gnb {
    float: none;
    position: static;
    z-index: 1;
    max-width: 100%;
    height: 100%;
    font-size: 1em;
    display: block;
  }
  .gnb #mobile_menu_btn {
    display: block;
  }
  .gnb .menu_btn {
    height: 30px;
    width: 44px;
    display: block;
    position: absolute;
    top: 14px;
    right: 10px;
    display: inline-block;
  }
  .gnb .menu_btn .menu_bar {
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    left: 12px;
  }
  .gnb .menu_btn .menu_bar div {
    height: 0;
    border-top: 2px solid var(--ink);
    position: absolute;
  }
  .header.sub_type3 .gnb .menu_btn .menu_bar div {
    border-top: 2px solid #fff;
  }
  .gnb .menu_btn .menu_bar div.btn1 {
    width: 26px;
    top: 0;
  }
  .gnb .menu_btn .menu_bar div.btn2 {
    width: 30px;
    top: 13px;
    transition: all 0.1s;
  }
  .gnb .menu_btn .menu_bar div.btn3 {
    width: 36px;
    bottom: 0;
  }
  .gnb .menu_btn.opened .menu_bar div.btn1 {
    top: 12px;
    width: 36px;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .gnb .menu_btn.opened .menu_bar div.btn2 {
    top: 10px;
    display: none;
  }
  .gnb .menu_btn.opened .menu_bar div.btn3 {
    top: 12px;
    width: 36px;
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .body {
  }
  .body .lnb {
    display: none;
  }
  .body .content {
    overflow: hidden;
  }
  .visual {
    box-sizing: border-box;
  }
  .visual.sub {
    position: relative;
    padding: 5px 22px 00px 22px;
    line-height: 30px;
  }
  .visual.sub .sub_title {
    position: relative;
    z-index: 2;
    width: auto;
    margin: 0;
  }

  .visual.sub .subtit {
    height: 60px;
  }
  .visual.sub .subtit p {
    line-height: 50px;
  }

  .visual.sub .sub_title h1 {
    position: relative;
    font-weight: 700;
    font-size: 17px;
    color: #444;
  }

  .visual.sub .sub_title h1:after {
    position: absolute;
    top: 115%;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: #444;
    content: "";
  }
  .visual.sub .bg_img {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visual.sub.sub_type2 {
    padding: 0px;
  }
  .visual.sub.sub_type2 .bg_img {
    display: block;
  }
  .visual.sub.sub_type2 .sub_title h1 {
    color: #fff;
    font-weight: 400;
    font-size: 23px;
    letter-spacing: 1px;
  }
  .visual.sub.sub_type2 .sub_title h1:after,
  .visual.sub.sub_type3 .sub_title h1:after {
    background: none;
  }
  .visual.sub.sub_type3 {
    padding: 80px 0 0;
    line-height: 40px;
    text-align: center;
  }
  .visual.sub.sub_type3 .bg_img {
    display: block;
    background-attachment: fixed;
    background-size: auto auto;
  }
  .visual.sub.sub_type3 .sub_title {
    padding: 100px 0 70px 0;
  }
  .visual.sub.sub_type3 .sub_title h1 {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
  }
  .swiper-container {
    height: 270px;
    font-family:
      Raleway, "나눔바른고딕", NanumBarunGothic, ng, "돋움", Dotum, AppleGothic,
      Helvetica, serif;
  }
  .swiper-container > div > div {
    display: table;
    height: 270px;
    color: #fff;
  }
  .swiper-container > div > div > div {
    display: table-cell;
    vertical-align: middle;
  }
  .swiper-container > div > div > div > div {
    padding: 0 14px;
    width: auto;
    margin: 0;
  }
  .swiper-container h1 {
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 24px;
    line-height: 30px;
    text-decoration: none;
  }
  .swiper-container p {
    font-size: 14px;
    line-height: 18px;
  }
}
/* header animation */
@-webkit-keyframes ani-header {
  0% {
    top: -60px;
  }
  100% {
    top: 0px;
  }
}
@keyframes ani-header {
  0% {
    top: -60px;
  }
  100% {
    top: 0px;
  }
}

@media (max-width: 768px) {
  /* 모바일: breadcrumb 문서 제목만 숨김 (메뉴명은 유지) */
  .breadcrumb li.bc-doc {
    display: none;
  }

  /* 모바일: 상단 메뉴 고정 + 배경색 */
  .header_wrap,
  .fixed_header .header_wrap,
  .fixed_header .header_wrap.shrink {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: block;
    background-color: var(--po);
  }
  /* 고정 헤더 높이만큼 본문 내림 */
  .container,
  .container.fixed_header {
    padding-top: 65px;
  }
  /* 모바일: 로고를 흰색(logo_w.png)로 교체 */
  .header > h1 img {
    width: auto;
    max-height: 50px;
  }
  /* 모바일: 햄버거 버튼 흰색 */
  .gnb .menu_btn .menu_bar div {
    border-top-color: #fff;
  }

  .header > .side {
    display: none;
  }

  .side_join {
    display: block;
    position: absolute;
    top: 14px;
    float: left;
    margin-left: 10px;
    background-color: #bc936f;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid var(--ink);
  }
  .side_join a {
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.05em;
  }
  .gnb > ul > li.join {
    display: none;
  }

  .footer .f_info_area {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 20px 22px;
    box-sizing: border-box;
  }

  .footer .f_info {
    float: left;
    position: relative;
    width: 100%;
    margin-right: 0px;
  }

  .footer .f_info2 {
    position: relative;
    float: left;
  }
}
