@charset "UTF-8";
/* ================================================================== */
/* Name	: common.css
/* Script : Font, Layout CSS
/* Author : Design Geulggol
/* Date	: 2021-04-15
/* ================================================================== */
.pc-block {
  display: block;
}

.m-block {
  display: none;
}

.t-block {
  display: none;
}

/* 한줄 말줄임 */
.text-ellipsis {
  width: 100%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 여러줄 말줄임 */
.multi-ellipsis {
  width: 100%;
  line-height: 1.4;
  white-space: normal;
  word-break: break-all;
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.stretched-link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;
}

/* ----------------------------- */
/* Basic
/* ----------------------------- */
html, body {
  height: 100%;
  text-align: left;
  word-break: keep-all;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "NotoSansRegular", "malgun gothic", 맑은고딕, "Dotum", 돋움, "Arial", "sans-serif";
  font-weight: 300;
  font-size: 1.8rem;
  line-height: normal !important;
  color: #000;
}
body img {
  max-width: 100%;
  vertical-align: top;
}

a {
  color: #000;
}
a :hover, a :focus {
  color: #000;
}

input {
  padding: 0 10px;
}

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=file],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea,
button,
select {
  font-family: "NanumSquareR", "malgun gothic", 맑은고딕, "Dotum", 돋움, "Arial", "sans-serif";
}

select {
  padding: 10px 40px 10px 17px;
  background: #fff url("/") no-repeat center right 14px;
  background-size: 9px 5px;
}

::-moz-selection {
  color: #fff;
  background: #b8251a;
  text-shadow: 1px 1px #000;
}

::selection {
  color: #fff;
  background: #b8251a;
  text-shadow: 1px 1px #000;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 15px;
}

/* ----------------------------- */
/* Header
/* ----------------------------- */
body > header {
  border-bottom: 1px solid #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  /* logo */
}
body > header .hi {
  border-right: 1px solid #ccc;
  padding: 0 4.3rem;
  margin: 4.3rem 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body > header .hi img {
  width: 225px;
}
body > header .hi a span {
  display: block;
  margin: 9px auto 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #787878;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
body > header .ci a {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 1.5rem;
  color: #969696;
  margin: 4.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body > header .ci a:hover {
  color: #969696;
}
body > header .ci span {
  display: block;
}
body > header .ci img {
  width: 130px;
  margin-right: 20px;
}
body > header .nav-wrap {
  margin-left: auto;
}

/* nav_pc */
nav.nav-pc {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav.nav-pc > ul[data-depth="1"] {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav.nav-pc > ul[data-depth="1"] > li {
  position: relative;
}
nav.nav-pc > ul[data-depth="1"] > li::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  top: 50%;
  right: 0;
}
nav.nav-pc > ul[data-depth="1"] > li:last-child::after {
  display: none;
}
nav.nav-pc > ul[data-depth="1"] > li > a {
  padding: 5rem 6.5rem;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav.nav-pc > ul[data-depth="1"] > li > a::after {
  content: "";
  display: block;
  width: 5px;
  height: 7px;
  background: #0075b9;
  opacity: 0;
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: skew(-30deg) translate(-50%, 0);
          transform: skew(-30deg) translate(-50%, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav.nav-pc > ul[data-depth="1"] > li > a:hover, nav.nav-pc > ul[data-depth="1"] > li > a:active, nav.nav-pc > ul[data-depth="1"] > li > a.active, nav.nav-pc > ul[data-depth="1"] > li > a.position {
  color: #0075b9;
}
nav.nav-pc > ul[data-depth="1"] > li > a:hover::after, nav.nav-pc > ul[data-depth="1"] > li > a:active::after, nav.nav-pc > ul[data-depth="1"] > li > a.active::after, nav.nav-pc > ul[data-depth="1"] > li > a.position::after {
  opacity: 1;
}
nav.nav-pc > ul[data-depth="1"] > li:first-child ul[data-depth="2"] {
  border-left: none;
}
nav.nav-pc ul[data-depth="2"] {
  display: none;
  width: 100%;
  font-family: "NotoSansLight", sans-serif;
  font-size: 1.6rem;
  padding: 10px;
  margin-top: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 200;
}
nav.nav-pc ul[data-depth="2"] a {
  color: #fff;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 5px 0;
}
nav.nav-pc ul[data-depth="2"] a:hover {
  text-decoration: underline;
}

.sub-bg {
  width: 100%;
  margin-top: 1px;
  /*background: linear-gradient(135deg, rgba(75,170,100,1) 0%, rgba(0,117,185,1) 46%, rgba(0,117,185,1) 100%);*/
  background: url("../../images/snb_bg.jpg") no-repeat;
  background-size: cover;
  display: none;
  position: absolute;
  left: 0;
  z-index: 190;
}
.sub-bg .slogan {
  font-family: "Open sans", sans-serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 30%;
  left: 5%;
}
.sub-bg .slogan span {
  display: block;
}

/* nav_mobile */
.hamnav-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #0075b9;
  display: none;
}

nav.nav-mobile {
  width: 100%;
  color: #fff;
  padding: 100px 4% 0;
  height: 100%;
  background-color: #0075b9;
  z-index: 200;
  display: none;
}
nav.nav-mobile > ul {
  border-top: 2px solid #d9d9d9;
}
nav.nav-mobile > ul > li {
  position: relative;
  padding: 18px 20px;
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: 1px solid #d9d9d9;
}
nav.nav-mobile > ul > li a {
  font-family: "NotoSansRegular";
  color: #fff;
}
nav.nav-mobile > ul > li :before, nav.nav-mobile > ul > li :after {
  content: "";
  display: block;
  position: absolute;
  top: 32px;
  right: 14px;
  width: 10px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: ease 0, 2s;
  transition: ease 0, 2s;
}
nav.nav-mobile > ul > li :after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: ease 0, 2s;
  transition: ease 0, 2s;
}
nav.nav-mobile > ul > li .on:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: ease 0, 2s;
  transition: ease 0, 2s;
}
nav.nav-mobile ul[data-depth="2"] {
  height: auto;
  margin-left: 20px;
  padding-top: 4%;
  display: none;
}
nav.nav-mobile ul[data-depth="2"] li {
  font-size: 2rem;
  padding-left: 2%;
  padding-bottom: 4px;
  font-weight: 400;
  color: #fff;
}
nav.nav-mobile ul[data-depth="2"] li:first-child ul {
  /* display: block; */
}

/* ----------------------------- */
/* Visual
/* ----------------------------- */
.main-visual .book-jeho {
  font-family: "NotoSansLight", sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 3px;
  padding-top: 10px;
  position: absolute;
  top: calc( 50% + 80px);
  right: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.main-visual .book-jeho:before {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main-visual .book-jeho span {
  font-family: "NotoSansBold", sans-serif;
}
.main-visual .scroll-wrap {
  font-family: "NotoSansBold", sans-serif;
  font-size: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 60%;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.main-visual .scroll-wrap .mouse-img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.main-visual .scroll-wrap .bar {
  width: 60px;
  height: 20px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.main-visual .scroll-wrap .bar:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-name: bar-animation;
          animation-name: bar-animation;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.main-visual .scroll-wrap .scroll {
  letter-spacing: 5px;
}

@-webkit-keyframes bar-animation {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes bar-animation {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* ----------------------------- */
/* 지난호보기 리스트
/* ----------------------------- */
.webzine-list {
  padding: 0 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.webzine-list article {
  width: calc( 100% / 4 - ((20px * 3) / 4));
  border: 1px solid #d1d1d1;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
.webzine-list article:nth-child(4n) {
  margin-right: 0;
}
.webzine-list article .img-wrap {
  margin-bottom: 0 !important;
  position: relative;
}
.webzine-list article .img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.webzine-list article .img-wrap::after {
  content: "";
  display: block;
  content: "지난호 보기";
  width: 100px;
  height: 30px;
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  background: url("../../images/vol_icon.png") no-repeat center top;
  padding-top: 62px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.webzine-list article:hover .img-wrap::before {
  background: rgba(0, 0, 0, 0.5);
}
.webzine-list article:hover .img-wrap::after {
  opacity: 1;
}
.webzine-list article header {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #cccdd5;
  border-bottom: none;
  color: #585858;
}
.webzine-list article header h2 {
  font-size: 2rem;
  color: #000;
}
.webzine-list article header h2 span {
  font-size: 1.4rem;
  display: block;
}

/* ----------------------------- */
/* Footer
/* ----------------------------- */
footer {
  font-family: "NotoSansRegular", sans-serif;
  color: #b1b1b1;
  background: #2f2f2f;
}
footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
footer .footer-inner > div:first-child {
  margin-left: auto;
}
footer .footer-info {
  line-height: 190%;
}
footer .footer-info address, footer .footer-info div {
  display: inline-block;
}
footer .footer-info address:after, footer .footer-info div:after {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 1px;
  height: 14px;
  vertical-align: middle;
  background: #595959;
  margin: -2px 19px 0 19px;
}
footer .footer-info > div:last-child:after {
  display: none;
}
footer .footer-info a {
  color: #b1b1b1;
}
footer copyright {
  font-size: 1.6rem;
  color: #6b6b6b;
  margin-top: 50px;
  display: block;
}
footer select {
  width: 300px;
  color: #b1b1b1;
  border: 1px solid #5e5e5e;
  background: #2f2f2f url("../../images/footer_select_arrow.png") no-repeat center right 14px;
  padding: 15px;
}
footer .sns-list {
  margin-top: 30px;
}
footer .sns-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .sns-list ul li {
  margin-right: 10px;
}
footer .sns-list ul li:last-child {
  margin-right: 0;
}

/* ----------------------------- */
/* Responsive
/* -----------------------------
/* Layout Max Size : 1440px
/* Desktop Size	: 1024px < Screen <= 1280px
/* Tablet Size	: 1024px < Screen <= 768px
/* Mobile Size	: 767px < Screen
/* ----------------------------- */
@media screen and (max-width: 1440px) {
  /* ----------------------------- */
  /* 지난호보기 리스트
  /* ----------------------------- */
  .webzine-list {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 1320px) {
  /* ----------------------------- */
  /* Header
  /* ----------------------------- */
  body > header {
    /* logo */
  }
  body > header .hi {
    padding: 0 2rem;
  }
  body > header .hi img {
    width: 200px;
  }
  body > header .ci a {
    font-size: 1.3rem;
    margin: 4.3rem 2rem;
  }
  body > header .ci img {
    width: 100px;
  }

  /* nav_pc */
  nav.nav-pc > ul[data-depth="1"] > li > a {
    padding: 5rem 4rem;
  }
}
@media screen and (max-width: 1023px) {
  /* ----------------------------- */
  /* 지난호보기 리스트
  /* ----------------------------- */
  .webzine-list article {
    width: calc( 100% / 3 - ((20px * 2) / 3));
  }
  .webzine-list article:nth-child(4n) {
    margin-right: 20px;
  }
  .webzine-list article:nth-child(3n) {
    margin-right: 0;
  }
  .webzine-list article header {
    height: auto;
  }

  /* ----------------------------- */
  /* Footer
  /* ----------------------------- */
  footer .footer-inner {
    padding: 40px 10px;
    display: block;
  }
  footer .footer-inner > div:first-child {
    margin-bottom: 30px;
  }
  footer .footer-info br {
    display: none;
  }
  footer copyright {
    margin-top: 30px;
  }
}
/*  Tablet */
@media screen and (max-width: 960px) {
  .pc-block {
    display: none !important;
  }

  .t-block {
    display: block !important;
  }

  .m-block {
    display: none !important;
  }

  /* ----------------------------- */
  /* Header
  /* ----------------------------- */
  body > header {
    /* logo */
  }
  body > header .hi {
    margin: 3rem 0;
  }
  body > header .ci a {
    font-size: 1.3rem;
    margin: 3.1rem 2rem;
  }

  /* nav_pc */
  header nav.nav-pc {
    display: none;
  }

  /* nav_mobile */
  .nav-mobile-bg {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 200;
    /* background-color: rgba(0, 0, 0, 0.8); */
  }

  .hamnav-wrap {
    display: block;
  }

  .hamnav {
    position: relative;
    z-index: 1000;
    height: 100%;
  }

  nav.nav-mobile {
    display: block;
  }

  /* util */
  header .util {
    right: 130px;
    top: 28px;
  }

  .menu-trigger {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    width: 40px;
    height: 33px;
    margin-top: -16px;
    margin-left: -20px;
    left: 50%;
    top: 50%;
  }
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  .menu-trigger span.on {
    background-color: #fff;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 15px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar-01 0.75s forwards;
    animation: menu-bar-01 0.75s forwards;
  }
  .menu-trigger.type span:nth-of-type(2) {
    -webkit-transition: all 0.25s 0.25s;
    transition: all 0.25s 0.25s;
    opacity: 1;
  }
  .menu-trigger.type span:nth-of-type(3) {
    -webkit-animation: menu-bar-02 0.75s forwards;
    animation: menu-bar-02 0.75s forwards;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar-01 0.75s forwards;
    animation: active-menu-bar-01 0.75s forwards;
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar-02 0.75s forwards;
    animation: active-menu-bar-02 0.75s forwards;
  }

  @-webkit-keyframes menu-bar-01 {
    0% {
      -webkit-transform: translateY(15px) rotate(45deg);
              transform: translateY(15px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(15px) rotate(0);
              transform: translateY(15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }

  @keyframes menu-bar-01 {
    0% {
      -webkit-transform: translateY(15px) rotate(45deg);
              transform: translateY(15px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(15px) rotate(0);
              transform: translateY(15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes menu-bar-02 {
    0% {
      -webkit-transform: translateY(-15px) rotate(-45deg);
              transform: translateY(-15px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(0);
              transform: translateY(-15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu-bar-02 {
    0% {
      -webkit-transform: translateY(-15px) rotate(-45deg);
              transform: translateY(-15px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(0);
              transform: translateY(-15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-menu-bar-01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(15px) rotate(0);
              transform: translateY(15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(15px) rotate(45deg);
              transform: translateY(15px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar-01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(15px) rotate(0);
              transform: translateY(15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(15px) rotate(45deg);
              transform: translateY(15px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-bar-02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(0);
              transform: translateY(-15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-15px) rotate(-45deg);
              transform: translateY(-15px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar-02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-15px) rotate(0);
              transform: translateY(-15px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-15px) rotate(-45deg);
              transform: translateY(-15px) rotate(-45deg);
    }
  }
}
@media screen and (max-width: 790px) {
  /* ----------------------------- */
  /* Visual
  /* ----------------------------- */
  .main-visual .book-jeho {
    text-align: center;
    padding-top: 10px;
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-visual .book-jeho:before {
    width: 100px;
  }
  .main-visual .scroll-wrap {
    text-align: center;
    margin-top: 30px;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-visual .scroll-wrap .mouse-img {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .main-visual .scroll-wrap .bar {
    width: 1px;
    height: 30px;
    margin: 10px auto;
    display: block;
  }
  .main-visual .scroll-wrap .bar:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    -webkit-animation-name: bar-animation-vertical;
            animation-name: bar-animation-vertical;
  }
  @-webkit-keyframes bar-animation-vertical {
    from {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    50% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    to {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }
  @keyframes bar-animation-vertical {
    from {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    50% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    to {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }
}
/* Mobile */
@media screen and (max-width: 768px) {
  .pc-block {
    display: none !important;
  }

  .m-block {
    display: block !important;
  }

  .t-block {
    display: none !important;
  }

  body > header .btn-subscribe {
    right: 160px;
  }
  body > header .btn-collection .btn-pdf, body > header .btn-collection .btn-lastissue {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  /* ----------------------------- */
  /* Header
  /* ----------------------------- */
  body > header {
    height: 64px;
    /* logo */
  }
  body > header .hi {
    display: none;
  }
  body > header .ci a {
    margin: 1.4rem 2rem;
  }

  /* nav_mobile */
  .hamnav-wrap {
    width: 64px;
    height: 64px;
  }

  nav.nav-mobile {
    padding: 64px 4% 0;
  }
  nav.nav-mobile nav.nav-pc ul[data-depth="2"] {
    height: auto !important;
  }

  /* util */
  header .util {
    display: none;
  }

  /* hamber_nav */
  .menu-trigger {
    position: absolute;
    width: 32px;
    height: 27px;
    margin-top: -13px;
    margin-left: -16px;
    left: 50%;
    top: 50%;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger .active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar-01 0.75s forwards;
    animation: active-menu-bar-01 0.75s forwards;
  }
  .menu-trigger .active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger .active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar-02 0.75s forwards;
    animation: active-menu-bar-02 0.75s forwards;
  }

  @-webkit-keyframes menu-bar-02 {
    0% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
              transform: translateY(-12px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
              transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }

  @keyframes menu-bar-02 {
    0% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
              transform: translateY(-12px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
              transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-menu-bar-01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(12px) rotate(0);
              transform: translateY(12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(12px) rotate(45deg);
              transform: translateY(12px) rotate(45deg);
    }
  }
  @keyframes active-menu-bar-01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(12px) rotate(0);
              transform: translateY(12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(12px) rotate(45deg);
              transform: translateY(12px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-menu-bar-02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
              transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
              transform: translateY(-12px) rotate(-45deg);
    }
  }
  @keyframes active-menu-bar-02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-12px) rotate(0);
              transform: translateY(-12px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-12px) rotate(-45deg);
              transform: translateY(-12px) rotate(-45deg);
    }
  }
  /* ----------------------------- */
  /* 지난호보기 리스트
  /* ----------------------------- */
  .webzine-list article {
    width: calc( 100% / 2 - (20px / 2));
  }
  .webzine-list article:nth-child(4n) {
    margin-right: 20px;
  }
  .webzine-list article:nth-child(3n) {
    margin-right: 20px;
  }
  .webzine-list article:nth-child(2n) {
    margin-right: 0;
  }
  .webzine-list article header {
    height: auto;
  }

  /* ----------------------------- */
  /* Footer
  /* ----------------------------- */
  footer .footer-info {
    font-size: 1.4rem;
    text-align: left;
  }
  footer copyright {
    font-size: 1.2rem;
    word-break: keep-all;
  }
}
@media (max-width: 480px) {
  /* ----------------------------- */
  /* 지난호보기 리스트
  /* ----------------------------- */
  .webzine-list {
    padding: 0;
  }
  .webzine-list article {
    width: calc( 100% / 2 - (10px / 2));
  }
  .webzine-list article:nth-child(odd) {
    margin-right: 10px !important;
  }
  .webzine-list article:nth-child(even) {
    margin-right: 0 !important;
  }
}
/* ================================================================== */
/* Name	: vol_245 main.css
/* Script : Font, Layout CSS
/* Author : Design Geulggol
/* Date	: 2022-01-12
/* ================================================================== */
/* ----------------------------- */
/* Common
/* ----------------------------- */
/* nav_pc */
ul[data-depth="2"] {
  height: 366px;
}

.sub-bg {
  height: 366px;
}

section {
  padding: 120px 20px;
}
section > header {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

/* ----------------------------- */
/* Visual
/* ----------------------------- */
.main-visual {
  background: #e39381 url("../../images/vol_245/main/main_visual_title.png") no-repeat 90% center;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-visual .main-visual-img {
  margin: 160px 0;
}
.main-visual .main-visual-img img {
  width: 500px;
}

.slick-prev, .slick-next {
  width: 66px;
  height: 88px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: 100;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-prev::before, .slick-next::before {
  display: none;
}

.slick-prev {
  left: 20px;
  background-image: url("../../images/slider_arrow_prev.png");
}
.slick-prev:hover, .slick-prev:focus {
  background-image: url("../../images/slider_arrow_prev.png");
}

.slick-next {
  right: 20px;
  background-image: url("../../images/slider_arrow_next.png");
}
.slick-next:hover, .slick-next:focus {
  background-image: url("../../images/slider_arrow_next.png");
}

/* ----------------------------- */
/* 원형 3개 써클
/* ----------------------------- */
.main-circle-section .main-circle-section-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-circle-section .main-circle-section-inner article {
  margin-right: 80px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.main-circle-section .main-circle-section-inner article:last-child {
  margin-right: 0;
}
.main-circle-section .main-circle-section-inner article:hover .img-area:after {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.main-circle-section .main-circle-section-inner article .img-area {
  position: relative;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin-bottom: 35px;
  overflow: hidden;
}
.main-circle-section .main-circle-section-inner article .img-area:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.main-circle-section .main-circle-section-inner article .img-area > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main-circle-section .main-circle-section-inner article .img-area:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-circle-section .main-circle-section-inner article .img-area.pnuh:after {
  background-image: url("../../images/vol_245/main/section01_img01.jpg");
}
.main-circle-section .main-circle-section-inner article .img-area.pnuh-busan:after {
  background-image: url("../../images/vol_245/main/section01_img03.jpg");
}
.main-circle-section .main-circle-section-inner article .img-area.pnuh-yangsan:after {
  background-image: url("../../images/vol_245/main/section01_img02.jpg");
}
.main-circle-section .main-circle-section-inner article header h1, .main-circle-section .main-circle-section-inner article header h2 {
  font-family: "NotoSansMedium", sans-serif;
  text-align: center;
}
.main-circle-section .main-circle-section-inner article header h1 {
  font-size: 2.4rem;
  padding: 0 20px;
}
.main-circle-section .main-circle-section-inner article header h2 {
  font-size: 2rem;
  color: #4b947d;
  margin-bottom: 30px;
}
.main-circle-section .main-circle-section-inner article header h2::before, .main-circle-section .main-circle-section-inner article header h2:after {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 3px;
  height: 18px;
  vertical-align: center;
  background: #4b947d;
  margin-top: -6px;
}
.main-circle-section .main-circle-section-inner article header h2::before {
  margin-right: 20px;
}
.main-circle-section .main-circle-section-inner article header h2::after {
  margin-left: 20px;
}

/* ----------------------------- */
/* 의료특집
/* ----------------------------- */
.medical-special {
  background: #f2cbbf;
}
.medical-special .medical-special-inner {
  max-width: 1920px;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.medical-special .medical-special-inner article {
  padding: 0 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
@media (min-width: 769px) {
  .medical-special .medical-special-inner article:hover .img-area img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .medical-special .medical-special-inner article:hover .img-area p {
    opacity: 1;
  }
}
.medical-special .medical-special-inner article:last-child {
  margin-right: 0;
}
.medical-special .medical-special-inner article .img-area {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
.medical-special .medical-special-inner article .img-area img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.medical-special .medical-special-inner article .img-area p {
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (min-width: 769px) {
  .medical-special .medical-special-inner article .img-area p {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
  }
}
.medical-special .medical-special-inner article .img-area p span {
  font-size: 1.5rem;
  color: #b6b6b7;
}
.medical-special .medical-special-inner article .img-area p span::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 1px;
  height: 17px;
  vertical-align: middle;
  background: #b6b6b7;
  margin: -2px 10px 0 10px;
}
.medical-special .medical-special-inner article header {
  font-family: "NotoSansMedium", sans-serif;
}
.medical-special .medical-special-inner article header span {
  font-size: 1.7rem;
  color: #4b947d;
  margin-bottom: 18px;
}
.medical-special .medical-special-inner article header span::after {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 22px;
  height: 2px;
  vertical-align: middle;
  background: #4b947d;
  margin: -2px 0 0 10px;
}
.medical-special .medical-special-inner article header h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.medical-special .medical-special-inner article > p {
  height: 5rem;
  color: #848484;
}

/* ----------------------------- */
/* 진료과탐방, 직원만남
/* ----------------------------- */
.staff-wrap {
  padding-bottom: 0;
}
.staff-wrap .staff-inner {
  max-width: 1920px;
  padding: 0 90px;
  margin: 0 auto 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.staff-wrap .staff-inner > div {
  width: calc(50% - 40px / 2);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.staff-wrap .staff-inner > div:first-child {
  margin-right: 40px;
}
.staff-wrap .staff-inner .exploration-wrap .exploration {
  margin-bottom: 0 !important;
}
.staff-wrap .staff-inner .exploration-wrap article {
  position: relative;
}
.staff-wrap .staff-inner .exploration-wrap article::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.staff-wrap .staff-inner .exploration-wrap article:hover::after {
  opacity: 0.7;
}
.staff-wrap .staff-inner .exploration-wrap article header {
  font-family: "NotoSansMedium", sans-serif;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 20px;
  z-index: 20;
}
.staff-wrap .staff-inner .exploration-wrap article header p {
  font-size: 2rem;
}
.staff-wrap .staff-inner .exploration-wrap article header p span {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 1.6rem;
  border-radius: 20px;
  background: #5fb94d;
  padding: 5px 10px;
  margin-right: 15px;
  display: inline-block;
}
.staff-wrap .staff-inner .exploration-wrap article header h1 {
  font-size: 4.2rem;
}
.staff-wrap .staff-inner .exploration-wrap article img {
  width: 100%;
}
.staff-wrap .staff-inner .exploration-wrap .slick-dots {
  bottom: 10px;
}
.staff-wrap .staff-inner .exploration-wrap .slick-dots li {
  width: 45px;
  margin-right: 10px;
}
.staff-wrap .staff-inner .exploration-wrap .slick-dots li:last-child {
  margin-right: 0;
}
.staff-wrap .staff-inner .exploration-wrap .slick-dots li.slick-active button::before {
  background: #fff;
}
.staff-wrap .staff-inner .exploration-wrap .slick-dots li button {
  width: 100%;
}
.staff-wrap .staff-inner .exploration-wrap .slick-dots li button::before {
  content: "";
  width: 45px;
  height: 3px;
  background: #918e8d;
  opacity: 1;
}
.staff-wrap .staff-inner .staff-meeting {
  color: #fff;
  background: url("../../images/vol_242/main/staff_metting_bg.jpg");
  padding: 40px 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.staff-wrap .staff-inner .staff-meeting > header {
  margin-bottom: 30px;
}
.staff-wrap .staff-inner .staff-meeting > header h1 {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.6rem;
  text-align: center;
}
.staff-wrap .staff-inner .staff-meeting > header h1:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 5px auto 0 auto;
}
.staff-wrap .staff-inner .staff-meeting > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.staff-wrap .staff-inner .staff-meeting > div article {
  width: 50%;
  padding: 0 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.staff-wrap .staff-inner .staff-meeting > div article:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.staff-wrap .staff-inner .staff-meeting > div article:first-child .img-area {
  background-image: url("../../images/vol_242/main/staff_metting01.jpg");
}
.staff-wrap .staff-inner .staff-meeting > div article:last-child .img-area {
  background-image: url("../../images/vol_242/main/staff_metting02.jpg");
}
.staff-wrap .staff-inner .staff-meeting > div article .img-area {
  position: relative;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 30px;
}
.staff-wrap .staff-inner .staff-meeting > div article .img-area:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.staff-wrap .staff-inner .staff-meeting > div article .img-area > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.staff-wrap .staff-inner .staff-meeting > div article header {
  font-family: "NotoSansMedium", sans-serif;
  text-align: center;
}
.staff-wrap .staff-inner .staff-meeting > div article header h2 {
  width: 100%;
  font-size: 2rem;
}
.staff-wrap .staff-inner .staff-meeting > div article header span {
  width: 100%;
  font-size: 1.8rem;
  color: #b5b8cb;
  display: block;
}
.staff-wrap .staff-inner .meet-you {
  margin-bottom: 0 !important;
}
.staff-wrap .staff-inner .meet-you article {
  position: relative;
}
.staff-wrap .staff-inner .meet-you article::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.staff-wrap .staff-inner .meet-you article:hover::after {
  opacity: 0.7;
}
.staff-wrap .staff-inner .meet-you article header {
  font-family: "NotoSansMedium", sans-serif;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 20px;
  z-index: 20;
}
.staff-wrap .staff-inner .meet-you article header p {
  font-size: 2rem;
}
.staff-wrap .staff-inner .meet-you article header p span {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 1.6rem;
  border-radius: 20px;
  background: #a28765;
  padding: 5px 10px;
  margin-right: 15px;
  display: inline-block;
}
.staff-wrap .staff-inner .meet-you article header h1 {
  font-size: 4.2rem;
}
.staff-wrap .staff-inner .meet-you article img {
  width: 100%;
}

/* ----------------------------- */
/* 기타섹션
/* ----------------------------- */
.pnuh-story {
  padding-top: 0;
}
.pnuh-story > header {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.pnuh-story > header::before, .pnuh-story > header::after {
  content: "";
  display: block;
  width: calc( 50% - 116px );
  height: 1px;
  background: #d8d8d8;
  position: absolute;
  top: 50%;
}
.pnuh-story > header::before {
  left: 0;
}
.pnuh-story > header::after {
  right: 0;
}
.pnuh-story .pnuh-story-inner {
  max-width: 1920px;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.pnuh-story .pnuh-story-inner article {
  padding: 0 30px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.pnuh-story .pnuh-story-inner article:hover .img-area img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.pnuh-story .pnuh-story-inner article:last-child {
  margin-right: 0;
}
.pnuh-story .pnuh-story-inner article .img-area {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
.pnuh-story .pnuh-story-inner article .img-area img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.pnuh-story .pnuh-story-inner article header {
  font-family: "NotoSansMedium", sans-serif;
  text-align: center;
}
.pnuh-story .pnuh-story-inner article header span {
  font-size: 1.7rem;
  color: #4b947d;
  margin-bottom: 18px;
}
.pnuh-story .pnuh-story-inner article header span::before, .pnuh-story .pnuh-story-inner article header span::after {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 2px;
  height: 15px;
  vertical-align: middle;
  background: #4b947d;
  margin-top: -2px;
}
.pnuh-story .pnuh-story-inner article header span::before {
  margin-right: 10px;
}
.pnuh-story .pnuh-story-inner article header span::after {
  margin-left: 10px;
}
.pnuh-story .pnuh-story-inner article header h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.pnuh-story .pnuh-story-inner article > p {
  height: 5rem;
  color: #848484;
}

/* ----------------------------- */
/* PNUH NEWS
/* ----------------------------- */
.pnuh-news-wrap {
  max-width: 1920px;
  background: #f2cbbf;
  padding: 80px 60px;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.pnuh-news-wrap > header {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.pnuh-news-wrap .tab-header {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pnuh-news-wrap .tab-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pnuh-news-wrap .tab-header ul li {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.2rem;
  padding: 0 20px 20px 20px;
  position: relative;
  cursor: pointer;
}
.pnuh-news-wrap .tab-header ul li.active {
  color: #4b947d;
}
.pnuh-news-wrap .tab-header ul li.active::after {
  background: #4b947d;
}
.pnuh-news-wrap .tab-header ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #dcd9d7;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pnuh-news-wrap .tab-wrap .tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pnuh-news-wrap .tab-wrap .tab-content article {
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.pnuh-news-wrap .tab-wrap .tab-content article::after {
  content: "";
  display: block;
  content: "+";
  font-family: "NotoSansBold", sans-serif;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.pnuh-news-wrap .tab-wrap .tab-content article:first-child {
  margin-right: 20px;
}
.pnuh-news-wrap .tab-wrap .tab-content article .img-area {
  width: 50%;
}
.pnuh-news-wrap .tab-wrap .tab-content article header {
  width: 50%;
  padding: 40px 40px 0 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.pnuh-news-wrap .tab-wrap .tab-content article header h1 {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2rem;
}
@media (max-width: 1727px) {
  .pnuh-news-wrap .tab-wrap .tab-content article header.news-dental-245 {
    padding: 20px 40px 0 40px;
  }
}
@media (max-width: 1562px) {
  .pnuh-news-wrap .tab-wrap .tab-content article header.news-dental-245 {
    padding: 5px 40px 0 40px;
  }
}
@media (max-width: 1500px) {
  .pnuh-news-wrap .tab-wrap .tab-content article header.news-dental-245 {
    padding: 5px 10px 0 10px;
  }
}
@media (max-width: 480px) {
  .pnuh-news-wrap .tab-wrap .tab-content article header h1 br {
    display: none;
  }
}

/* ----------------------------- */
/* Responsive
/* -----------------------------
/* Layout Max Size : 1440px
/* Desktop Size	: 1024px < Screen <= 1280px
/* Tablet Size	: 1024px < Screen <= 768px
/* Mobile Size	: 767px < Screen
/* ----------------------------- */
@media screen and (max-width: 1720px) {
  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner .staff-meeting {
    padding: 20px;
  }
}
@media screen and (max-width: 1440px) {
  /* ----------------------------- */
  /* Visual
  /* ----------------------------- */
  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner {
    padding: 0 20px;
  }

  /* ----------------------------- */
  /* PNUH NEWS
  /* ----------------------------- */
  .pnuh-news-wrap .tab-wrap .tab-content article header {
    padding: 20px;
  }
}
@media screen and (max-width: 1300px) {
  /* ----------------------------- */
  /* 원형 3개 써클
  /* ----------------------------- */
  .main-circle-section .main-circle-section-inner {
    padding: 0 20px;
  }

  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .medical-special .medical-special-inner article {
    padding: 0 10px;
  }

  /* ----------------------------- */
  /* 기타섹션
  /* ----------------------------- */
  .pnuh-story .pnuh-story-inner {
    padding: 0 10px;
  }
  .pnuh-story .pnuh-story-inner article {
    padding: 0 10px;
  }

  /* ----------------------------- */
  /* PNUH NEWS
  /* ----------------------------- */
  .pnuh-news-wrap {
    padding: 40px 10px;
  }
}
@media screen and (max-width: 1200px) {
  /* ----------------------------- */
  /* PNUH NEWS
  /* ----------------------------- */
  .pnuh-news-wrap .tab-wrap .tab-content {
    display: block;
  }
  .pnuh-news-wrap .tab-wrap .tab-content article:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1100px) {
  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner {
    display: block;
  }
  .staff-wrap .staff-inner > div {
    width: 100%;
  }
  .staff-wrap .staff-inner .exploration-wrap {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*  Tablet */
@media screen and (max-width: 960px) {
  /* ----------------------------- */
  /* PNUH NEWS
  /* ----------------------------- */
  .pnuh-news-wrap .tab-header ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pnuh-news-wrap .tab-header ul li {
    width: 50%;
    text-align: center;
  }
  .pnuh-news-wrap .tab-header ul li:first-child {
    margin-bottom: 20px;
  }
  .pnuh-news-wrap .tab-header ul li:nth-child(2) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 790px) {
  /* ----------------------------- */
  /* Visual
  /* ----------------------------- */
  .main-visual {
    background-size: 10%;
    background-position: 90% 5%;
    padding: 50px 20px;
    display: block;
  }
  .main-visual .main-visual-img {
    width: 80%;
    text-align: center;
    margin: 0 auto 50px auto;
  }
}
@media screen and (max-width: 780px) {
  /* ----------------------------- */
  /* 원형 3개 써클
  /* ----------------------------- */
  .main-circle-section .main-circle-section-inner {
    padding: 0 40px;
    margin: 40px auto;
    display: block;
  }
  .main-circle-section .main-circle-section-inner article {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .main-circle-section .main-circle-section-inner article:last-child {
    margin-bottom: 0;
  }
  .main-circle-section .main-circle-section-inner article header h2 {
    margin-bottom: 10px;
  }
}
/* Mobile */
@media screen and (max-width: 768px) {
  /* ----------------------------- */
  /* common
  /* ----------------------------- */
  section > header {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }

  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner .exploration-wrap article header h1,
.staff-wrap .staff-inner .meet-you article header h1 {
    font-size: 2rem;
  }
  .staff-wrap .staff-inner .exploration-wrap article header p,
.staff-wrap .staff-inner .meet-you article header p {
    font-size: 1.2rem;
  }
  .staff-wrap .staff-inner .exploration-wrap article header p span,
.staff-wrap .staff-inner .meet-you article header p span {
    font-size: 1rem;
  }

  /* ----------------------------- */
  /* PNUH NEWS
  /* ----------------------------- */
  .pnuh-news-wrap > header {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
  .pnuh-news-wrap .tab-header ul {
    display: none !important;
  }
  .pnuh-news-wrap .tab-header select {
    width: 100%;
    font-family: "NotoSansMedium", sans-serif;
    font-size: 2rem;
    padding: 20px 10px;
    background: #f5f2ef url("../../images/footer_select_arrow.png") no-repeat center right 14px;
  }
}
@media screen and (max-width: 640px) {
  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .medical-special .medical-special-inner article {
    padding: 0;
  }

  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner .staff-meeting > div article {
    padding: 0 30px;
  }

  /* ----------------------------- */
  /* PNUH NEWS
  /* ----------------------------- */
  .pnuh-news-wrap .tab-wrap .tab-content article {
    display: block;
  }
  .pnuh-news-wrap .tab-wrap .tab-content article .img-area {
    width: 100%;
  }
  .pnuh-news-wrap .tab-wrap .tab-content article header {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  /* ----------------------------- */
  /* common
  /* ----------------------------- */
  section {
    padding: 60px 0;
  }

  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner .staff-meeting > div {
    display: block;
  }
  .staff-wrap .staff-inner .staff-meeting > div article {
    width: 100%;
    padding: 10px;
  }
  .staff-wrap .staff-inner .staff-meeting > div article:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
  }

  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .medical-special .medical-special-inner {
    padding: 0 20px;
    margin: 0 auto 60px auto;
  }

  /* ----------------------------- */
  /* 진료과탐방, 직원만남
  /* ----------------------------- */
  .staff-wrap .staff-inner .exploration-wrap article header,
.staff-wrap .staff-inner .meet-you article header {
    color: #000;
    padding: 25px 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
  .staff-wrap .staff-inner .exploration-wrap article header p span,
.staff-wrap .staff-inner .meet-you article header p span {
    color: #fff;
  }
  .staff-wrap .staff-inner .exploration-wrap .slick-dots,
.staff-wrap .staff-inner .meet-you .slick-dots {
    bottom: 130px;
  }

  .pnuh-story {
    padding: 0 0 120px 0;
  }
}
