@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);
}

@media (max-width:1280px) {
  /* ----------------------------- */
  /* Visual
  /* ----------------------------- */
  .main-visual .book-jeho {
    right:-2%;
  }
}

.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 sub.css
/* Script : Font, Layout CSS
/* Author : Design Geulggol
/* Date	: 2022-01-12
/* ================================================================== */
/* ----------------------------- */
/* Common
/* ----------------------------- */
.sub-inner {
  font-family: "NanumSquareR", sans-serif;
  line-height: 160%;
  max-width: 1280px;
  color: #2e2d2d;
  text-align: justify;
  word-break: break-all;
  padding: 100px 10px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sub-inner {
    padding: 100px 20px;
  }
}
.sub-inner p {
  margin-bottom: 10px;
}
.sub-inner p:last-child {
  margin-bottom:0;
}
.sub-inner > article, .sub-inner > section {
  /* 페이지 이동 */
}
.sub-inner > article > header, .sub-inner > section > header {
  font-family: "NotoSansRegular", sans-serif;
  text-align: center;
  margin-bottom: 60px;
}
.sub-inner > article > header > span, .sub-inner > section > header > span {
  font-size: 1.7rem;
  color: #e39381;
  display: inline-block;
}
.sub-inner > article > header > span::after, .sub-inner > section > header > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e39381;
  margin-bottom: 20px;
}
.sub-inner > article > header h1, .sub-inner > section > header h1 {
  font-size: 4.2rem;
  line-height: 160%;
}
.sub-inner > article > header h1 span, .sub-inner > section > header h1 span {
  font-family: "NotoSansLight", sans-serif;
}
.sub-inner > article > header .writer, .sub-inner > section > header .writer {
  font-family: "NotoSansRegular", sans-serif;
  color: #797979;
}
.sub-inner > article > div:last-child, .sub-inner > section > div:last-child {
  margin-bottom: 0;
}
.sub-inner > article .pagenation-wrap, .sub-inner > section .pagenation-wrap {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub-inner > article .pagenation-wrap > div, .sub-inner > section .pagenation-wrap > div {
  width: 86px;
  height: 35px;
  background: url("../../images/sub_pagenation_arrow.jpg") no-repeat center;
  position: relative;
}
.sub-inner > article .pagenation-wrap .next, .sub-inner > section .pagenation-wrap .next {
  border-right: 1px solid #d8d8d8;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sub-inner > article .img-wrap, .sub-inner > section .img-wrap {
  margin-bottom: 60px;
}
.sub-inner > article .img-wrap .caption, .sub-inner > section .img-wrap .caption {
  font-size: 1.4rem;
  text-align: right;
  line-height: 120%;
  word-break: keep-all;
  margin-top: 5px;
}
.sub-inner .foreign {
  font-family: "NotoSansLight", sans-serif !important;
}
.sub-inner figure figcaption {
  font-family: "NanumSquareR", sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  line-height: 150%;
  margin-top: 10px;
  display: block;
}
.sub-inner figure figcaption.text-right {
  text-align: right;
}

.col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .col-2 {
    display: block;
  }
  .col-3 {
    display: block;
  }    
}
.col-2 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.col-2 > div:first-child {
  margin-right: 60px;
}
.col-3 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.col-3 > div:first-child:after {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .col-2 > div:first-child {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .col-3> div:first-child:after {
    margin-right: 0px;
    margin-bottom: 30px;
  }    
}

.source {
  font-size: 1.4rem;
  margin-top: 15px;
}
.source a {
  color: #000;
}

/* 탭메뉴 */
.tab-menu {
  margin-bottom: 30px;
}
.tab-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-menu ul li {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.7rem;
  color: #000;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-right: none;
  padding: 25px 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.tab-menu ul li:last-child {
  border-right: 1px solid #e5e5e5;
}
.tab-menu ul li.active {
  color: #fff;
  border: 1px solid #e39381;
  background: #e39381;
}
.tab-menu ul li.active span {
  color: #fff;
}
.tab-menu ul li span {
  font-size: 1.5rem;
  border-radius: 15px;
  padding: 5px 10px;
  margin-right: 5px;
  display: inline-block;
}

/* 인용구 */
.quote {
  font-family: "NanumMyeongjoBold", sans-serif;
  font-size: 2.2rem;
  text-align: center;
  color: #333333;
  word-break: keep-all;
  border: 1px solid #d8d8d8;
  border-width: 1px 0;
  background: #f8f8f8;
  padding: 35px;
  margin-bottom: 50px;
  position: relative;
}
.quote::before {
  content: "";
  display: block;
  width: 34px;
  height: 12px;
  background: #fff url("../../images/vol_245/sub/sub0101_quote.png") no-repeat center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}

/* 주석 */
.description {
  font-size: 0.8em;
  border-top: 1px solid #000;
  padding-top: 10px;
}
.description dl {
  margin-bottom: 10px;
}
.description dl dt {
  font-family: "NotoSansMedium", sans-serif;
  margin-bottom: 5px;
}
.description dl dd {
  line-height: 150%;
}

/* 유튜브 영상 */
.youtube_movie {
  position: relative;
  margin: 40px 0;
  position: relative;
}
.youtube_movie:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 55.5555555556%;
}
.youtube_movie > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.youtube_movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.question {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.5rem;
  color: #000;
  line-height: 160%;
  word-break: break-all;
  margin-bottom: 10px;
}

.answer {
  margin-bottom: 60px;
}
.answer:last-child {
  margin-bottom: 0;
}
@media (max-width:767px) {
  .answer:last-child {
    margin-bottom: 60px;
  }
}

.china {
  font-family: "NotoSansRegular", sans-serif;
}

/* 마지막 로고 */
.final-hi {
  margin-left: 5px;
  display: inline-block;
}
.final-hi img {
  width: 35px;
  vertical-align: middle;
}

/* ----------------------------- */
/* PNUH 보감
/* ----------------------------- */
.pnuh-bogam .img-wrap {
  /*width: 40%;
  float: left;
  margin: 0 20px 10px 0 !important;*/
}

/* ----------------------------- */
/* PNUH ALUMNI
/* ----------------------------- */
.pnuh-allumni .pnuh-allumni-header {
  flex-direction: row-reverse;
}
.pnuh-allumni .pnuh-allumni-header > div:first-child {
  margin-right: 0;
}
.pnuh-allumni .pnuh-allumni-header > div:last-child {
  margin-right: 60px;
}
.pnuh-allumni .col-2 header {
  font-family: "NotoSansRegular", sans-serif;
}
@media (max-width: 767px) {
  .pnuh-allumni .pnuh-allumni-header > div:last-child {
    margin-right: 0;
  }
  .pnuh-allumni .col-2 header {
    text-align: center;
    margin-bottom: 50px;
  }
}
.pnuh-allumni .col-2 header > span {
  font-size: 1.7rem;
  color: #e39381;
  display: inline-block;
}
.pnuh-allumni .col-2 header > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e39381;
  margin-bottom: 20px;
}
.pnuh-allumni .col-2 header h1 {
  font-size: 4.2rem;
  line-height: 120%;
  margin-bottom: 30px;
}
.pnuh-allumni .col-2 header h1 span {
  font-family: "NotoSansLight", sans-serif;
}
@media (max-width: 1140px) {
  /*.pnuh-allumni .col-2 header h1 br {
    display: none;
  }*/
}
.pnuh-allumni .col-2 header .writer {
  font-family: "NotoSansRegular", sans-serif;
  color: #797979;
}
.pnuh-allumni .col-2 .question {
  width: 33%;
  font-family: "NanumMyeongjoBold", sans-serif;
  font-size: 2rem;
  color: #000;
  border-right: 1px solid #d1d1d1;
  padding-right: 40px;
  margin-right: 40px;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 767px) {
  .pnuh-allumni .col-2 .question {
    width: 100%;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.pnuh-allumni .col-2 .answer {
  width: 67%;
  padding-bottom: 50px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 767px) {
  .pnuh-allumni .col-2 .answer {
    width: 100%;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.pnuh-allumni .img-section {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .pnuh-allumni .img-section {
    display: block;
  }
}
.pnuh-allumni .img-section > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pnuh-allumni .img-section > div:first-child {
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .pnuh-allumni .img-section > div:first-child {
    margin-right: 0;
  }
}
.pnuh-allumni .img-section .quote {
  font-size: 3rem;
  word-break: keep-all;
  line-height: 130%;
  background: rgba(248, 248, 248, 0.8);
}
@media (max-width: 767px) {
  .pnuh-allumni .img-section .quote {
    font-size: 2rem;
  }
}

/* ----------------------------- */
/* 의료특집
/* ----------------------------- */
.special-medi .answer dl {
  margin-bottom: 20px;
}
.special-medi .answer dl:last-child {
  margin-bottom: 0;
}
.special-medi .answer dl dt {
  font-size: 2rem;
  color: #0075b9;
}
.special-medi .answer dl dt::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #0075b9;
  margin: -2px 10px 0 0;
}
.special-medi .answer dl dd {
  margin-left: 15px;
}
.special-medi .answer.yangsan dl dt {
  color: #b7812d;
}
.special-medi .answer.yangsan dl dt::before {
  background: #b7812d;
}
.special-medi .answer.hanbang dl dt {
  color: #7c9540;
}
.special-medi .answer.hanbang dl dt::before {
  background: #7c9540;
}
.special-medi .img-wrap {
  text-align: center;
  margin-top: 30px;
}
.special-medi .list-style li {
  margin-bottom: 20px;
}
.special-medi .list-style li span {
  width: 25px;
  height: 25px;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  border: 1px solid #000;
  margin-top: -2px;
  margin-right: 10px;
  display: inline-block;
}
.special-medi .source {
  font-size: 11px;
  text-align: right;
  margin-top: 0;
}
.special-medi aside {
  margin-top: 60px;
}
.special-medi aside header {
  margin-bottom: 30px;
}
.special-medi aside header h2 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  background: #7b813b;/*#1d9272;*/
  padding: 10px 20px;
}
.special-medi aside .content {
  padding: 10px;
  margin-bottom: 10px;
  background: #e7f3ef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.special-medi aside .content .icon-wrap {
  width: 50px;
  margin-right: 20px;
}
.special-medi aside .content dl {
  width: calc(100% - 70px);
}
.special-medi .professor-wrap {
  border-top: 1px solid #d1d1d1;
  padding-top: 50px;
  margin-top: 50px;
}
.special-medi .professor-wrap .title {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 10px;
}
.special-medi .professor-wrap .professor span {
  font-size: 2rem;
  color: #0075b9;
  display: block;
}
.special-medi .professor-wrap .professor span::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #0075b9;
  margin: -2px 10px 0 0;
}
.special-medi .professor-wrap .professor.yangsan span {
  color: #b7812d;
}
.special-medi .professor-wrap .professor.yangsan span::before {
  background: #b7812d;
}
.special-medi .professor-wrap .professor.hanbang span {
  color: #b18a5b;
}
.special-medi .professor-wrap .professor.hanbang span::before {
  background: #b18a5b;
}
.special-medi .professor-wrap .professor.dental span {
  color: #5b8ba0;
}
.special-medi .professor-wrap .professor.dental span::before {
  background: #5b8ba0;
}
.special-medi .professor-wrap .professor-image {
  margin-bottom: 20px;
}
.special-medi .professor-wrap dl dt {
  font-size: 2rem;
  color: #0075b9;
}
.special-medi .professor-wrap dl dt::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #0075b9;
  margin: -2px 10px 0 0;
}
.special-medi .professor-wrap dl dt.yangsan {
  color: #b7812d;
}
.special-medi .professor-wrap dl dt.yangsan::before {
  background: #b7812d;
}
.special-medi .professor-wrap dl dt.hanbang {
  color: #b18a5b;
}
.special-medi .professor-wrap dl dt.hanbang::before {
  background: #b18a5b;
}
.special-medi .professor-wrap dl dt.dental {
  color: #5b8ba0;
}
.special-medi .professor-wrap dl dt.dental::before {
  background: #5b8ba0;
}
.special-medi .professor-wrap .sch {
  margin-top: 20px;
}
.special-medi .professor-wrap .sch table caption {
  width: 0;
  height: 0;
  overflow: hidden;
  text-indent: -999999;
}
.special-medi .professor-wrap .sch table th, .special-medi .professor-wrap .sch table td {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.8rem;
  color: #000;
  vertical-align: middle;
  border: 1px solid #000;
  padding: 10px 20px;
}
.special-medi .professor-wrap .sch table th {
  font-weight: normal;
  border-width: 1px 1px 1px 0;
  background: #d6deef;
}
.special-medi .professor-wrap .sch table th:last-child {
  border-right: none;
}
.special-medi .professor-wrap .sch table td {
  text-align: center;
  border-width: 1px 1px 1px 0;
}
.special-medi .professor-wrap .sch table td:last-child {
  border-right: none;
}
.special-medi .professor-wrap .sch table td span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #03447f;
  display: inline-block;
}
.special-medi .professor-wrap .sch table tbody > tr:first-child th:first-child {
  background: #ccced2;
}
.special-medi .professor-wrap .sch table.yangsan-sch th {
  background: #ebddc7;
}
.special-medi .professor-wrap .sch table.yangsan-sch td span {
  background: #b7812d;
}
.special-medi .professor-wrap .sch table.hanbang-sch th {
  background: #e7dac9;
}
.special-medi .professor-wrap .sch table.hanbang-sch td span {
  background: #b18a5b;
}
.special-medi .professor-wrap .sch table.dental-sch th {
  background: #aae3f9;
}
.special-medi .professor-wrap .sch table.dental-sch td span {
  background: #5b8ba0;
}

/* 탭메뉴 */
.tab-menu.medical-special-tab-menu span.busan {
  background: #5ba3cc;
}
.tab-menu.medical-special-tab-menu span.yangsan {
  background: #a8d1c3;
}
.tab-menu.medical-special-tab-menu span.oriental-medi {
  background: #f2d4e6;
}
.tab-menu.medical-special-tab-menu span.dental {
  background: #fdd1ab;
}

/* 의료특집 1 */
aside.research {
  background: #ebe2da;
  padding: 20px;
}
aside.research header {
  text-align: center;
}
aside.research header h2 {
  background: #7d4c24;
  display: inline-block;
}
aside.research .q {
  color: #7d4c24;
}
aside.research table {
  width: 100%;
}
aside.research table thead tr {
  color: #7d4c24;
  border: 1px solid #7d4c24;
  border-width: 1px 0;
}
aside.research table thead tr th {
  padding: 10px;
}
aside.research table tbody tr {
  border-bottom: 1px solid #7d4c24;
}
aside.research table tbody tr td {
  text-align: center;
  padding: 10px;
}
aside.research table tbody tr td:first-child {
  text-align: left;
}
aside.research table tbody tr td span {
  width: 15px;
  height: 15px;
  border: 1px solid #7d4c24;
  margin: 0 auto;
  display: block;
}
aside.research .description {
  text-align: right;
  border-top: none;
}

/* 의료특집 2 */
aside.special-medi02 header {
  text-align: center;
}
aside.special-medi02 header h2 {
  background: #5a879e;
  display: inline-block;
}
aside.special-medi02 ul {
  margin-bottom: 20px;
}
aside.special-medi02 ul li {
  padding-left: 15px;
  position: relative;
}
aside.special-medi02 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
aside.special-medi02 figure {
  text-align: center;
}
aside.special-medi02 figure figcaption {
  font-family: "NotoSansRegular";
  font-size: 1.7rem;
  font-style: normal;
  margin-bottom: 20px;
}

/* 의료특집 2 - 245 */
aside.special-medi2 header {
  text-align: center;
}
aside.special-medi2 header h2 {
  background: #ae6770;
}
aside.special-medi2 ul {
  margin-bottom: 20px;
}
aside.special-medi2 ul li {
  padding-left: 15px;
  /*position: relative;*/
}
aside.special-medi2 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
aside.special-medi2 figure {
  text-align: center;
}
aside.special-medi2 figure figcaption {
  font-family: "NotoSansRegular";
  font-size: 1.7rem;
  font-style: normal;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  aside.special-medi2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: :wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }
  aside.special-medi2 ul li {
    width:calc(100% / 2 - (15px / 2));
    padding-left:0;
    margin-right:15px;
    margin-bottom: 20px;
  }
  aside.special-medi2 ul li:nth-child(2n) {
    margin-right:0;
  }
  aside.special-medi2 ul li:nth-last-child(-n+2) {
    margin-bottom:0;
  }
  aside.special-medi2 ul li p {
    line-height: 120%;
  }
}

/* 의료특집 3 - 245 */
aside.special-medi3 header {
  text-align: center;
}
aside.special-medi3 header h2 {
  background: #246155;
}
aside.special-medi3 ul {
  margin-bottom: 20px;
}
aside.special-medi3 ul li {
  padding-left: 15px;
  /*position: relative;*/
}
aside.special-medi3 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
aside.special-medi3 figure {
  text-align: center;
}
aside.special-medi3 figure figcaption {
  font-family: "NotoSansRegular";
  font-size: 1.7rem;
  font-style: normal;
  margin-bottom: 20px;
}

/* 의료특집 5 - 245 */
.aside.special-medi5 header {
  text-align: center;
}
.aside.special-medi5 header h2 {
  background: #2c3f73;
  margin: 2px;    
}
.aside.special-medi5 > div {
  margin-bottom:50px;
}
.aside.special-medi5 ul {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          justify-content: space-evenly;
}
.aside.special-medi5 ul li {
  padding-left: 15px;
  /*position: relative;*/
}
.aside.special-medi5 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
.aside.special-medi5 figure {
  text-align: center;
}
.aside.special-medi5 figure figcaption {
  font-family: "NotoSansRegular";
  font-size: 1.7rem;
  font-style: normal;
  margin-bottom: 20px;
}


/* 의료특집 6 - 245 */
aside.special-medi6 header {
  text-align: center;
}
aside.special-medi6 header h2 {
  background: #ae6770;
}
aside.special-medi6 ul {
  margin-bottom: 50px;
}
aside.special-medi6 ul li {
  padding-left: 15px;
  /*position: relative;*/
}
aside.special-medi6 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
aside.special-medi6 figure {
  text-align: center;
}
aside.special-medi6 figure figcaption {
  font-family: "NotoSansRegular";
  font-size: 1.7rem;
  font-style: normal;
  margin-bottom: 20px;
}
aside.special-medi6 ul.about {
  display:flex;
}
aside.special-medi6 ul.about li {
  text-align: center;
  padding-left:0;
  position:relative;
  flex:1;
}
aside.special-medi6 ul.about li::before {
  display:none;
}
aside.special-medi6 ul.about li:last-child {
  padding-right:0;
}
aside.special-medi6 ul.about li p {
  margin-left:-30px;
}
aside.special-medi6 ul.about li figure {
  padding-right:30px;
  display:block;
}
aside.special-medi6 ul.about li figure::after {
  content:'';
  width:10px;
  height:20px;
  background:url('../../images/vol_245/sub/sub010306_icon00.svg') no-repeat;
  display:block;
  position:absolute;
  top:50%;
  right:10px;
  transform: translateY(-50%);
}
aside.special-medi6 ul.about li:last-child figure::after {
  display:none;
}
aside.special-medi6 ul.about li figure img {
  width:100%;
}

@media (max-width:480px) {
  aside.special-medi6 ul.about {
    flex-wrap:wrap
  }
  aside.special-medi6 ul.about li {
    width:50%;
    flex:none;
    margin-bottom:30px;
  }
}

aside.special-medi6 ul.about02 {
  display:flex;
}
aside.special-medi6 ul.about02 li {
  text-align: center;
  padding-left:0;
  flex:1;
}
aside.special-medi6 ul.about02 li figure {
  display:flex;
  justify-content: center;
}
aside.special-medi6 ul.about02 li figure img {
  width:60%;
}
aside.special-medi6 ul.about02 li:last-child figure img {
  width:66%;
}
aside.special-medi6 ul.about02 li p {
  padding-left: 10%;
}
aside.special-medi6 ul.about02 li p span {
  font-family: 'NotoSansMedium', sans-serif;
  font-size:2rem;
  color:#88a286;
  display:block;
}
@media (max-width:480px) {
  aside.special-medi6 ul.about02 li figure img {
    width:80%;
  }
  aside.special-medi6 ul.about02 li:last-child figure img {
    width:86%;
  }
}

  /* 의료특집 3 */
.exercise {
  margin-top: 20px;
}
.exercise > div {
  font-family: "NanumMyeongjoBold", sans-serif;
  color: #ba925e;
  margin-bottom: 20px;
}
.exercise ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.exercise ol::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
}
.exercise ol li {
  margin-right: 80px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.exercise ol li::before {
  content: "";
  width: 40px;
  height: 40px;
  font-family: "NotoSansRegular", sans-serif;
  color: #fff;
  border-radius: 50%;
  background: #ba925e;
  margin-bottom: 20px;
  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;
}
.exercise ol li:nth-child(1)::before {
  content: "1";
}
.exercise ol li:nth-child(2)::before {
  content: "2";
}
.exercise ol li:nth-child(3)::before {
  content: "3";
}
.exercise ol li:last-child {
  margin-right: 0;
}
.exercise ol li .title {
  font-family: "NotoSansMedium", sans-serif;
  color: #ba925e;
}
.exercise ol li .method {
  font-family: "NotoSansMedium", sans-serif;
  color: #000;
  margin-top: 20px;
}
.exercise ol li .method-content span {
  font-size: 0.8em;
  display: block;
}
.exercise ol li figure {
  text-align: center;
  display: block;
}

aside.special-medi03 header {
  text-align: center;
}
aside.special-medi03 header h2 {
  background: #ba925e;
  display: inline-block;
}
aside.special-medi03 .title {
  color: #ba925e;
  margin-bottom: 20px;
}
aside.special-medi03 ol {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
aside.special-medi03 ol li {
  text-align: center;
  border: 2px solid #ba925e;
  border-radius: 10px;
  background: #fff;
  padding: 10px 20px;
  margin-right: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
aside.special-medi03 ol li:last-child {
  margin-right: 0;
}
aside.special-medi03 ol li span {
  width: 0;
  height: 0;
  content: "";
  z-index: 2;
  border-left: 7px solid #808284;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  position: absolute;
  top: 50%;
  right: -55px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
aside.special-medi03 ul li {
  margin-bottom: 10px;
}

/* 의료특집 4 */
aside.special-medi04 header h2 {
  background: #ae676a;
}
aside.special-medi04 ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
aside.special-medi04 ol li {
  position: relative;
  border-radius: 50%;
  background: #c3b19c;
  margin-right: 50px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
aside.special-medi04 ol li:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
aside.special-medi04 ol li > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
aside.special-medi04 ol li:nth-child(2) {
  background: #cda5a4;
}
aside.special-medi04 ol li:last-child {
  margin-right: 0;
}
aside.special-medi04 ol li p {
  width: 100%;
  height: 100%;
  color: #fff;
  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;
  position: absolute;
  top: 0;
  left: 0;
}
aside.special-medi04 > div > div,
aside.special-medi04 > div > p {
  margin-bottom: 50px;
}
aside.special-medi04 dl {
  margin-bottom: 20px;
}
aside.special-medi04 dl dt {
  font-family: "NotoSansMedium", sans-serif;
  color: #ae676a;
}

/* 의료특집 5 */
ol.stretching {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ol.stretching li {
  margin-right: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
ol.stretching li:last-child {
  margin-right: 0;
}
ol.stretching li:nth-child(2)::before {
  content: "2";
}
ol.stretching li:nth-child(3)::before {
  content: "3";
}
ol.stretching li::before {
  content: "1";
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50%;
  background: #000;
  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;
  position: absolute;
  top: 0;
  left: 0;
}

aside.special-medi05 header h2 {
  background: #ae6770;/*#728640;*/
}
aside.special-medi05 figure {
  text-align: center;
}
aside.special-medi05 ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
aside.special-medi05 ol > li {
  margin-right: 50px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
aside.special-medi05 ol > li:last-child {
  margin-right: 0;
}
aside.special-medi05 ol > li dl {
  height: 100%;
  border: 2px solid #728640;
  border-radius: 10px;
}
aside.special-medi05 ol > li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #fff;
  border-radius: 6px 6px 0 0;
  background: #728640;
  padding: 10px;
  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;
}
aside.special-medi05 ol > li dl dd {
  font-size: 1.2rem;
  line-height: 130%;
  padding: 10px;
}
aside.special-medi05 ol > li dl dd p {
  font-family: "NotoSansRegular", sans-serif;
  text-align: left;
  color: #728640;
  word-break: keep-all;
}
aside.special-medi05 ol > li dl dd ul {
  margin-left: 0;
}
aside.special-medi05 ol > li dl dd ul li {
  text-align: left;
  padding-left: 15px;
  margin-bottom: 5px;
  position: relative;
}
aside.special-medi05 ol > li dl dd ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
aside.special-medi05 ol > li dl dd ul li:last-child {
  margin-bottom: 0;
}
aside.special-medi05 ol > li dl dd ul li:nth-child(1)::before {
  content: "①";
}
aside.special-medi05 ol > li dl dd ul li:nth-child(2)::before {
  content: "②";
}
aside.special-medi05 ol > li dl dd ul li:nth-child(3)::before {
  content: "③";
}
aside.special-medi05 ol > li dl dd ul li:nth-child(4)::before {
  content: "④";
}
aside.special-medi05 ol > li span {
  width: 15px;
  height: 12px;
  background: url("/share/images/vol_245/sub/sub010305_arrow.svg") no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: 50%;
  right: -35px;
  -webkit-transform: rotate(-90deg) translateY(-50%);
          transform: rotate(-90deg) translateY(-50%);
}

/* PNUH 장비 - 245호 - sub0104 */
aside.special-medi0-6 header {
  text-align: center;
}
aside.special-medi0-6 header h2 {
  background: #708a14;
  display: inline-block;
}
aside.special-medi0-6 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
aside.special-medi0-6 ul li {
  width: calc(33% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
aside.special-medi0-6 ul li:nth-child(even) {
  margin-right: 0;
}
aside.special-medi0-6 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub0104_icon01.png");
}
aside.special-medi0-6 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub0104_icon02.png");
}
aside.special-medi0-6 ul li:nth-child(3)::before {
  background-image: url("../../images/vol_245/sub/sub0104_icon03.png");
}
aside.special-medi0-6 ul li::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #708a14;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: block;
}
aside.special-medi0-6 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #708a14;
}

/* 양산이슈 - 245호 - sub0104 */
aside.special-medi0-006 header {
  text-align: center;
}
aside.special-medi0-006 header h2 {
  background: #5f63a8;
  display: inline-block;
}
aside.special-medi0-006 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
aside.special-medi0-006 ul li {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
aside.special-medi0-006 ul li:nth-child(even) {
  margin-right: 0;
}
aside.special-medi0-006 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub0106_icon03.jpg");
}
aside.special-medi0-006 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub0106_icon04.jpg");
}
aside.special-medi0-006 ul li::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: block;
}
aside.special-medi0-006 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #5f63a8;
}

/* 양산이슈 - 245호 / sub0106 pc */
aside.special-medi0-06 header {
  text-align: center;
}
aside.special-medi0-06 header h2 {
  background: #3f4499;
  display: inline-block;
}
aside.special-medi0-06 ol {
  display:flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
aside.special-medi0-06 ol li {
  width: calc(100% / 3);
  margin-bottom:50px;
  display:flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
}
aside.special-medi0-06 ol li:nth-last-child(-n+3) {
  margin-bottom:0;
}

aside.special-medi0-06 ol li::after {
  content: "";
  width: 20px;
  height: 18px;
  background: url('/share/images/vol_245/sub/sub010307_arrow.svg') no-repeat;
  margin: 0 20px;
  display: block;
  transform: rotate(-90deg);
}
aside.special-medi0-06 ol li:last-child::after {
  display:none;
}

aside.special-medi0-06 ol li dl {
  width:calc(100% - 60px);
  height: 100%;
}

aside.special-medi0-06 ol li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #492979;
  margin-bottom:10px;
  display:flex;
  align-items: center;
  -webkit-align-items: center;
}
aside.special-medi0-06 ol li dl dt span {
  border:1px solid #492979;
  border-radius:5px;
  padding:5px 10px;
  margin-right:10px;
  display:block;
}


/* 의료특집 6 */
aside.special-medi06 header {
  text-align: center;
}
aside.special-medi06 header h2 {
  background: #897396;
  display: inline-block;
}
aside.special-medi06 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
aside.special-medi06 ul li {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
aside.special-medi06 ul li:nth-child(even) {
  margin-right: 0;
}
aside.special-medi06 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub010306_img02.svg");
}
aside.special-medi06 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub010306_img03.svg");
}
aside.special-medi06 ul li:nth-child(3)::before {
  background-image: url("../../images/vol_245/sub/sub010306_img04.svg");
}
aside.special-medi06 ul li:nth-child(4)::before {
  background-image: url("../../images/vol_245/sub/sub010306_img05.svg");
}
aside.special-medi06 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #cea596;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: block;
}
aside.special-medi06 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #897396;
}

/* 의료특집 4 - 245호 */
.aside.special-medi4 header {
  text-align: center;
}
.aside.special-medi4 header h2 {
  background: #c38c24;
  /*display: inline-block;*/
}
.aside.special-medi4 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aside.special-medi4 ul li {
  width: 100%;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.aside.special-medi4 ul li:nth-child(even) {
  margin-right: 0;
}
.aside.special-medi4 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub010304_icon01.png");
}
.aside.special-medi4 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub010304_icon02.png");
}
.aside.special-medi4 ul li:nth-child(3)::before {
  background-image: url("../../images/vol_245/sub/sub010304_icon03.png");
}
.aside.special-medi4 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;/*block;*/
}
.aside.special-medi4 ul li dl {
  width:calc(100% - 110px);
}
.aside.special-medi4 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #c38c24;
}

.aside.special-medi_04 header {
  text-align: center;
}
.aside.special-medi_04 header h2 {
  background: #c38c24;
  /*display: inline-block;*/
}
.aside.special-medi_04 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aside.special-medi_04 ul li {
  width: calc(100% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside.special-medi_04 ul li:nth-child(even) {
  margin-right: 0;
}
.aside.special-medi_04 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub010304_icon04.png");
}
.aside.special-medi_04 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub010304_icon05.png");
}
.aside.special-medi_04 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;/*block;*/
}
.aside.special-medi_04 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #c38c24;
}

/* 의료특집 5 - 245호 */
.aside.special-medi_5 header {
  text-align: center;
}
.aside.special-medi_5 header h2 {
  background: #2c3f73;
  /*display: inline-block;*/
}
.aside.special-medi_5 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aside.special-medi_5 ul li {
  width: calc(100% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside.special-medi_5 ul li:nth-child(even) {
  margin-right: 0;
}
.aside.special-medi_5 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub010305_icon04.png");
}
.aside.special-medi_5 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub010305_icon05.png");
}
.aside.special-medi_5 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;/*block;*/
}
.aside.special-medi_5 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #2c3f73;
}

/* 의료특집 7 - 245호 */
.aside.special-medi7 header {
  text-align: center;
}
.aside.special-medi7 header h2 {
  background: #492979;
  /*display: inline-block;*/
}
.aside.special-medi7 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aside.special-medi7 ul li {
  width: calc(100% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside.special-medi7 ul li:nth-child(even) {
  margin-right: 0;
}
.aside.special-medi7 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub010307_icon01.jpg");
}
.aside.special-medi7 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub010307_icon02.jpg");
}
.aside.special-medi7 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;/*block;*/
}
.aside.special-medi7 ul li dl {
  margin-bottom:15px;
}
.aside.special-medi7 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #492979;
}

/* 의료특집 7 - 245호 */
.aside.special-medi_7 header {
  text-align: center;
}
.aside.special-medi_7 header h2 {
  background: #492979;
  /*display: inline-block;*/
}
.aside.special-medi_7 ol li::after {
  content:"";
  width:20px;
  height:18px;
  background: url('/share/images/vol_245/sub/sub010307_arrow.svg') no-repeat;
  margin:10px auto;
  display:block;
}
.aside.special-medi_7 ol li:last-child::after {
  display:none;
}
.aside.special-medi_7 ol li dl {
  text-align: center;
}
.aside.special-medi_7 ol li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #492979;
  border:2px solid #492979;
  border-radius:5px;
  padding:5px 10px;
  margin-bottom:5px;
  display:inline-block;
}

/* 약 이야기 0208 - 245호 */
.aside.special-medi0208 header {
  text-align: center;
}
.aside.special-medi0208 header h2 {
 background-image: url("../../images/vol_245/sub/sub0208_icon00.png") ;
 background-repeat: no-repeat;    
  /*background: #1b2958;*/
  /*display: inline-block;*/
}
.aside.special-medi0208 ul {
  margin-bottom:50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.aside.special-medi0208 ul li {
  width: calc(100% / 2 - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aside.special-medi0208 ul li:nth-child(even) {
  margin-right: 0;
}
.aside.special-medi0208 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub0208_icon_1.png");
}
.aside.special-medi0208 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub0208_icon_2.png");
}
.aside.special-medi0208 ul li:nth-child(3)::before {
  background-image: url("../../images/vol_245/sub/sub0208_icon_3.png");
}
.aside.special-medi0208 ul li:nth-child(4)::before {
  background-image: url("../../images/vol_245/sub/sub0208_icon_4.png");
}
.aside.special-medi0208 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: inline-block;/*block;*/
}
.aside.sspecial-medi0208 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #1b2958;
}
/* 약 이야기_0208 - 245호 */
.aside.special-medi_0208 header {
  text-align: center;
}
.aside.special-medi_0208 header h2 {
  background-image: url("../../images/vol_245/sub/sub0208_icon00.png") ;
 background-repeat: no-repeat;    
  /*background: #1b2958;*/
  /*margin: 2px;    */
}
.aside.special-medi_0208 ul {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          justify-content: space-evenly;
}
.aside.special-medi_0208 ul li {
  padding-left: 15px;
  /*position: relative;*/
}
.aside.special-medi_0208 ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}
.aside.special-medi_0208 figure {
  text-align: center;
}
.aside.special-medi_0208 figure figcaption {
  font-family: "NotoSansRegular";
  font-size: 1.7rem;
  font-style: normal;
  margin-bottom: 20px;
}

/* 의료특집 7 */
aside.special-medi07 header {
  text-align: center;
}
aside.special-medi07 header h2 {
  background: #cb8793;
  display: inline-block;
}
aside.special-medi07 ul {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
aside.special-medi07 ul li {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
aside.special-medi07 ul li:nth-child(even) {
  margin-right: 0;
}
aside.special-medi07 ul li:nth-child(1)::before {
  background-image: url("../../images/vol_245/sub/sub010307_img04.svg");
}
aside.special-medi07 ul li:nth-child(2)::before {
  background-image: url("../../images/vol_245/sub/sub010307_img05.svg");
}
aside.special-medi07 ul li:nth-child(3)::before {
  background-image: url("../../images/vol_245/sub/sub010307_img06.svg");
}
aside.special-medi07 ul li::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e9d8d5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 10px;
  display: block;
}
aside.special-medi07 ul li dl {
  width: calc(100% - 110px);
}
aside.special-medi07 ul li dl dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #897396;
}

/* 의료특집3 - 245호 -pc */
.medicine header h1  { 
    color: #000;
    line-height: 160%;
    font-size: 2.5rem;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 0;
  }

/* 양산이슈 */
.sub0106-img01 {
  margin-bottom:30px !important;
}
.sub0106-img01 img {
  width:300px;
}
.yangsan-issue-245-img-wrap {
  margin-top:0 !important;
}


/* ----------------------------- */
/* 진료과탐방 sub020101/sub020102 - 245호
/* ----------------------------- */    
.department-wrap04 dl {
  margin-bottom: 50px;
}
.department-wrap04 dl:nth-child(1) dt::before {
  background-image: url("../../images/vol_245/sub/sub020101_icon01.jpg");
}
.department-wrap04 dl:nth-child(2) dt::before {
  background-image: url("../../images/vol_245/sub/sub020101_icon02.jpg");
}
.department-wrap04 dl:nth-child(3) dt::before {
  background-image: url("../../images/vol_245/sub/sub020101_icon03.jpg");
}
.department-wrap04 dl:nth-child(4) dt::before {
  background-image: url("../../images/vol_245/sub/sub020101_icon04.jpg");
}
.department-wrap04 dl:nth-child(5) dt::before {
  background-image: url("../../images/vol_245/sub/sub020101_icon05.jpg");
}
.department-wrap04 dl dt {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2rem;
  word-break: keep-all;
  padding: 0 0 0 60px;
  margin-bottom: 30px;
  position: relative;
}
.department-wrap04 dl dt::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 6px;
  left: 0;
}
.department-wrap04 dl dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.department-wrap04 dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #231f20;
}

.department-wrap05 dl {
  margin-bottom: 50px;
}
.department-wrap05 dl:nth-child(1) dt::before {
  background-image: url("../../images/vol_245/sub/sub020102_icon01.jpg");
}
.department-wrap05 dl:nth-child(2) dt::before {
  background-image: url("../../images/vol_245/sub/sub020102_icon02.jpg");
}
.department-wrap05 dl:nth-child(3) dt::before {
  background-image: url("../../images/vol_245/sub/sub020102_icon03.jpg");
}
.department-wrap05 dl:nth-child(4) dt::before {
  background-image: url("../../images/vol_245/sub/sub020102_icon04.jpg");
}
.department-wrap05 dl:nth-child(5) dt::before {
  background-image: url("../../images/vol_245/sub/sub020102_icon05.jpg");
}
.department-wrap05 dl:nth-child(6) dt::before {
  background-image: url("../../images/vol_245/sub/sub020102_icon06.jpg");
}
.department-wrap05 dl dt {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2rem;
  word-break: keep-all;
  padding: 10px 0 0 60px;
  margin-bottom: 30px;
  position: relative;
}
.department-wrap05 dl dt::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.department-wrap05 dl dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.department-wrap05 dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #231f20;
}

/* ----------------------------- */
/* 양산이슈  - 245호 / 0106
/* ----------------------------- */    
.department-wrap03 dl {
  margin-bottom: 50px;
}
.department-wrap03 dl:nth-child(1) dt::before {
  background-image: url("../../images/vol_245/sub/sub0106_icon03.jpg");
}
.department-wrap03 dl:nth-child(2) dt::before {
  background-image: url("../../images/vol_245/sub/sub0106_icon04.jpg");
}
.department-wrap03 dl dt {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2rem;
  word-break: keep-all;
  padding: 10px 0 0 60px;
  margin-bottom: 30px;
  position: relative;
}
.department-wrap03 dl dt::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.department-wrap03 dl dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.department-wrap03 dt {
  font-family: "NotoSansRegular", sans-serif;
  color: #333779;
}


/* ----------------------------- */
/* 부산이슈
/* ----------------------------- */
.issue-tab-menu {
  margin-bottom: 30px;
}

.issue-img-wrap.busan-issue {
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .issue-img-wrap.busan-issue {
    display: block;
  }
}
.issue-img-wrap.busan-issue figure {
  padding: 0 20px;
}
.issue-img-wrap.busan-issue > div:first-child {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .issue-img-wrap.busan-issue > div:first-child {
    display: block;
  }
}
.issue-img-wrap.busan-issue > div:first-child .quote {
  font-size: 2.5rem;
  line-height: 130%;
  background: rgba(248, 248, 248, 0.8);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .busan-issue > .col-2 > div:first-child {
    margin-bottom:10px;
  }
  .issue-img-wrap.busan-issue > div:first-child .quote {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.issue-img-wrap.busan-issue > div:first-child ul {
  margin-bottom: 30px;
}

.list-check > li {
  font-family: 'NanumMyeongjoBold';
  font-size: 2.2rem;
  line-height: 160%;
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
}
.list-check > li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../images/vol_245/sub/check_list.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 10px;
  left: 0;
}
@media (max-width:768px) {
  .list-check > li {
    font-size:2rem;
  }
  .list-check > li::before {
    top:6px;
  }
}

.list-check > li > ul > li {
  padding-left: 10px;
  position: relative;
}
.list-check > li > ul > li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 13px;
  left: 0;
}
.list-check > li > ul > li > ul {
  margin-left: 0;
}

/* ----------------------------- */
/* 양산이슈
/* ----------------------------- */
.yangsan-sns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.yangsan-sns > div {
  margin-right: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.yangsan-sns > div:last-child {
  margin-right: 0;
}
.yangsan-sns > div figure {
  border: 1px solid #d4d4d4;
}
.yangsan-sns > div figure:first-child {
  border: none;
  margin-bottom: 20px;
}
.yangsan-sns > div a {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: 10px;
  display: inline-block;
}
.yangsan-sns > div a.naver {
  background: #4cb148;
}
.yangsan-sns > div a.youtube {
  background: #ff0000;
}
.yangsan-sns > div a.instagram {
  background: #3e47ec;
  background: linear-gradient(310deg, #3e47ec 0%, #d434ad 33%, #eec263 66%, #f13767 100%);
}

/* ----------------------------- */
/* 진료과 탐방
/* ----------------------------- */
.department-tab-menu {
  margin-bottom: 30px;
}

.interviewer {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 1.4rem;
  display: block;
}

/* ----------------------------- */
/* 친절직원
/* ----------------------------- */
.friendly-staff-wrap {
  padding: 0;
}
.friendly-staff-wrap .quote {
  margin: 50px 0;
}
.friendly-staff-wrap .question span {
  font-family: "NotoSansLight", sans-serif;
}
.friendly-staff-wrap .question::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../../images/vol_242/sub/sub0202_img01.svg") no-repeat;
  background-size: 100%;
  margin-right: 10px;
}

/* ----------------------------- */
/* 서상균 칼럼
/* ----------------------------- */
.column span {
  font-size: 1.4rem;
}
.column span::before, .column span::after {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 2px;
  height: 12px;
  vertical-align: middle;
  background: #000;
  margin-top: -2px;
}
.column span::before {
  margin-right: 10px;
}
.column span::after {
  margin: -2px 10px 0 10px;
}

/* ----------------------------- */
/* 직원만남
/* ----------------------------- */
.staff-meeting .img-wrap {
  margin-bottom: 80px;
  position: relative;
}
.staff-meeting .img-wrap figcaption {
  width: 120px;
  height: 120px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #000;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 30px;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.staff-meeting .img-wrap figcaption span {
  width: 80%;
  font-size: 1.4rem;
}
.staff-meeting .img-wrap figcaption span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 10px auto;
}

/* ----------------------------- */
/* 만나고 싶었습니다.
/* ----------------------------- */
.see-you .interview-photo-wrap {
  margin: 50px 0;
}
.see-you .interviewer {
  color: #9583af;
}
.see-you .youtube-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  margin-top: 30px;
}
.see-you .youtube-wrap iframe {
  position: absolute;
}

/* ----------------------------- */
/* SMART PNUH
/* ----------------------------- */
.smartpnuh-h2 {
  width: 80%;
  font-family: "NotoSansRegular";
  font-size: 1.8rem;
  color: #658f63;
  border-top: 2px solid #658f63;
  padding-top: 20px;
  margin: 20px auto 0 auto;
}

.smart-pnuh {
  margin-top: 30px;
}
.smart-pnuh ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.smart-pnuh ul li {
  padding: 0 20px;
}
.smart-pnuh ul li figure {
  text-align: center;
}
.smart-pnuh ul li figure figcaption {
  font-size: 1.4rem;
}

/* ----------------------------- */
/* 우리가족 건강지킴이, 약 이야기
/* ----------------------------- */
.medicine .question {
  font-size: 2rem;
  padding-left: 35px;
  position: relative;
}
.medicine .question::before {
  content: "Q";
  width: 25px;
  height: 25px;
  font-size: 1.5rem;
  color: #fff;
  line-height: 100%;
  border-radius: 50%;
  background: #000;
  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;
  position: absolute;
  top: 5px;
  left: 0;
}
.medicine .answer {
  padding-left: 35px;
  position: relative;
}
.medicine .answer::before {
  content: "A";
  width: 25px;
  height: 25px;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 50%;
  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;
  position: absolute;
  top: 0;
  left: 0;
}
.medicine .answer dl {
  margin: 0;
}
.medicine .answer dl dt {
  font-family: "NanumSquareB", sans-serif;
  text-decoration: underline;
  border: none;
  padding: 0 0 0 30px;
}
.medicine .answer dl dt::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../../images/vol_243/sub/sub0207_icon01.jpg") no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.medicine .answer .point {
  font-family: "NanumSquareB", sans-serif;
  color: #ed2124;
  margin-bottom: 30px;
}
.medicine dl {
  margin: 0 0 30px 10px;
}
.medicine dl dt {
  font-family: "NanumSquareB", sans-serif;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px 10px 10px 20px;
  margin-bottom: 10px;
  position: relative;
}
.medicine dl dt::before {
  content: "";
  width: 32px;
  height: 29px;
  background: url("../../images/vol_243/sub/sub0207_icon02.png") no-repeat;
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
}


/* ----------------------------- */
/* 함께 걷는 삶
/* ----------------------------- */
.support-wrap {
  margin-top: 100px;
}
.support-wrap > div {
  margin-bottom: 50px;
}
.support-wrap > div:last-child {
  margin-bottom: 0;
}
.support-wrap .support {
  border: 1px solid #d1d1d1;
  padding: 20px;
}
.support-wrap .support .title {
  color: #769b5c;
  border: 1px solid #769b5c;
  border-radius: 5px;
  background: #fff;
  padding: 5px 20px;
  margin: -40px auto 30px auto;
  display: table;
}
.support-wrap .support .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.support-wrap .support .col-3 > dl {
  margin-right: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.support-wrap .support .col-3 > dl:last-child {
  margin-right: 0;
}
.support-wrap .support .col-3 > dl dt {
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  display: table;
}

/* ----------------------------- */
/* CULTURE&LIFE
/* ----------------------------- */
.culture .title {
  font-family: "NotoSansMedium", sans-serif;
}
.culture .quote {
  margin-top: 50px;
}
.culture .description {
  margin-top: 50px;
}
.culture-bottom {
  margin-bottom:60px !important;
}

/* ----------------------------- */
/* PNUH News
/* ----------------------------- */
.pnuh-news-content {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pnuh-news-content div {
  margin-right: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pnuh-news-content div img:nth-child(2) {
  margin-top: 20px;
}
.pnuh-news-content dl {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.pnuh-news-content dl dt {
  font-family: "NotoSansMedium", sans-serif;
  border-top: 2px solid #e39381;
  border-bottom: 1px dashed #e39381;
  padding: 10px;
}
.pnuh-news-content dl dd {
  padding: 10px;
}
.pnuh-news-content.yangsan dl dt {
  border-top: 2px solid #e39381;
  border-bottom: 1px dashed #e39381;
}
.pnuh-news-content.hanbang dl dt {
  border-top: 2px solid #d4889f;
  border-bottom: 1px dashed #d4889f;
}
.pnuh-news-content.dental dl dt {
  border-top: 2px solid #eda460;
  border-bottom: 1px dashed #eda460;
}

.border-img {
  border: 2px solid #d4d4d4;
}

/* ----------------------------- */
/* Responsive
/* -----------------------------
/* Layout Max Size : 1440px
/* Desktop Size	: 1024px < Screen <= 1280px
/* Tablet Size	: 1024px < Screen <= 768px
/* Mobile Size	: 767px < Screen
/* ----------------------------- */
@media (max-width: 1045px) {
  /* ----------------------------- */
  /* Common
  /* ----------------------------- */
  /* 탭메뉴 */
  .tab-menu ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tab-menu ul li {
    width: calc(100% / 3 - 1px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .tab-menu.medical-special-tab-menu ul li:nth-child(3n) {
    border-right: 1px solid #e5e5e5;
  }
  .tab-menu.medical-special-tab-menu ul li:nth-child(1), .tab-menu.medical-special-tab-menu ul li:nth-child(2), .tab-menu.medical-special-tab-menu ul li:nth-child(3), .tab-menu.medical-special-tab-menu ul li:nth-child(4) {
    border-bottom: none;
  }
}
@media (max-width: 1024px) {
  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  /* 의료특집 4 */
  aside.special-medi04 ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  aside.special-medi04 ol li {
    margin-right: 20px;
  }

  /* 의료특집 5 */
  aside.special-medi05 ol {
    display: block;
  }
  aside.special-medi05 ol li {
    margin-right: 0;
    margin-bottom: 50px;
  }
  aside.special-medi05 ol li span {
    top: auto;
    bottom: -35px;
    left: 50%;
    -webkit-transform: rotate(0deg) translateX(-50%);
            transform: rotate(0deg) translateX(-50%);
  }

  /* 의료특집 7 */
  .aside.special-medi7 ul {
    display:block;
    text-align: center;
  }


  /* ----------------------------- */
  /* PNUH News
  /* ----------------------------- */
  .pnuh-news-content {
    padding: 0 10px;
    display: block;
  }
  .pnuh-news-content div {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*  Tablet */
@media screen and (max-width: 960px) {
  /* ----------------------------- */
  /* 양산이슈
  /* ----------------------------- */
  .yangsan-sns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .yangsan-sns > div {
    width: calc(50% - 15px);
    margin-bottom: 30px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .yangsan-sns > div:nth-child(even) {
    margin-right: 0;
  }
  aside.special-medi0-06 ol li {
    width:50%;
  }
  aside.special-medi0-06 ol li:nth-last-child(-n+3) {
    margin-bottom: 50px;
  }
  aside.special-medi0-06 ol li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  /* ----------------------------- */
  /* SMART PNUH
  /* ----------------------------- */
  .smartpnuh-h2 {
    width: 100%;
  }

  /* ----------------------------- */
  /* 약 이야기, 우리가족건강지킴이
  /* ----------------------------- */
  .medicine {
    padding: 0 20px;
    display: block;
  }
  .medicine dl {
    padding: 20px 0;
  }
  .medicine dl:first-child {
    border-right: none;
    border-bottom: 1px solid #000;
  }

}
@media screen and (max-width: 910px) {
  /* ----------------------------- */
  /* 진료과 탐방
  /* ----------------------------- */
  .department-wrap dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .department-wrap dl dt {
    padding-left: 0;
  }
  .department-wrap dl dt::before {
    position: relative;
    top: auto;
    left: auto;
  }

 
}
@media screen and (max-width: 790px) {
  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  /* 의료특집 3 */
  .exercise ol {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .exercise ol::before {
    display: none;
  }
  .exercise ol li {
    width: calc(50% - 80px / 2);
    margin-bottom: 20px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .exercise ol li:nth-child(2) {
    margin-right: 0;
  }

  aside.special-medi03 ol li {
    margin-right: 50px;
  }
  aside.special-medi03 ol li span {
    right: -30px;
  }
    
 

  /* ----------------------------- */
  /* 진료과 탐방
  /* ----------------------------- */
  .department-wrap dl {
    display: block;
  }
  .department-wrap dl dt {
    margin-bottom: 20px;
  }
    

  /* ----------------------------- */
  /* 함께 걷는 삶
  /* ----------------------------- */
  .support-wrap .support .col-3 {
    display: block;
  }
  .support-wrap .support .col-3 > dl {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
/* Mobile */
@media screen and (max-width: 767px) {
  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  /* 의료특집 3 */
  .special-medi .medicine {
    padding:0;
  }

  /* 의료특집 4 */
  aside.special-medi04 ol {
    margin-bottom: 50px;
  }

  /* PNUH 장비 - 245호 - sub0104 */
aside.special-medi0-6 ul {
    display: block;
  }
aside.special-medi0-6 ul li {
    width: 100%;
    margin-right: 0;
  }
 /* 양산이슈 - 245호 / sub0106 모바일 */
aside.special-medi0-06 ul {
    display: block;
  }
aside.special-medi0-06 ul li {
    width: 100%;
    margin-right: 0;
  }

  /* 의료특집 6, 7 */
  aside.special-medi06 ul,
  aside.special-medi07 ul {
    display: block;
  }
  aside.special-medi06 ul li,
  aside.special-medi07 ul li {
    width: 100%;
    margin-right: 0;
  }
    
 /* 양산이슈 245호 */
  aside.special-medi0-006 ul {
    display: block;
  }
  aside.special-medi0-006 ul li {
    width: 100%;
    margin-right: 0;
  }
    
   
  /* 의료특집 4 - 245 */
  .aside.special-medi4 ul {
      display: block;
    }
  .aside.special-medi4 ul li {
      width: 100%;
      margin-right: 0;
    }
  /* 의료특집 04 - 245 */
  .aside.special-medi_04 ul {
      display: block;
    }
  .aside.special-medi_04 ul li {
      width: 100%;
      margin-right: 0;
    }
  /* 의료특집 5 - 245 */
  .aside.special-medi5 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: :wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: flex-start;
  }
  .aside.special-medi5 ul li {
    width:calc(100% / 2 - (15px / 2));
    padding-left:0;
    margin-right:15px;
    margin-bottom: 20px;
  }
  .aside.special-medi5 ul li:nth-child(2n) {
    margin-right:0;
  }
  .aside.special-medi5 ul li:nth-last-child(-n+2) {
    margin-bottom:0;
  }
  .aside.special-medi5 ul li p {
    line-height: 120%;
  }

  /* 약이야기 _0208 - 245 */
  .aside.special-medi0208:first-child {
    margin-bottom:50px;
  }
  .aside.special-medi0208 header h2 {
    padding-left:60px;
  }
  .aside.special-medi0208 ul li {
    text-align: center;
    flex-wrap:wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .aside.special-medi0208 ul li:nth-last-of-type(-n+2) {
    margin-bottom:0;
  }

}

@media screen and (max-width: 640px) {
  /* ----------------------------- */
  /* Common
  /* ----------------------------- */
  /* 탭메뉴 */
  .tab-menu ul li {
    width: calc(50% - 1px);
  }
  .tab-menu.medical-special-tab-menu ul li:nth-child(3n) {
    border-right: none;
  }
  .tab-menu.medical-special-tab-menu ul li:nth-child(even) {
    border-right: 1px solid #e5e5e5;
  }
  .tab-menu.medical-special-tab-menu ul li:nth-child(5) {
    border-bottom: none;
  }

  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  /* 의료특집 2 */
  .chart-wrap {
    display: block;
  }
  .chart-wrap > div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  /* 의료특집 3 */
  .exercise ol {
    display: block;
  }
  .exercise ol li {
    width: 100%;
    margin-right: 0;
  }

  /* ----------------------------- */
  /* 양산이슈
  /* ----------------------------- */
  aside.special-medi0-06 ol li {
    width:100%;
    margin-bottom:0;
    display:block;
  }
  aside.special-medi0-06 ol li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
  aside.special-medi0-06 ol li::after {
    margin:20px auto;
    transform: rotate(0deg);
  }
  aside.special-medi0-06 ol li dl {
    width:100%;
    height:auto;
  }
}
@media screen and (max-width: 480px) {
  /* ----------------------------- */
  /* Common
  /* ----------------------------- */
  .sub-inner {
    padding: 50px 10px;
  }
  .sub-inner > article > header h1, .sub-inner > section > header h1 {
    font-size: 2.5rem;
  }
  .sub-inner > article > header h1 br, .sub-inner > section > header h1 br {
    display: none;
  }
  .sub-inner > article .img-wrap, .sub-inner > section .img-wrap {
    margin-bottom: 50px;
  }
  .sub-inner > article .img-wrap .caption, .sub-inner > section .img-wrap .caption {
    text-align: center;
  }
  .sub-inner > article .pagenation-wrap, .sub-inner > section .pagenation-wrap {
    margin: 30px 0;
  }

  .quote {
    font-size: 1.6rem;
    padding: 30px 10px;
    margin-bottom: 40px;
  }

  /* 탭메뉴 */
  .tab-menu ul li {
    padding: 15px 5px;
  }

  .question {
    font-size: 2rem;
  }

  .pnuh-allumni .col-2 header h1 {
    font-size:2.5rem;
  }

  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .special-medi .professor-wrap .sch table {
    width: 100%;
  }
  .special-medi .professor-wrap .sch table th, .special-medi .professor-wrap .sch table td {
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
  }
  .special-medi .professor-wrap .sch table th span, .special-medi .professor-wrap .sch table td span {
    width: 10px;
    height: 10px;
  }

  /* 의료특집 3 */
  aside.special-medi03 ol {
    display: block;
  }
  aside.special-medi03 ol li {
    margin-right: 0;
    margin-bottom: 50px;
  }
  aside.special-medi03 ol li:last-child {
    margin-bottom: 0;
  }
  aside.special-medi03 ol li span {
    width: 0;
    height: 0;
    content: "";
    z-index: 2;
    border-top: 7px solid #808284;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    top: auto;
    right: auto;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  /* 의료특집 4 */
  aside.special-medi04 ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  aside.special-medi04 ol li {
    margin-right: 10px;
  }

  /* 의료특집 5 */
  ol.stretching {
    display: block;
  }
  ol.stretching li {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 30px;
    margin-right: 0;
    margin-bottom: 30px;
  }
  ol.stretching li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  ol.stretching li figure {
    text-align: center;
  }

  aside.special-medi05 ol li dl dd {
    font-size: 1.8rem;
  }
  aside.special-medi05 ol li dl dd ul li {
    padding-left: 20px;
  }

  /* ----------------------------- */
  /* 양산이슈
  /* ----------------------------- */
  .yangsan-sns {
    display: block;
  }
  .yangsan-sns > div {
    width: 100%;
    margin-right: 0;
  }

  /* ----------------------------- */
  /* 직원만남
  /* ----------------------------- */
  .staff-meeting .img-wrap figcaption {
    width: auto;
    height: auto;
    color: #000;
    border-radius: 0;
    margin-top: 10px;
    background: none;
    display: block;
    position: relative;
    right: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .staff-meeting .img-wrap figcaption span {
    width: auto;
  }
  .staff-meeting .img-wrap figcaption span::after {
    vertical-align: middle;
    content: "";
    margin-top: -2px;
    display: inline-block;
    width: 1px;
    height: 15px;
    background: #000;
    margin: -5px 10px 0 10px;
  }

  /* ----------------------------- */
  /* cultur & life
  /* ----------------------------- */
  .culture-bottom {
    margin-bottom:50px !important;
  }
}
