@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(25% - 15px);
  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(33.3333333333% - 13.3333333333px);
  }
  .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(50% - 10px);
  }
  .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(50% - 5px);
  }
  .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_254 sub.css
/* Script : Font, Layout CSS
/* Author : Design Geulggol
/* Date	: 2024-03-22
/* ================================================================== */
/* ----------------------------- */
/* 의료특집
/* ----------------------------- */
.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: #dd4a29;
  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: #e9870a;
  display: block;
}
.special-medi .professor-wrap .professor span::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e9870a;
  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: #e9870a;
}
.special-medi .professor-wrap dl dt::before {
  vertical-align: middle;
  content: "";
  margin-top: -2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #e9870a;
  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 {
  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: #3d4f9b;
}
aside.research .q {
  color: #3d4f9b;
}
aside.research table {
  width: 100%;
}
aside.research table thead tr {
  color: #3d4f9b;
  border: 1px solid #3d4f9b;
  border-width: 1px 0;
}
aside.research table thead tr th {
  padding: 10px;
}
aside.research table tbody tr {
  border-bottom: 1px solid #3d4f9b;
}
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 #3d4f9b;
  margin: 0 auto;
  display: block;
}
aside.research .description {
  text-align: right;
  border-top: none;
}

aside.special-medi01 header {
  margin-bottom: 1em;
}
aside.special-medi01 .dot {
  margin-bottom: 2em;
  margin: 0 1em 2em;
}
aside.special-medi01 p {
  padding: 0 20px;
}

/* 의료특집 2 */
aside.special-medi02 header {
  text-align: center;
}
aside.special-medi02 header h2 {
  background: #7887c0;
}
aside.special-medi02 .border-box {
  border: 2px solid #7887c0;
  border-radius: 10px;
  background: #ebf5f0 url("../../images/vol_254/sub/sub010302_img02.png") no-repeat right bottom;
  padding-bottom: 120px;
  margin-bottom: 50px;
  overflow: hidden;
}
aside.special-medi02 .border-box header {
  margin-bottom: 0;
}
aside.special-medi02 .border-box header h2 {
  font-size: 1.2em;
  font-weight: bold;
  color: #7887c0;
  border: none;
  border-bottom: 2px solid #7887c0;
  border-radius: 0;
  background: none;
}
aside.special-medi02 .border-box > ul {
  padding: 20px;
}
aside.special-medi02 .border-box > ul h3 {
  font-size: 1em;
}
aside.special-medi02 .list-check-num2 li::before {
  background-color: #7887c0;
}
aside.special-medi02 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
aside.special-medi02 > div dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
aside.special-medi02 > div dl dt {
  position: relative;
}
aside.special-medi02 > div dl dd {
  text-align: center;
}
aside.special-medi02 > div .icon ::after {
  content: "▶";
  display: block;
  position: absolute;
  top: 40%;
  right: 0;
  color: #7887c0;
}
@media screen and (max-width: 900px) {
  aside.special-medi02 > div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  aside.special-medi02 > div dl {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 50%;
    margin-bottom: 30px;
  }
  aside.special-medi02 > div dl:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  aside.special-medi02 > div {
    display: block;
  }
  aside.special-medi02 > div dl {
    width: 100%;
    padding: 0;
  }
  aside.special-medi02 > div dl .icon ::after {
    display: none;
  }
  aside.special-medi02 > div dl.micon::after {
    content: "▼";
    display: block;
    position: relative;
    top: 40%;
    right: 0;
    color: #7887c0;
    padding-top: 35px;
  }
}

/* 의료특집 3 */
aside.special-medi03 header {
  text-align: center;
}
aside.special-medi03 header h2 {
  background: #ed5d2e;
}
aside.special-medi03 dl {
  padding: 2px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
aside.special-medi03 dl dt {
  width: 100px;
  color: var(--medi-special05);
  font-weight: bold;
  color: #ed5d2e;
}
aside.special-medi03 dl dd {
  width: calc(100% - 100px);
}

.medi-tbl {
  width: 100%;
}
.medi-tbl th,
.medi-tbl td {
  padding: 0.6em;
  border-top: 1px solid #ed5d2e;
  border-bottom: 1px solid #ed5d2e;
  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 tbody th {
  background-color: #fcd0b6;
}
.medi-tbl tbody td {
  text-align: left;
}

/* 의료특집 4 */
aside.special-medi04 header h2 {
  background: #ec5175;
}
aside.special-medi04 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
aside.special-medi04 div dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
aside.special-medi04 div dl dt {
  position: relative;
}
aside.special-medi04 div dl dt figcaption {
  font-size: 1em;
  font-weight: bold;
  color: #ec5175;
  font-style: normal;
}
aside.special-medi04 div dl dd {
  text-align: center;
}
@media screen and (max-width: 900px) {
  aside.special-medi04 div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  aside.special-medi04 div dl {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 50%;
    margin-bottom: 30px;
  }
  aside.special-medi04 div dl:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  aside.special-medi04 div {
    display: block;
  }
  aside.special-medi04 div dl {
    width: 100%;
    padding: 0;
  }
}

/* 의료특집 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: #a87cb4;
}
aside.special-medi05 .border-box {
  border: 2px solid #a87cb4;
  border-radius: 10px;
}
aside.special-medi05 .border-box:first-child {
  background: url("../../images/vol_254/sub/sub010305_img04.jpg") no-repeat right bottom;
}
aside.special-medi05 .border-box:last-child {
  background: url("../../images/vol_254/sub/sub010305_img05.jpg") no-repeat right bottom;
}
aside.special-medi05 .border-box dl {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
aside.special-medi05 .border-box dl dt {
  width: 100px;
  color: #a87cb4;
  font-weight: bold;
}
aside.special-medi05 .border-box dl dd {
  width: calc(100% - 100px);
}
@media screen and (max-width: 480px) {
  aside.special-medi05 .border-box {
    padding-bottom: 100px;
  }
  aside.special-medi05 .border-box dl dt {
    width: 60px;
  }
  aside.special-medi05 .border-box dl dd {
    width: calc(100% - 60px);
  }
}

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

.p-medi06 {
  text-align: center;
  color: #f2848a;
}

/* 의료특집 7 */
aside.special-medi07 header {
  text-align: center;
}
aside.special-medi07 header h2 {
  background: #79c17f;
}
aside.special-medi07 .col-2 {
  text-align: left;
}
aside.special-medi07 h3 {
  padding: 2px 6px;
  display: inline-block;
  border: 2px solid #79c17f;
  margin-bottom: 0.5em;
  text-align: left;
  font-family: "NotoSansMedium", sans-serif;
}

/* 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-num3 {
  counter-reset: number;
  margin-left: 1em;
}
.list-check-num3 li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}
.list-check-num3 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-num3 li .li-list01 {
  padding: 0;
}
.list-check-num3 li .li-list01 li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 0;
}
.list-check-num3 li .li-list01 li::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #000;
}

.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: #52bebd;
}
