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

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

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

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

  footer select {
    width: calc(50% - 10px);
    margin: 0;
  }
  footer select:first-child {
    margin-right: 10px;
  }
}
/* ================================================================== */
/* Name	: vol_253 sub.css
/* Script : Font, Layout CSS
/* Author : Design Geulggol
/* Date	: 2024-01-03
/* ================================================================== */
/* ----------------------------- */
/* Common
/* ----------------------------- */
.sub-inner {
  font-family: "NotoSansLight", 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: 20px;
}
.sub-inner p span {
  font-family: "NotoSansMedium", sans-serif;
  color: #000;
}
.sub-inner .chinese {
  font-family: "NotoSansRegular", sans-serif;
}
.sub-inner > article, .sub-inner > section {
  /* 페이지 이동 */
}
.sub-inner > article > header, .sub-inner > section > header {
  font-family: "NotoSansMedium", sans-serif;
  text-align: center;
  margin-bottom: 60px;
}
.sub-inner > article > header > span, .sub-inner > section > header > span {
  font-size: 1.7rem;
  color: #319483;
  display: inline-block;
}
.sub-inner > article > header > span::after, .sub-inner > section > header > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #319483;
  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;
}
@media (max-width: 767px) {
  .sub-inner > article > header h1, .sub-inner > section > header h1 {
    font-size: 3.6rem;
    line-height: 140%;
  }
}
.sub-inner > article > header h1.sub03, .sub-inner > section > header h1.sub03 {
  line-height: 140% !important;
  margin-bottom: 10px;
}
.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 > article .img-wrap2, .sub-inner > section .img-wrap2 {
  margin-bottom: 40px;
}
.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;
  line-height: 140%;
  text-align: center;
  margin-top: 10px;
  display: block;
}

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

.col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .col-3 {
    display: block;
  }
}
.col-3 > * {
  width: calc((100% / 3) - (10px * 2 / 3));
  margin-right: 10px;
  margin-bottom: 10px;
}
.col-3 > *:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .col-3 > * {
    width: 100%;
    margin-right: 0;
  }
}

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

/* img-wrap-col2 */
.img-wrap-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .img-wrap-col2 {
    display: block;
  }
}
.img-wrap-col2 figure:first-child {
  margin-right: 1em;
}
@media (max-width: 767px) {
  .img-wrap-col2 figure:first-child {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}

/* color */
.c-orange {
  color: #d85218;
}

/* 본문 medium */
.p-bold {
  font-family: "NotoSansMedium", sans-serif;
}

/* 탭메뉴 */
.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;
}
@media (max-width: 767px) {
  .tab-menu ul li {
    padding: 15px 5px;
  }
}
.tab-menu ul li:last-child {
  border-right: 1px solid #e5e5e5;
}
.tab-menu ul li.active {
  color: #fff;
  border: 1px solid #319483;
  background: #319483;
}
.tab-menu ul li.active span {
  color: #000;
}
.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: #319483;
  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: url("../../images/vol_251/sub/sub0101_quote.png") no-repeat center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.quote_matop {
  margin-top: 80px;
}

.quote_matop2 {
  margin-top: 60px;
}

.quote_matop3 {
  margin-top: 30px;
}

/* 주석 */
.description {
  margin-top: 3em;
  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%;
}

.description2 {
  font-size: 0.7em;
  padding-top: 15px;
  display: block;
  line-height: 2.2rem;
}

/* 유튜브 영상 */
.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;
}
@media (max-width: 767px) {
  .question {
    font-size: 2.2rem;
  }
}

.answer {
  margin-bottom: 60px;
}
.answer:last-child {
  margin-bottom: 0;
}

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

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

/* img-txt-block */
.img-txt-block {
  margin-bottom: 50px;
}
.img-txt-block .point {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "NotoSansMedium", sans-serif;
}
.img-txt-block .point-pencile {
  display: inline-block;
  background-color: #e9e9e9;
}

/* ----------------------------- */
/* PNUH 보감
/* ----------------------------- */
.pnuh-bogam h1 span {
  font-family: "NotoSansbold", sans-serif !important;
  color: #319483;
}
.pnuh-bogam > div:first-child {
  background: url("../../images/vol_253/sub/sub0101_img02.jpg") no-repeat bottom left;
  background-size: 100%;
}
@media (max-width: 480px) {
  .pnuh-bogam > div:first-child {
    font-size: 1.6rem;
    background-size: cover;
    background-position: right bottom;
  }
}
.pnuh-bogam .img-wrap {
  text-align: right;
  display: contents;
}
.pnuh-bogam .new-year-header br {
  display: block !important;
}
.pnuh-bogam .new-year {
  font-family: "NanumMyeongjoBold", sans-serif;
  font-size: 1.2em;
  line-height: 190%;
  text-align: center;
  padding: 2rem;
  padding-top: 7rem;
  margin-top: 3rem;
}
.pnuh-bogam .new-year .writer {
  font-size: 0.8em;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .pnuh-bogam {
    display: block;
  }
  .pnuh-bogam > div:first-child {
    padding-bottom: 10em;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

.numbersharp {
  position: relative;
  margin-top: 40px;
}

.numbersharp1 {
  padding-left: 65px;
  position: relative;
  margin-top: 40px;
}
.numbersharp1::before {
  content: "#1";
  width: 50px;
  height: 50px;
  font-size: 2rem;
  -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;
}

.numbersharp2 {
  padding-left: 65px;
  position: relative;
  margin-top: 40px;
}
.numbersharp2::before {
  content: "#2";
  width: 50px;
  height: 50px;
  font-size: 2rem;
  -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;
}

.pnuh-list-wrap {
  margin-top: 1em;
}
.pnuh-list-wrap h2 {
  padding: 0.5em;
  color: #fff;
  background-color: #396cb5;
  text-align: center;
  font-family: "NotoSansMedium", sans-serif;
}

.pnuh-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1.5em;
  background-color: #d2dbe7;
}
@media (max-width: 767px) {
  .pnuh-list {
    padding: 0.8em;
  }
}
.pnuh-list .cont {
  width: 25%;
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
@media (max-width: 767px) {
  .pnuh-list .cont {
    width: 50%;
    padding: 0.3em;
  }
  .pnuh-list .cont:last-child {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .pnuh-list .cont {
    width: 100%;
    padding: 0.3em;
  }
}
.pnuh-list .cont > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1em;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.pnuh-list .cont p {
  margin-bottom: 0.5em;
}
.pnuh-list .cont p span {
  display: block;
  font-family: "NotoSansLight", sans-serif;
}
@media (max-width: 1280px) {
  .pnuh-list .cont p span {
    display: inline-block;
  }
}
.pnuh-list .cont h3 {
  color: #f36e34;
  font-family: "NotoSansMedium", sans-serif;
}

/* ----------------------------- */
/* PNUH ALUMNI
/* ----------------------------- */
.pnuh-allumni .col-2 header {
  font-family: "NotoSansRegular", sans-serif;
}
@media (max-width: 767px) {
  .pnuh-allumni .col-2 header {
    margin-bottom: 50px;
  }
}
.pnuh-allumni .col-2 header > span {
  font-size: 1.7rem;
  color: #319483;
  display: inline-block;
}
.pnuh-allumni .col-2 header > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #319483;
  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 .question2 {
  width: 100%;
  font-family: "NanumMyeongjoBold", sans-serif;
  font-size: 2rem;
  color: #000;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 767px) {
  .pnuh-allumni .col-2 .question2 {
    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 .col-2 .answer2 {
  width: 100%;
  padding-bottom: 50px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media (max-width: 767px) {
  .pnuh-allumni .col-2 .answer2 {
    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-bottom: 20px;
}
.special-medi .list-style li {
  margin-bottom: 15px;
}
.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 .list-style li i {
  font-weight: bold;
}
.special-medi .list-style .tit-li {
  margin-bottom: 10px !important;
}
.special-medi .list-style-50 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.special-medi .list-style-50 li {
  width: 50%;
}
.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: #B59369;
  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: #339c8a;
}
.special-medi .professor-wrap .professor.yangsan span::before {
  background: #339c8a;
}
.special-medi .professor-wrap .professor.hanbang span {
  color: #689264;
}
.special-medi .professor-wrap .professor.hanbang span::before {
  background: #689264;
}
.special-medi .professor-wrap .professor.dental span {
  color: #b18a5b;
}
.special-medi .professor-wrap .professor.dental span::before {
  background: #b18a5b;
}
.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: #339c8a;
}
.special-medi .professor-wrap dl dt.yangsan::before {
  background: #339c8a;
}
.special-medi .professor-wrap dl dt.hanbang {
  color: #689264;
}
.special-medi .professor-wrap dl dt.hanbang::before {
  background: #689264;
}
.special-medi .professor-wrap dl dt.dental {
  color: #b18a5b;
}
.special-medi .professor-wrap dl dt.dental::before {
  background: #b18a5b;
}
.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.2rem;
  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;
  text-align: center;
}
.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: #a8d1c3;
}
.special-medi .professor-wrap .sch table.yangsan-sch td span {
  background: #339c8a;
}
.special-medi .professor-wrap .sch table.hanbang-sch th {
  background: #f2d4e6;
}
.special-medi .professor-wrap .sch table.hanbang-sch td span {
  background: #bf2481;
}
.special-medi .professor-wrap .sch table.dental-sch th {
  background: #fdd1ab;
}
.special-medi .professor-wrap .sch table.dental-sch td span {
  background: #fbb77d;
}

.faint {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

/* 탭메뉴 */
.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;
}

/* 의료특집 _common */
.special-medi aside.special-medi-common {
  text-align: center;
}
.special-medi aside.special-medi-common ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.special-medi aside.special-medi-common ul li {
  padding: 0 10px;
  width: 100%;
  text-align: left;
}
.special-medi aside.special-medi-common ul li figure {
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
}
.special-medi aside.special-medi-common ul li h3 {
  font-family: "NotoSansMedium", sans-serif;
}
.special-medi aside.special-medi-common ul.list-25 li {
  width: 23%;
  margin: 0 1% 10px;
  padding: 0;
}
.special-medi aside.special-medi-common ul.list-50 li {
  width: 48%;
  margin: 0 1% 10px;
  padding: 0;
}
.special-medi aside.special-medi-common ul.list-50 li p {
  text-align: center;
}
.special-medi aside.special-medi-common ul.list-50 li p strong {
  font-family: "NotoSansMedium", sans-serif;
}
.special-medi aside.special-medi-common ul.list-30 li {
  width: 31.3%;
  margin: 0 1% 10px;
}
.special-medi aside.special-medi-common ul.list-100 li {
  width: 100%;
  margin-bottom: 10px;
}
.special-medi aside.special-medi-common ul.porcess li {
  background-color: #e9e9e9;
  padding: 0;
  border-radius: 10px;
}
.special-medi aside.special-medi-common ul.porcess li h3 {
  border-radius: 10px 10px 0 0;
  border: 2px solid #68bb9b;
  color: #68bb9b;
  background-color: #fff;
}
.special-medi aside.special-medi-common ul.porcess li p {
  padding: 10px;
}
.special-medi aside.special-medi-common ul.color4 li h3 {
  border-color: #86ba72;
  color: #86ba72;
}
.special-medi aside.special-medi-common ul.list-check-num2 li {
  padding-left: 30px;
}

/* 의료특집_list */
.li-box-cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.5em;
}
@media (max-width: 767px) {
  .li-box-cont-wrap {
    margin: 0;
  }
}
.li-box-cont-wrap .cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  padding: 0.5em;
}
@media (max-width: 767px) {
  .li-box-cont-wrap .cont-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 0.5em;
  }
}
.li-box-cont-wrap .cont {
  width: 100%;
  border: 1px solid #ccc;
}
.li-box-cont-wrap .cont h3 {
  font-family: "NotoSansMedium", sans-serif;
  padding: 0.6em;
  border-bottom: 1px solid #ccc;
  background-color: #f8f8f8;
}
.li-box-cont-wrap .cont p {
  padding: 1em 1em 0;
}

.li-box-cont-wrap2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.li-box-cont-wrap2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.33% - 0.5em);
  padding: 0.5em;
  margin: 0 0.25em 0.5em;
  border: 2px solid #ccc;
  border-radius: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 130%;
  background-color: #f8f8f8;
}

/* 의료특집_table */
.aside-tbl {
  width: 100%;
  border-top: 2px solid #000;
  text-align: center;
}
.aside-tbl thead th {
  background-color: #feede2;
}
.aside-tbl tbody th {
  background-color: #f8f8f8;
}
.aside-tbl th, .aside-tbl td {
  vertical-align: middle;
  padding: 0.5em 1em;
}
.aside-tbl tr {
  border-bottom: 1px solid #ccc;
}

/* 의료특집 1 */
aside.research header {
  text-align: center;
}
aside.research header h2 {
  background: #f36e34;
}
aside.research .q {
  color: #f36e34;
}
aside.research table {
  width: 100%;
}
aside.research table thead tr {
  color: #f36e34;
  border: 1px solid #f36e34;
  border-width: 1px 0;
}
aside.research table thead tr th {
  padding: 10px;
}
aside.research table tbody tr {
  border-bottom: 1px solid #f36e34;
}
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 #f36e34;
  margin: 0 auto;
  display: block;
}
aside.research .description {
  text-align: right;
  border-top: none;
}

/* 의료특집 1 */
aside.special-medi01 h3 {
  color: #f36e34;
}

/* 의료특집 2 */
aside.special-medi02 header {
  text-align: center;
}
aside.special-medi02 header h2 {
  background: #2BAF4C;
}
aside.special-medi02 .list-check-num2 li::before {
  background-color: #21b6c4;
}

/* 의료특집 3 */
aside.special-medi03 header {
  text-align: center;
}
aside.special-medi03 header h2 {
  background: #E58425;
}

.medi-tbl {
  width: 100%;
}
.medi-tbl th,
.medi-tbl td {
  padding: 0.6em;
  border: 1px solid #ccc;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .medi-tbl th,
.medi-tbl td {
    padding: 0.5em;
  }
}
.medi-tbl th {
  text-align: center;
  font-weight: normal;
  font-family: "NotoSansMedium", sans-serif;
}
.medi-tbl thead th {
  background-color: #f284a0;
  color: #fff;
  border-color: #e06786;
}
.medi-tbl tbody th {
  background-color: #f8f8f8;
}

/* 의료특집 4 */
.hbv-box .cont h4 {
  background-color: #c43b36;
  color: #fff;
  text-align: center;
  padding: 0.6em;
}
.hbv-box .cont > div {
  width: 100%;
  border: 1px solid #ccc;
  border-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1280px) {
  .hbv-box .cont > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hbv-box .cont:first-child {
  margin-bottom: 10px;
}

aside.special-medi04 header h2 {
  background: #4B88C7;
}
aside.special-medi04 h3 {
  color: #4B88C7;
  text-align: center;
  margin-bottom: 1em;
}

/* 의료특집 5 */
.dna-box {
  border: 1px solid #ccc;
}
.dna-box > div {
  border-bottom: 1px solid #ccc;
}
.dna-box > div:last-child {
  border-bottom: 0;
}

aside.special-medi05 header h2 {
  background: #4C5789;
}

/* 의료특집 6 */
aside.special-medi06 header {
  text-align: center;
}
aside.special-medi06 header h2 {
  background: #689264;
}
aside.special-medi06 ul span {
  color: #689264;
}

/* 의료특집 7 */
aside.special-medi07 header {
  text-align: center;
}
aside.special-medi07 header h2 {
  background: #bb6b95;
}

/* color */
.ti-c01 {
  color: #f36e34 !important;
}

.ti-c02 {
  color: #21b6c4 !important;
}

.ti-c04 {
  color: #c43b36 !important;
}

.ti-c05 {
  color: #76a2d7 !important;
}

.ti-c07 {
  color: #149fda !important;
}

/* bold */
.h3-sty {
  font-size: 1.125em;
  margin-bottom: 10px;
  font-family: "NotoSansMedium", sans-serif;
}

/* img-col */
.img-wrap-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .img-wrap-col {
    display: block;
  }
}
@media (max-width: 767px) {
  .img-wrap-col figure {
    margin-bottom: 1em;
  }
}

/* li-list01 */
.box-div2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.box-div2 > div {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 50%;
  margin: 0 10px;
  padding: 1em;
  border: 2px solid #21b6c4;
  border-radius: 20px;
  text-align: center;
}

.li-list01 {
  padding: 1em;
}
.li-list01 > li {
  position: relative;
  padding-left: 15px;
}
.li-list01 > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #000;
}

.li-list02 > li {
  position: relative;
  padding-left: 10px;
}
.li-list02 > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 2px;
  background-color: #ccc;
}

.list-check-num {
  padding: 30px 25px 20px;
  margin-bottom: 20px;
  counter-reset: number;
  background-color: #fbfbfb;
  border: 1px solid #e9e9e9;
}
.list-check-num > li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}
.list-check-num > li::before {
  content: "";
  display: block;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 24px;
  background-color: #000;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}
.list-check-num > li span {
  display: inline-block;
  position: relative;
}
.list-check-num > li span.check {
  width: 20px;
  height: 25px;
  background: url("../../images/vol_249/sub/check02.svg") no-repeat;
}

.list-check-num2 {
  counter-reset: number;
  margin-left: 1em;
}
.list-check-num2 li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}
.list-check-num2 li::before {
  content: "";
  display: block;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 4px;
  left: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background-color: #396cb5;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}

.list-check-img li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.list-check-img li::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 23px;
  height: 20px;
  background: url("../../images/vol_252/sub/check.svg") no-repeat center/100% 102%;
}

.special-medi06 .list-check-num2 li::before {
  background-color: #bb775d;
}

/* ----------------------------- */
/* 부산이슈
/* ----------------------------- */
.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) {
  .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;
}

.slogun {
  font-family: "NanumMyeongjoBold", sans-serif;
  font-size: 3rem;
  text-align: center;
  line-height: 160%;
  word-break: keep-all;
  margin: 5rem 0;
}
@media (max-width: 1280px) {
  .slogun {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .slogun {
    font-size: 2.2rem;
  }
}
.slogun::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("../../images/vol_251/sub/slogun_icon.svg") no-repeat;
  background-size: 100%;
  margin-right: 10px;
}
@media (max-width: 1280px) {
  .slogun::before {
    width: 30px;
    height: 30px;
    margin-right: 4px;
  }
}

.slogun-wrap {
  margin: 5rem 0;
}
.slogun-wrap .slogun {
  margin: 0 0 0.2em;
}

.list-check > li {
  padding-left: 30px !important;
  margin-bottom: 15px;
  position: relative;
}
.list-check > li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../images/vol_253/sub/check_list.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 6px;
  left: 0;
}
.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;
}

.an-span {
  margin-left: 30px;
  display: block;
}

.an-span-02 {
  margin: 10px 20px 30px;
  display: block;
  background: #e1e5f4;
  padding: 5px 10px;
  text-align: center;
  border-radius: 30px;
}

.list-num-ti {
  padding: 1em;
  border: 2px solid #b79048;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.2rem;
  color: #000;
  line-height: 160%;
  word-break: break-all;
}
@media (max-width: 768px) {
  .list-num-ti {
    font-size: 2rem;
  }
}

.list-num-ti2 {
  padding: 10px 15px;
  background-color: #95c4da;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 160%;
  word-break: break-all;
  text-align: center;
}
@media (max-width: 768px) {
  .list-num-ti2 {
    font-size: 2rem;
  }
}

.list-box-ti {
  background-color: #eaf3f8;
  border: 2px solid #95c4da;
  padding: 30px 25px 15px;
  margin-bottom: 20px;
}

.list-button {
  background-color: #eaf3f8;
  border: 2px solid #95c4da;
  padding: 20px 20px 15px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

/* 자가진단 */
.self-test {
  border: 2px solid #bb9676;
  border-radius: 3rem 3rem 0 0;
  padding: 2rem;
  margin: 3rem 0;
}
.self-test header {
  text-align: center;
  padding: 3rem 2rem 0 2rem;
}
.self-test header h2 {
  font-weight: bold;
}
.self-test header::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  border-top: 3px solid #000;
  margin: 3rem auto;
}
.self-test .self-test-inner h3 {
  font-weight: 700;
  background: url("../../images/vol_253/sub/self_test_bg.png") repeat-x bottom left;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.self-test .self-test-inner h3 img {
  margin-right: 1rem;
}
.self-test .self-test-inner .list-check-wrap .question {
  font-family: "NotoSansLight", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.self-test .self-test-inner .list-check-wrap .question .num {
  width: 50px;
  height: 50px;
  font-family: "NotoSansMedium", sans-serif;
  color: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  background: #bb9676;
  margin-right: 15px;
  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;
}
.self-test .self-test-inner .list-check-wrap .question > div:last-child {
  width: calc(100% - 50px - 15px);
}
.self-test .self-test-inner .list-check-wrap .question radiogroup {
  display: block;
}
.self-test .self-test-inner .list-check-wrap .question radiogroup input {
  margin-right: 5px;
}
.self-test .self-test-inner .list-check-wrap .question radiogroup label {
  margin-right: 20px;
}
.self-test .self-test-inner .list-check-wrap .question radiogroup label:last-child {
  margin-right: 0;
}
@media (max-width: 480px) {
  .self-test .self-test-inner .list-check-wrap .question {
    display: block;
  }
  .self-test .self-test-inner .list-check-wrap .question > div:last-child {
    width: 100%;
  }
}
.self-test .self-test-inner .result dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.self-test .self-test-inner .result dl dt {
  width: 150px;
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.2em;
  color: #bb9676;
  text-align: center;
  margin-right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.self-test .self-test-inner .result dl dt img {
  margin-right: 2rem;
}
.self-test .self-test-inner .result dl dd {
  width: calc(100% - 150px - 2rem);
}
.self-test .self-test-inner .result dl dd span {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.2em;
}
@media (max-width: 620px) {
  .self-test .self-test-inner .result dl {
    display: block;
  }
  .self-test .self-test-inner .result dl dt {
    margin-bottom: 1rem;
  }
  .self-test .self-test-inner .result dl dd {
    width: 100%;
  }
}

/* ----------------------------- */
/* 양산이슈
/* ----------------------------- */
.yangsan-issue::after {
  content: "";
  display: block;
  clear: both;
}
.yangsan-issue .img-wrap {
  width: 30%;
  margin-right: 30px;
  margin-bottom: 30px;
  float: left;
}
.yangsan-issue .img-wrap img {
  width: 100%;
}
@media (max-width: 1023px) {
  .yangsan-issue .img-wrap {
    width: 40%;
  }
}
@media (max-width: 500px) {
  .yangsan-issue .img-wrap {
    width: 100%;
    text-align: center;
    margin-right: 0;
    float: none;
  }
  .yangsan-issue .img-wrap img {
    width: 80%;
  }
}

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

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

/* ----------------------------- */
/* 진료과탐방 sub020101/sub020102 - 245호
/* ----------------------------- */
.department-wrap04 dl {
  margin-bottom: 50px;
}

.department-wrap04 dl dt {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2rem;
  word-break: keep-all;
  padding: 0 0 0 90px;
  margin-bottom: 30px;
  position: relative;
}

.department-wrap04 dl dt:before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
}

.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-wrap04 dt span {
  font-size: 1.5rem;
}

.depatment04-01 dl:nth-child(1) dt:before {
  background-image: url("../../images/vol_253/sub/sub020101_icon01.jpg");
}

.depatment04-01 dl:nth-child(2) dt:before {
  background-image: url("../../images/vol_253/sub/sub020101_icon02.jpg");
}

.depatment04-01 dl:nth-child(3) dt:before {
  background-image: url("../../images/vol_253/sub/sub020101_icon03.jpg");
}

.depatment04-02 dl:nth-child(1) dt:before {
  background-image: url("../../images/vol_253/sub/sub020101_icon04.jpg");
}

.depatment04-02 dl:nth-child(2) dt:before {
  background-image: url("../../images/vol_253/sub/sub020101_icon05.jpg");
}

.depatment04-02 dl:nth-child(3) dt:before {
  background-image: url("../../images/vol_253/sub/sub020101_icon06.jpg");
}

.depatment04-03 dl:nth-child(1) dt:before {
  background-image: url("../../images/vol_253/sub/sub020102_icon01.jpg");
}

.depatment04-03 dl:nth-child(2) dt:before {
  background-image: url("../../images/vol_253/sub/sub020102_icon02.jpg");
}

.depatment04-03 dl:nth-child(3) dt:before {
  background-image: url("../../images/vol_253/sub/sub020102_icon03.jpg");
}

.depatment04-04 dl:nth-child(1) dt:before {
  background-image: url("../../images/vol_253/sub/sub020102_icon04.jpg");
}

.depatment04-04 dl:nth-child(2) dt:before {
  background-image: url("../../images/vol_253/sub/sub020102_icon05.jpg");
}

.summary {
  font-family: "NotoSansMedium", sans-serif;
  font-style: italic;
  margin-bottom: 5rem;
}

/* ----------------------------- */
/* 친절직원
/* ----------------------------- */
.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_251/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: 150px;
  height: 150px;
  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: 20px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.staff-meeting .img-wrap figcaption span {
  width: 80%;
  font-size: 1.2rem;
  word-break: keep-all;
}
.staff-meeting .img-wrap figcaption span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 10px auto;
}
.staff-meeting .question,
.staff-meeting .answer {
  padding-left: 35px;
  display: block;
  position: relative;
}
.staff-meeting .question::before,
.staff-meeting .answer::before {
  content: "";
  display: block;
  content: "Q";
  width: 30px;
  height: 30px;
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2rem;
  color: #fff;
  background: #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;
}
.staff-meeting .question::before {
  top: 6px;
}
.staff-meeting .answer::before {
  content: "A";
  border: 1px solid #7ab3be !important;
  background: #7ab3be;
}
.staff-meeting ul.aside li {
  padding-left: 60px;
  position: relative;
}
.staff-meeting ul.aside li::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 5px;
  left: 0;
}
.staff-meeting ul.aside li:first-child {
  border-bottom: 1px dashed #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.staff-meeting ul.aside li.info-center::before {
  background-image: url("../../images/vol_251/sub/info_center.svg");
}
.staff-meeting ul.aside li.time::before {
  background-image: url("../../images/vol_251/sub/time.svg");
}

/* ----------------------------- */
/* 만나고 싶었습니다.
/* ----------------------------- */
.see-you .interview-photo-wrap {
  margin: 50px 0;
}
.see-you .interviewer {
  color: #f68b1e;
}
.see-you .youtube-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  margin-top: 30px;
}
.see-you .youtube-wrap iframe {
  position: absolute;
}
.see-you .answer::before {
  font-family: "NanumMyeongjoBold", sans-serif;
}

.foot-note {
  padding: 1rem;
  margin-top: 3rem;
  background: #eaeaea;
}
.foot-note dl {
  font-size: 0.8em;
}
.foot-note dl dt {
  font-weight: bold;
}

/* ----------------------------- */
/* 우리가족 건강 지킴이
/* ----------------------------- */
.health {
  margin-bottom: 50px;
}
.health h2 {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.3rem;
  margin-bottom: 20px;
}
.health h3 {
  font-family: "NotoSansMedium", sans-serif;
  margin-bottom: 20px;
}
.health figure {
  text-align: center;
}
.health figure img {
  max-width: 400px;
}
.health .bomi {
  border: 2px solid #F58155;
  border-radius: 10px;
  padding: 20px;
  padding-left: 82px;
  margin-bottom: 20px;
  position: relative;
}
.health .bomi::before {
  content: "";
  display: block;
  width: 62px;
  height: 60px;
  background: url("../../images/vol_253/sub/sub0207_bomi.jpg") no-repeat;
  background-size: 100%;
  position: absolute;
  left: 10px;
  bottom: 0;
}
.health .kimi {
  border: 2px solid #6B88C5;
  border-radius: 10px;
  padding: 20px;
  padding-right: 82px;
  margin-bottom: 20px;
  position: relative;
}
.health .kimi::before {
  content: "";
  display: block;
  width: 62px;
  height: 60px;
  background: url("../../images/vol_253/sub/sub0207_kimi.jpg") no-repeat;
  background-size: 100%;
  position: absolute;
  right: 10px;
  bottom: 0;
}
.health .point {
  margin-bottom: 20px;
}
.health .point li {
  font-family: "NotoSansMedium", sans-serif;
  line-height: 120%;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
}
.health .point li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../../images/vol_253/sub/sub0207_point_icon.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}
.health .point li span {
  font-family: "NotoSansLight", sans-serif;
  font-size: 0.8em;
  display: block;
}
.health .health-aside {
  border: 1px solid #000;
  padding: 20px;
}
.health .health-aside h2 {
  margin-bottom: 30px;
}
.health .health-aside h3 {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.8rem;
  background: #e6e7e8;
  padding: 10px;
  margin-bottom: 20px;
}
.health .health-aside h3 span {
  color: #f68a53;
}
.health .health-aside ul {
  margin-bottom: 30px;
}
.health .health-aside figure {
  text-align: center;
}

.li-dot li {
  padding-left: 10px;
  position: relative;
  margin-bottom: 0.3em;
}
.li-dot li::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #000;
}

.health-li-num li {
  padding-left: 25px;
  position: relative;
}
.health-li-num li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2em;
}
.health-li-num li:nth-child(1)::before {
  content: "❶";
}
.health-li-num li:nth-child(2)::before {
  content: "❷";
}
.health-li-num li:nth-child(3)::before {
  content: "❸";
}
.health-li-num li:nth-child(4)::before {
  content: "❹";
}
.health-li-num li:nth-child(5)::before {
  content: "❺";
}
.health-li-num li:nth-child(6)::before {
  content: "❻";
}
.health-li-num.meal-guideline li:nth-child(1)::before {
  content: "1";
}
.health-li-num.meal-guideline li:nth-child(2)::before {
  content: "2";
}
.health-li-num.meal-guideline li:nth-child(3)::before {
  content: "3";
}
.health-li-num.meal-guideline li:nth-child(4)::before {
  content: "4";
}
.health-li-num.meal-guideline li:nth-child(5)::before {
  content: "5";
}
.health-li-num.meal-guideline li:nth-child(6)::before {
  content: "6";
}
.health-li-num.meal-guideline li:nth-child(7)::before {
  content: "7";
}

/* ----------------------------- */
/* 약이야기
/* ----------------------------- */
.drug-story h3 {
  font-family: "NotoSansMedium", sans-serif;
  color: #409E71;
  margin-bottom: 10px;
}
.drug-story h4 {
  font-family: "NotoSansMedium", sans-serif;
}
.drug-story aside {
  font-family: "NotoSansMedium", sans-serif;
  margin: 2em 0;
}
.drug-story aside h2 {
  font-size: 2rem;
  color: #409E71;
  border: 1px solid #409E71;
  border-radius: 20px;
  padding: 5px 20px 5px 60px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
.drug-story aside h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #409E71;
  border-radius: 50%;
  background: #fff url("../../images/vol_253/sub/sub0208_icon.svg") no-repeat center;
  background-size: 5px;
  position: absolute;
  top: 50%;
  left: -1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drug-story aside figure {
  text-align: center;
}
.drug-story aside figure img {
  max-width: 400px;
}

/* ----------------------------- */
/* CULTURE&LIFE
/* ----------------------------- */
.museum {
  margin-bottom: 2rem;
  position: relative;
}
.museum::after {
  content: "";
  display: block;
  width: 150px;
  height: 47px;
  background: url("../../images/vol_253/sub/sub0210_museum_bg.png") no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 860px) {
  .museum::after {
    width: 100%;
    background: url("../../images/vol_253/sub/sub0210_museum_bg.png") right top no-repeat;
    position: relative;
    top: auto;
    right: auto;
  }
}
.museum dl dt span {
  font-family: "NotoSansLight", sans-serif;
  font-weight: normal;
  line-height: 120%;
  margin-bottom: 2rem;
  display: block;
}
.museum dl dd {
  font-family: "NotoSansMedium", sans-serif;
}
.museum dl dd p {
  margin-bottom: 0;
}
.museum dl dd span {
  width: 60px;
  font-family: "NotoSansLight", sans-serif;
  display: inline-block;
}

/* ----------------------------- */
/* 함께 걷는 삶
/* ----------------------------- */
.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 .point {
  font-family: "NanumSquareB", sans-serif;
  color: #000;
  margin-bottom: 5px;
}

.with header {
  color: #1c4d81;
}
.with header h1 {
  line-height: 130% !important;
  margin-bottom: 30px;
}
.with header h1 span {
  font-size: 0.8em;
  color: #4495d1;
}
.with header h2 {
  font-family: "NotoSansRegular", sans-serif;
  line-height: 160% !important;
}
.with header h2 span {
  font-size: 1.2em;
}
.with .headline {
  font-family: "NotoSansMedium", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .with .headline br {
    display: none;
  }
}
.with .with-cont {
  margin-bottom: 60px;
}
.with .with-cont .title {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.3rem;
  color: #1c4d81;
  text-align: center;
}
.with .with-cont .title span {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 0.8em;
  color: #4495d1;
  display: block;
}
.with .with-cont .check li {
  padding-left: 25px;
  position: relative;
}
.with .with-cont .check li::before {
  content: "";
  display: block;
  width: 15px;
  height: 20px;
  background: url("../../images/vol_251/sub/sub0209_check_icon.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0;
}
.with .with-cont.col-2 > div:first-child {
  border-right: 1px dashed #d1d1d1;
  padding-right: 30px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .with .with-cont.col-2 > div:first-child {
    border-right: none;
    border-bottom: 1px dashed #d1d1d1;
    padding-right: 0;
    padding-bottom: 30px;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.with .with-cont.col-1 > div {
  margin-bottom: 60px;
}
.with .with-cont.col-1 > div dl {
  margin-bottom: 50px;
}
.with .with-cont.col-1 > div dl dt {
  font-family: "NotoSansMedium", sans-serif;
  color: #fff;
  border-radius: 5px;
  background: #1c4d81;
  padding: 5px 10px;
  margin-bottom: 20px;
  display: inline-block;
}
.with .with-cont.col-1 > div dl dd ul li {
  padding-left: 15px;
  position: relative;
}
.with .with-cont.col-1 > div dl dd ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1c4d81;
  position: absolute;
  top: 12px;
  left: 0;
}
.with .with-cont.col-1 > div dl dd ul li span {
  font-family: "NotoSansMedium", sans-serif;
  color: #1c4d81;
}
.with .result .title {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 2.3rem;
  color: #1c4d81;
  text-align: center;
}
.with .result .title span {
  font-family: "NotoSansRegular", sans-serif;
  font-size: 0.8em;
  color: #808284;
  display: block;
}
.with .result .img-wrap {
  text-align: center;
}
.with .tel {
  font-family: "NotoSansMedium", sans-serif;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background: #1c4d81;
  padding: 5px 10px;
}

.with-box {
  padding: 1em 1.5em;
  border: 2px solid #3d65b0;
}
.with-box strong {
  font-family: "NotoSansMedium", sans-serif;
  color: #3d65b0;
}

/* ----------------------------- */
/* 협력병원 탐방
/* ----------------------------- */
.hospital {
  margin-top: 50px;
}
.hospital h2 {
  font-family: "NotoSansMedium", sans-serif;
  font-size: 1.8rem;
}

/* ----------------------------- */
/* 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 #66a0be;
  border-bottom: 1px dashed #66a0be;
  padding: 10px;
}
.pnuh-news-content dl dd {
  padding: 10px;
}
.pnuh-news-content.yangsan dl dt {
  border-top: 2px solid #52a387;
  border-bottom: 1px dashed #52a387;
}
.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;
}

/* ----------------------------- */
/* 땡스 투 닥터
/* ----------------------------- */
.thx-to-sti {
  margin-top: 1em;
  margin-bottom: 0.5em;
  text-align: center;
}
.thx-to-sti span {
  padding: 0.5em 1em;
  display: inline-block;
  background-color: #319483;
  color: #fff;
  border-radius: 50px;
  font-size: 1em;
}
@media (max-width: 767px) {
  .thx-to-sti span {
    font-size: 0.6em;
  }
}

.thx-to {
  width: 100%;
  text-align: center;
  padding: 3em 2em 2em;
  border: 1px solid #ccc;
  background-color: #fafafa;
  background-image: url("../../images/vol_251/sub/thx_bg.png"), url("../../images/vol_251/sub/thx_bg.png");
  background-repeat: no-repeat;
  background-position: top center, bottom center;
  background-size: auto 12px;
}
@media (max-width: 767px) {
  .thx-to {
    padding: 2.2em 1.2em 1.5em;
    background-size: auto 10px;
  }
}
.thx-to h2 {
  margin-bottom: 1em;
  font-size: 2rem;
  font-family: "NanumSquareB", sans-serif;
}

/* ----------------------------- */
/* 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%);
  }

  /* ----------------------------- */
  /* 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) {
  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .special-medi aside.special-medi-common ul.list-25 li, .special-medi aside.special-medi-common ul.list-30 li, .special-medi aside.special-medi-common ul.list-50 li {
    width: 48%;
  }

  /* ----------------------------- */
  /* 양산이슈
  /* ----------------------------- */
  .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;
  }

  /* ----------------------------- */
  /* SMART PNUH
  /* ----------------------------- */
  .smartpnuh-h2 {
    width: 100%;
  }
}
@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;
  }

  /* ----------------------------- */
  /* 순례자의 길 No.1
  /* ----------------------------- */
  .poem-wrap .poem .exhibition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    right: auto;
    bottom: auto;
  }
  .poem-wrap .poem .exhibition figure {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
@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) {
  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .special-medi aside.special-medi-common ul.list-25 li, .special-medi aside.special-medi-common ul.list-30 li {
    width: 31.3%;
  }

  /* 진료시간 */
  .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.8rem;
  }

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

  /* 의료특집 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;
  }

  /* ----------------------------- */
  /* 약 이야기, 우리가족건강지킴이
  /* ----------------------------- */
  .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: 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;
  }
}
@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 보감
  /* ----------------------------- */
  .pnuh-allumni .col-2 header h1 {
    font-size: 2.5rem;
  }

  /* ----------------------------- */
  /* 의료특집
  /* ----------------------------- */
  .special-medi aside.special-medi-common ul.list-25 li, .special-medi aside.special-medi-common ul.list-30 li, .special-medi aside.special-medi-common ul.list-50 li {
    width: 46%;
    margin: 0 2% 10px;
  }

  .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;
  }

  /* ----------------------------- */
  /* 순례자의 길 No.1
  /* ----------------------------- */
  .poem-wrap .poem .exhibition {
    display: block;
  }
  .poem-wrap .poem .exhibition figure {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
