@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&family=Noto+Sans:wght@400;700&family=Noto+Serif+KR:wght@400;700&family=Noto+Serif+SC:wght@400;700&family=Noto+Serif+TC:wght@400;700&family=Noto+Serif:wght@400;700&display=swap);
@charset "UTF-8";
html {
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  padding: 0px;
  margin: 0px;
  font-family: "Noto Serif", "Noto Serif KR", "Noto Serif SC", "Noto Serif TC", serif;
}

body.no_scroll {
  overflow: hidden;
  width: 100%;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

p {
  margin: 0px;
  padding: 0px;
}

input:focus,
textarea:focus {
  outline: none;
}

button {
  cursor: pointer;
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 9999s ease-out;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
div {
  box-sizing: border-box;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.fw-bold {
  font-weight: 700;
}

.pointer {
  cursor: pointer;
}

.mr-10 {
  margin-right: 10px;
}

.banselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

body .progress-container {
  display: none;
  position: fixed;
  top: calc(50% - 100px);
  left: 40px;
  width: 4px;
  height: 200px;
  background: #d9d9d9;
  z-index: 100;
  border-radius: 9999px;
}
@media (min-width: 769px) and (max-width: 1310px) {
  body .progress-container {
    left: 10px;
  }
}
@media (max-width: 768px) {
  body .progress-container {
    left: 4px;
  }
}
body .progress-container .progress-bar {
  width: 4px;
  background: #0d47a7;
  height: 0%;
  border-radius: 9999px;
}
body .progress-container.show {
  display: block;
  opacity: 0;
  transition: 0.5s;
}
body .progress-container.visible {
  opacity: 1;
}
body div.layout {
  text-align: center;
}
body div.layout header {
  z-index: 10;
  position: relative;
  margin: auto;
  background: #ffffff;
  width: 100%;
  height: 190px;
  font-family: "Noto Sans KR", sans-serif;
}
@media (max-width: 768px) {
  body div.layout header {
    height: 70px;
  }
}
@media (max-width: 319px) {
  body div.layout header {
    width: 320px;
  }
}
body div.layout header .header_wrap {
  padding: 0px 32px;
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 75% auto;
  grid-template-rows: auto 70px;
  background: #ffffff;
  z-index: 10;
}
@media (max-width: 768px) {
  body div.layout header .header_wrap {
    padding: 0px 16px;
    grid-template-columns: auto auto auto;
  }
}
body div.layout header .header_wrap .logo {
  grid-row: 1/2;
  grid-column: 1/4;
  text-align: center;
  display: flex;
  min-width: 216px;
}
@media (max-width: 768px) {
  body div.layout header .header_wrap .logo {
    grid-row: 2/3;
    grid-column: 2/3;
    min-width: 100px;
  }
}
body div.layout header .header_wrap .logo > a {
  margin: auto;
}
body div.layout header .header_wrap .logo > a img {
  padding: 50px 30px 11px;
  height: 54px;
}
@media (max-width: 768px) {
  body div.layout header .header_wrap .logo > a img {
    padding: 0px;
    width: auto;
    height: 33px;
  }
}
body div.layout header .header_wrap .nav {
  display: block;
  grid-row: 2/3;
  grid-column: 1/3;
  padding-right: 0px;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 700;
  color: #121212;
}
body div.layout header .header_wrap .nav > li {
  line-height: 70px;
}
body div.layout header .header_wrap .nav > li > a.active,
body div.layout header .header_wrap .nav > li a:hover {
  color: #0d47a7;
  text-decoration: underline;
}
body div.layout header .header_wrap .m_nav {
  display: none;
  grid-row: 2/3;
  grid-column: 1/2;
}
body div.layout header .header_wrap .m_nav img {
  height: 28px;
  margin: auto;
  margin-left: 0px;
}
@media (max-width: 768px) {
  body div.layout header .header_wrap .nav {
    display: none;
  }
  body div.layout header .header_wrap .m_nav {
    display: flex;
  }
}
body div.layout header .header_wrap .search {
  grid-row: 2/3;
  grid-column: 3/4;
  text-align: end;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
body div.layout header .header_wrap .search .padobooks {
  margin: auto 0;
  margin-right: 16px;
  position: relative;
  padding-left: 16px;
}
body div.layout header .header_wrap .search .padobooks > a {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/pc_logo.svg?a612e1247acc5258bef6ea123574cffa);
  width: 144px;
  height: 36px;
  display: block;
}
body div.layout header .header_wrap .search .padobooks > a:hover, body div.layout header .header_wrap .search .padobooks > a.active {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/pc_logo_hover.svg?bbc68c122caac8d570d57cfb17e6f84e);
}
@media (max-width: 768px) {
  body div.layout header .header_wrap .search .padobooks {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 17px;
    right: 36px;
  }
  body div.layout header .header_wrap .search .padobooks > a {
    background-image: url(https://menu.mt.co.kr/pado/assets/images/mb_logo.svg?51553156b609a022f371eea214601f1a);
    width: 35px;
    height: 35px;
    display: block;
    background-size: 35px 35px;
  }
  body div.layout header .header_wrap .search .padobooks > a:hover, body div.layout header .header_wrap .search .padobooks > a.active {
    background-image: url(https://menu.mt.co.kr/pado/assets/images/mb_logo.svg?51553156b609a022f371eea214601f1a);
  }
  body div.layout header .header_wrap .search .padobooks::before {
    content: none;
  }
}
body div.layout header .header_wrap .search img {
  margin: auto 0;
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  body div.layout header .header_wrap .search img {
    height: 28px;
  }
}
body div.layout header .search_area {
  width: 100%;
  position: absolute;
  height: 0px;
  overflow: hidden;
  background: #ffffff;
  transition: 0.3s;
}
body div.layout header .search_area .search_wrap {
  max-width: 1440px;
  margin: auto;
}
body div.layout header .search_area .search_wrap .search_input {
  width: 100%;
  padding: 40px 30px;
  margin-top: 30px;
  color: #121212;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  background: #ffffff;
  margin-top: 0px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input {
    padding: 20px 16px;
  }
}
body div.layout header .search_area .search_wrap .search_input > div {
  display: flex;
}
body div.layout header .search_area .search_wrap .search_input > div .icon_wrap {
  width: 100px;
  line-height: 64px;
  display: flex;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input > div .icon_wrap {
    display: none;
  }
}
body div.layout header .search_area .search_wrap .search_input > div .icon_wrap > img {
  margin: auto 0;
  width: 26px;
  margin-right: 10px;
}
body div.layout header .search_area .search_wrap .search_input > div .icon_wrap > span {
  font-size: 20px;
  font-weight: 700;
}
body div.layout header .search_area .search_wrap .search_input > div .input_wrap {
  width: calc(100% - 180px);
  height: 64px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  display: flex;
  padding: 15px 30px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input > div .input_wrap {
    padding: 10px;
  }
}
body div.layout header .search_area .search_wrap .search_input > div .input_wrap > input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 18px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input > div .input_wrap > input {
    font-size: 15px;
  }
}
body div.layout header .search_area .search_wrap .search_input > div .input_wrap > img {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  margin: auto;
  cursor: pointer;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input > div .input_wrap > img {
    margin-left: 10px;
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input > div .input_wrap {
    width: calc(100% - 54px);
    height: 44px;
  }
  body div.layout header .search_area .search_wrap .search_input > div .input_wrap > input {
    font-size: 15px;
  }
  body div.layout header .search_area .search_wrap .search_input > div .input_wrap > img {
    width: 14px;
    height: 14px;
  }
}
body div.layout header .search_area .search_wrap .search_input > div .btn_wrap {
  width: 82px;
}
body div.layout header .search_area .search_wrap .search_input > div .btn_wrap > button {
  width: 100%;
  height: 100%;
  border: 1px solid #4d4d4d;
  font-size: 18px;
  background: #ffffff;
  color: #121212;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input > div .btn_wrap {
    width: 52px;
  }
  body div.layout header .search_area .search_wrap .search_input > div .btn_wrap > button {
    width: 52px;
    font-size: 13px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area {
  display: none;
  width: calc(100% - 100px);
  margin-left: 100px;
  border: 1px solid #d9d9d9;
  border-top: none;
  padding: 20px 30px;
  text-align: initial;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area {
    width: calc(100% - 2px);
    padding: 15px 10px;
    margin-left: 0px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area .top {
  display: flex;
  justify-content: space-between;
  color: #767676;
  font-size: 14px;
}
body div.layout header .search_area .search_wrap .search_input .list_area .top > span:nth-child(1) {
  color: #424242;
  font-size: 18px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area .top > span:nth-child(1) {
    font-size: 14px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area .top .del_wrap {
  display: flex;
  cursor: pointer;
}
body div.layout header .search_area .search_wrap .search_input .list_area .top .del_wrap span {
  margin-left: 5px;
  display: block;
}
body div.layout header .search_area .search_wrap .search_input .list_area .top .del_wrap.none {
  display: none;
}
body div.layout header .search_area .search_wrap .search_input .list_area .bottom {
  display: flex;
  justify-content: flex-end;
  color: #767676;
  font-size: 14px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area .bottom {
    font-size: 13px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul {
  margin: 15px 0px;
  min-height: 150px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area > div ul {
    min-height: 120px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul li {
  font-size: 16px;
  color: #767676;
  display: flex;
  font-weight: 400;
  margin: 6px 0px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area > div ul li {
    font-size: 13px;
    color: #767676;
    font-weight: 400;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul li > span {
  display: block;
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul li > span.text {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul li > span:hover {
  text-decoration: underline;
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul li > span.img {
  margin-left: 20px;
}
body div.layout header .search_area .search_wrap .search_input .list_area > div ul li > span.img > img {
  width: 14px;
  height: 14px;
}
body div.layout header .search_area .search_wrap .search_input .list_area > div .result_null {
  height: 180px;
  display: flex;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area > div .result_null {
    height: 150px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area > div .result_null p {
  margin: auto;
  color: #767676;
  font-size: 16px;
}
@media (max-width: 768px) {
  body div.layout header .search_area .search_wrap .search_input .list_area > div .result_null p {
    font-size: 13px;
  }
}
body div.layout header .search_area .search_wrap .search_input .list_area > div.search_list_wrap {
  display: block;
}
body div.layout header .search_area .search_wrap .search_input .list_area > div.search_work_none {
  display: none;
}
body div.layout header .search_area .search_wrap .search_input .list_area .bottom > span {
  cursor: pointer;
}
body div.layout header .search_area .search_wrap .search_input .list_area .bottom .save_on {
  display: block;
}
body div.layout header .search_area .search_wrap .search_input .list_area .bottom .save_off {
  display: none;
}
body div.layout header .search_area .search_wrap .search_input .list_area.off > div.search_list_wrap {
  display: none;
}
body div.layout header .search_area .search_wrap .search_input .list_area.off > div.search_work_none {
  display: block;
}
body div.layout header .search_area .search_wrap .search_input .list_area.off .bottom .save_on {
  display: none;
}
body div.layout header .search_area .search_wrap .search_input .list_area.off .bottom .save_off {
  display: block;
}
body div.layout header .search_area .search_wrap .search_input .list_area.active {
  display: block;
}
body div.layout header .search_area.show {
  height: 160px;
}
@media (max-width: 768px) {
  body div.layout header .search_area.show {
    height: 90px;
  }
}
body div.layout header .search_area.show.active {
  height: 420px;
}
@media (max-width: 768px) {
  body div.layout header .search_area.show.active {
    height: 320px;
  }
}
body div.layout header.scroll_event {
  position: sticky;
  top: 0;
  opacity: 0;
  height: 110px;
  z-index: 0;
}
@media (max-width: 768px) {
  body div.layout header.scroll_event {
    height: 70px;
  }
}
body div.layout header.scroll_event .header_wrap {
  grid-template-rows: auto 110px;
  grid-template-columns: minmax(174px, 24%) 65% auto;
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap {
    grid-template-rows: auto 70px;
    grid-template-columns: auto 60% auto;
  }
}
body div.layout header.scroll_event .header_wrap .logo {
  grid-row: 2/3;
  grid-column: 1/2;
  text-align: left;
}
body div.layout header.scroll_event .header_wrap .logo > a {
  margin: auto 0px;
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap .logo > a {
    margin: auto;
  }
}
body div.layout header.scroll_event .header_wrap .logo > a img {
  width: 168px;
  height: auto;
  padding: 28px 0px 0px;
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap .logo > a img {
    padding: 0px;
    width: auto;
    height: 33px;
  }
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap .logo {
    grid-row: 2/3;
    grid-column: 2/3;
    text-align: center;
  }
  body div.layout header.scroll_event .header_wrap .logo img {
    width: auto;
    height: calc(100% - 30px);
    padding: 15px;
  }
}
body div.layout header.scroll_event .header_wrap .nav {
  display: block;
  grid-row: 2/3;
  grid-column: 2/3;
  display: flex;
  justify-content: space-between;
}
body div.layout header.scroll_event .header_wrap .nav > li {
  line-height: 148px;
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap .nav {
    display: none;
  }
  body div.layout header.scroll_event .header_wrap .m_nav {
    display: flex;
  }
}
body div.layout header.scroll_event .header_wrap .search img {
  height: 24px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap .search img {
    height: 28px;
    margin: auto 0px auto auto;
  }
}
body div.layout header.scroll_event .header_wrap .search .padobooks {
  margin-top: 58px;
  padding-left: 0;
  margin-right: 6px;
}
body div.layout header.scroll_event .header_wrap .search .padobooks > a {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/mb_logo.svg?51553156b609a022f371eea214601f1a);
  width: 35px;
  height: 35px;
  display: block;
  background-size: 35px 35px;
}
body div.layout header.scroll_event .header_wrap .search .padobooks > a:hover {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/mb_logo.svg?51553156b609a022f371eea214601f1a);
}
@media (max-width: 768px) {
  body div.layout header.scroll_event .header_wrap .search .padobooks {
    margin-top: 0;
    display: block;
    margin-right: 0px;
  }
}
body div.layout header.scroll_event .header_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  top: 0;
}
body div.layout header.atc_page {
  height: 110px;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.15));
}
@media (max-width: 768px) {
  body div.layout header.atc_page {
    filter: none;
    height: 70px;
  }
}
body div.layout header.atc_page .header_wrap {
  grid-template-rows: auto 110px;
  grid-template-columns: 228px 60% auto;
}
@media (max-width: 768px) {
  body div.layout header.atc_page .header_wrap {
    grid-template-columns: auto auto auto;
    grid-template-rows: auto 70px;
  }
}
body div.layout header.atc_page .header_wrap .logo {
  grid-row: 2/3;
  grid-column: 1/2;
  text-align: left;
}
body div.layout header.atc_page .header_wrap .logo > a {
  margin: auto 0px;
}
@media (max-width: 768px) {
  body div.layout header.atc_page .header_wrap .logo > a {
    margin: auto;
  }
}
body div.layout header.atc_page .header_wrap .logo > a img {
  width: 168px;
  height: auto;
  padding: 28px 0px 0px;
}
@media (max-width: 768px) {
  body div.layout header.atc_page .header_wrap .logo > a img {
    padding: 0px;
    width: auto;
    height: 33px;
  }
}
@media (max-width: 768px) {
  body div.layout header.atc_page .header_wrap .logo {
    grid-row: 2/3;
    grid-column: 2/3;
    text-align: center;
  }
  body div.layout header.atc_page .header_wrap .logo img {
    width: auto;
    height: calc(100% - 30px);
    padding: 15px;
  }
}
body div.layout header.atc_page .header_wrap .nav {
  display: none;
}
body div.layout header.atc_page .header_wrap .atc_title {
  display: block;
  grid-row: 2/3;
  grid-column: 2/3;
  text-align: left;
  line-height: 148px;
  font-size: 24px;
  overflow: hidden;
  font-weight: 700;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  body div.layout header.atc_page .header_wrap .nav {
    display: none;
  }
  body div.layout header.atc_page .header_wrap .m_nav {
    display: flex;
  }
  body div.layout header.atc_page .header_wrap .atc_title {
    display: none;
  }
}
body div.layout header.atc_page .header_wrap .search img {
  height: 24px;
  margin: 64px 0px auto auto;
}
@media (max-width: 768px) {
  body div.layout header.atc_page .header_wrap .search img {
    height: 28px;
    margin: auto 0px auto auto;
  }
}
body div.layout header.atc_page .header_wrap .search .padobooks {
  display: none;
}
body div.layout header.atc_page .header_cover {
  height: 0px;
}
body div.layout header.scroll_event.scroll_up {
  z-index: 10;
  opacity: 1;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.15));
}
body div.layout header.scroll_event.scroll_up .header_cover {
  height: 0px;
}
body div.layout header.scroll_event.transition {
  transition-property: opacity;
  transition-duration: 0.3s;
}
body div.layout main {
  min-height: calc(100vh - 331px);
  position: relative;
  transform: translateY(0px);
  padding: 0px 32px;
}
@media (max-width: 319px) {
  body div.layout main {
    width: 300px;
  }
}
@media (max-width: 768px) {
  body div.layout main {
    padding: 0px 16px;
    min-height: calc(100vh - 190px);
  }
}
body div.layout main.header_show {
  transition: 0.5;
  transform: translateY(224px);
}
@media (max-width: 768px) {
  body div.layout main.header_show {
    transform: translateY(70px);
  }
}
body .footnote_layer {
  position: fixed;
  z-index: 1000;
  background: #ffffff;
  transition: 0.3s;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-size: 1rem;
  line-height: 160%;
  height: 100vh;
  width: 0px;
  top: 0;
  right: 0;
  visibility: hidden;
  bottom: auto;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05), 0px 0px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  body .footnote_layer {
    width: 100%;
    height: 0px;
    top: auto;
    bottom: 0px;
    border-radius: 24px 24px 0px 0px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2), 0px 0px 12px rgba(0, 0, 0, 0.2), 0px 0px 32px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 319px) {
  body .footnote_layer {
    width: 320px;
  }
}
body .footnote_layer > div {
  margin: 12px;
  width: 216px;
}
@media (max-width: 768px) {
  body .footnote_layer > div {
    margin: 20px;
    width: calc(100% - 40px);
  }
}
body .footnote_layer > div .close_wrap {
  display: flex;
}
body .footnote_layer > div .close_wrap > div {
  height: 16px;
  margin: auto;
  cursor: pointer;
}
body .footnote_layer > div .close_wrap > div .fn_exp {
  display: none;
  width: 60px;
  height: 4px;
  border-radius: 9999px;
  background: #d9d9d9;
  top: 50%;
  position: relative;
  margin-top: -2PX;
}
@media (max-width: 768px) {
  body .footnote_layer > div .close_wrap > div .fn_exp {
    display: block;
  }
}
body .footnote_layer > div .close_wrap img {
  margin-left: auto;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
@media (max-width: 768px) {
  body .footnote_layer > div .close_wrap img {
    margin-left: 0px;
  }
}
body .footnote_layer > div .text_wrap {
  margin-top: 20px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
@media (max-width: 768px) {
  body .footnote_layer > div .text_wrap {
    height: 100px;
  }
}
body .footnote_layer > div .text_wrap > .key {
  font-weight: 700;
  color: #0d47a7;
  float: left;
  margin-right: 5px;
}
body .footnote_layer > div .text_wrap > .value {
  color: #444444;
}
body .footnote_layer > div .text_wrap::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera*/
}
body .footnote_layer.show {
  visibility: visible;
  width: 240px;
  height: 100vh;
}
@media (max-width: 768px) {
  body .footnote_layer.show {
    width: 100%;
    height: 160px;
  }
}
@media (max-width: 768px) {
  body .footnote_layer.show.expand {
    height: 400px;
  }
  body .footnote_layer.show.expand > div .text_wrap {
    height: 320px;
  }
}
body .article-footnote-common p a {
  text-decoration: underline;
  color: #0d47a7;
}
body .article-footnote-common span.style-color-red,
body .article-footnote-common a.style-color-red {
  color: #e6270d !important;
}
body .article-footnote-common span.style-color-blue,
body .article-footnote-common a.style-color-blue {
  color: #0d47a7 !important;
}
body .article-footnote-common span.style-bold,
body .article-footnote-common a.style-bold {
  font-weight: 700 !important;
}
body .article-footnote-common span.style-italic,
body .article-footnote-common a.style-italic {
  font-style: italic !important;
}
body .article-footnote-common span.style-sub,
body .article-footnote-common a.style-sub {
  vertical-align: baseline !important;
  font-size: 0.75em !important;
}
body footer {
  display: flex;
  background: #f5f5f5;
}
body footer > div {
  margin: 35px auto;
}
@media (max-width: 768px) {
  body footer > div {
    margin: 25px auto;
  }
}
body footer > div > .ft_text {
  display: flex;
  justify-content: center;
  font-family: "Noto Sans";
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: -0.03em;
  color: #929292;
}
body footer > div > .ft_text.ft_text_link {
  letter-spacing: -0.01em;
  color: #757575;
}
body footer > div > .ft_text.ft_text_link span a:hover,
body footer > div > .ft_text.ft_text_link span a:focus {
  color: #616161;
  text-decoration: underline;
}
body footer > div > .ft_text.ft_text_link span:last-child {
  color: #121212;
}
body footer > div > .ft_text.ft_text_link span:last-child a:hover,
body footer > div > .ft_text.ft_text_link span:last-child a:focus {
  color: #121212;
}
body footer > div > .ft_text.ft_text_copyright {
  margin-top: 20px;
  letter-spacing: -0.01em;
  color: #9e9e9e;
}
@media (max-width: 768px) {
  body footer > div > .ft_text.ft_text_copyright {
    margin-top: 15px;
  }
}
body footer > div > .ft_text .vt_div {
  width: 1px;
  border-left: 1px solid #e0e0e0;
  height: 12px;
  margin: auto 28px;
}
@media (max-width: 768px) {
  body footer > div > .ft_text .vt_div {
    margin: auto 16px;
  }
}
body footer > div .info {
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  font-style: normal;
}
@media (max-width: 768px) {
  body footer > div .info {
    margin-top: 15px;
  }
}
body footer > div .info .info_wrap {
  display: flex;
}
@media (max-width: 768px) {
  body footer > div .info .info_wrap {
    flex-direction: column;
  }
}
body footer > div .info .info_wrap .vt_div {
  margin: auto 10px;
}
@media (max-width: 768px) {
  body footer > div .info .info_wrap .vt_div {
    display: none;
  }
}
body footer > div .info .info_wrap:last-child {
  flex-direction: row;
}
body footer > div .info .info_wrap:last-child .vt_div {
  display: block;
}
body .dim_cover {
  display: none;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
body .dim_cover.show {
  display: block;
}
body .offcanvas .m_nav_area {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateX(-100%);
  transition-duration: 0.2s;
  background: #0d47a7;
  height: 100vh;
  z-index: 1000;
  padding: 20px;
}
body .offcanvas .m_nav_area > div.top {
  display: flex;
  justify-content: space-between;
}
body .offcanvas .m_nav_area > div.top > span {
  display: block;
  line-height: 40px;
}
body .offcanvas .m_nav_area > div.top .logo img {
  width: auto;
  height: 33px;
}
body .offcanvas .m_nav_area > div.top .m_nav_close img {
  width: auto;
  height: 16px;
}
body .offcanvas .m_nav_area > ul.menu::-webkit-scrollbar {
  display: none;
}
body .offcanvas .m_nav_area > ul.menu {
  text-align: center;
  margin-top: 8px;
  /* ( 크롬, 사파리, 오페라, 엣지 ) 동작 */
}
@media (orientation: landscape) and (max-height: 720px) {
  body .offcanvas .m_nav_area > ul.menu {
    overflow: scroll;
    height: 70vh;
    height: calc(var(--vh, 1vh) * 70);
  }
}
body .offcanvas .m_nav_area > ul.menu .scroll {
  -ms-overflow-style: none;
  /* 인터넷 익스플로러 */
  scrollbar-width: none;
  /* 파이어폭스 */
}
body .offcanvas .m_nav_area > ul.menu li {
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  font-size: 26px;
  line-height: 70px;
}
body .offcanvas .m_nav_area > ul.menu li.active {
  font-weight: 700;
  text-decoration: underline;
}
body .offcanvas .m_nav_area.show {
  transform: translateX(0%);
}
body .top_icon {
  opacity: 0;
  transition: 0.5s;
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
@media (max-width: 400px) {
  body .top_icon {
    bottom: 40px;
    right: 20px;
  }
}
body .top_icon img {
  width: 3.75rem;
  height: 3.75rem;
}
body .top_icon.show {
  opacity: 1;
}

.img_wrap {
  grid-column: 1/2;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 74.23%;
  /* 2:1 : padding-top : 50%
            1:2 : padding-top : 200%
            4:3 : padding-top : 75%
            16:9 : padding-top : 56.25%*/
  overflow: hidden;
}
.img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hover_area:hover .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}

.home_area {
  max-width: 1376px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
  padding-top: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .home_area {
    display: block;
    padding-top: 0px;
  }
}
.home_area .top_main {
  grid-column: 1/3;
}
.home_area .top_main .cg_tip {
  margin-top: 12px;
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
}
.home_area .top_main .title {
  margin-top: 8px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 54.4px;
  max-height: 108.8px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 2.125rem;
}
@media (max-width: 768px) {
  .home_area .top_main .title {
    font-size: 23px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 36.8px;
    max-height: 110.4px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
}
.home_area .top_main .top_contents_wrap {
  overflow: hidden;
  max-height: 200px;
}
.home_area .top_main .contents {
  margin-top: 8px;
  line-height: 25.6px;
  max-height: 102.4px;
  overflow: hidden;
  color: #424242;
  font-size: 1rem;
}
.home_area .top_main .info {
  margin-top: 8px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.home_area .top_main .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.home_area .top_main .info .create_date {
  display: flex;
}
.home_area .top_main .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.home_area .top_main .info span.none,
.home_area .top_main .info .vt_div.none {
  display: none;
}
.home_area .top_main .info .media_name {
  height: 20px;
}
@media (max-width: 768px) {
  .home_area .top_main .info .media_name {
    height: 18px;
    overflow: hidden;
    word-wrap: break-word;
  }
}
.home_area .right_list {
  grid-column: 3/4;
  margin-top: 0px;
}
.home_area .right_list > .item .img_wrap:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.home_area .right_list > .item .text_wrap .cg_tip {
  margin-top: 12px;
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
}
.home_area .right_list > .item .text_wrap .title {
  margin-top: 4px;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625rem;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.home_area .right_list > .item .text_wrap .title:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.home_area .right_list > .item .text_wrap .info {
  margin-top: 4px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.home_area .right_list > .item .text_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.home_area .right_list > .item .text_wrap .info .create_date {
  display: flex;
}
.home_area .right_list > .item .text_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.home_area .right_list > .item .text_wrap .info span.none,
.home_area .right_list > .item .text_wrap .info .vt_div.none {
  display: none;
}
.home_area .right_list > .item:nth-child(2) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .home_area .right_list {
    margin-top: 20px;
  }
  .home_area .right_list > .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-bottom: 20px;
  }
  .home_area .right_list > .item .img_wrap {
    grid-column: 1/2;
  }
  .home_area .right_list > .item .text_wrap {
    grid-column: 2/3;
    margin: auto 0px;
    text-align: left;
  }
  .home_area .right_list > .item .text_wrap .cg_tip {
    margin-top: 0px;
  }
  .home_area .right_list > .item .text_wrap .title {
    margin-top: 5px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27.2px;
    max-height: 54.4px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    font-size: 17px;
  }
  .home_area .right_list > .item .text_wrap .info {
    display: none;
  }
}
.home_area .nomal_list {
  grid-column: 1/3;
}
.home_area .nomal_list .item {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-bottom: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.home_area .nomal_list .item .img_wrap {
  grid-column: 1/4;
}
.home_area .nomal_list .item .img_wrap:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.home_area .nomal_list .item .text_wrap {
  grid-column: 4/9;
  margin: auto 0px;
  text-align: left;
}
.home_area .nomal_list .item .text_wrap .cg_tip {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
}
.home_area .nomal_list .item .text_wrap .title {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625em;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.home_area .nomal_list .item .text_wrap .title:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.home_area .nomal_list .item .text_wrap .info {
  margin-top: 4px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.home_area .nomal_list .item .text_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.home_area .nomal_list .item .text_wrap .info .create_date {
  display: flex;
}
.home_area .nomal_list .item .text_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.home_area .nomal_list .item .text_wrap .info span.none,
.home_area .nomal_list .item .text_wrap .info .vt_div.none {
  display: none;
}
.home_area .nomal_list .item:last-child {
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .home_area .nomal_list > .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-bottom: 20px;
  }
  .home_area .nomal_list > .item .img_wrap {
    grid-column: 1/2;
  }
  .home_area .nomal_list > .item .text_wrap {
    grid-column: 2/3;
    margin: auto 0px;
    text-align: left;
  }
  .home_area .nomal_list > .item .text_wrap .cg_tip {
    margin-top: 0px;
  }
  .home_area .nomal_list > .item .text_wrap .title {
    margin-top: 5px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27.2px;
    max-height: 54.4px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    font-size: 17px;
  }
  .home_area .nomal_list > .item .text_wrap .info {
    display: none;
  }
}
.home_area .most_view {
  grid-column: 3/4;
  margin-top: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .home_area .most_view {
    margin-top: 40px;
  }
}
.home_area .most_view > p {
  font-size: 2rem;
  font-family: "Noto Sans KR", sans-serif;
  margin-bottom: 1.75rem;
  color: #121212;
}
.home_area .most_view .item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding: 1.25rem 0px;
  border-top: 1px solid #4d4d4d;
}
.home_area .most_view .item .text_wrap {
  grid-column: 1/4;
  display: flex;
  font-weight: 700;
}
@media (max-width: 768px) {
  .home_area .most_view .item .text_wrap {
    grid-column: 1/5;
  }
}
.home_area .most_view .item .text_wrap .number {
  margin-right: 10px;
  font-size: 26px;
  color: #0d47a7;
}
.home_area .most_view .item .text_wrap .title {
  text-align: left;
  padding-top: 5px;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 32px;
  max-height: 96px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.25rem;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .home_area .most_view .item .text_wrap .title {
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27px;
    max-height: 54px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
}
.home_area .most_view .item .img_wrap {
  grid-column: 4/5;
  padding-bottom: 100%;
}
@media (max-width: 768px) {
  .home_area .most_view .item .img_wrap {
    display: none;
  }
}
.home_area .most_view .item:hover .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.home_area .most_view .item:last-child {
  border-bottom: 1px solid #4d4d4d;
}
.home_area .most_view .banner_wrap {
  display: grid;
  padding-top: 12px;
  border-top: 1px solid #4d4d4d;
}
@media (max-width: 768px) {
  .home_area .most_view .banner_wrap {
    padding: 40px 0 0;
  }
}
.home_area .most_view .banner_wrap .swiper {
  width: 100%;
}
.home_area .most_view .banner_wrap .swiper a img {
  width: 100%;
}
.home_area .most_view .banner_wrap .swiper .banner-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
  position: absolute;
  z-index: 10;
  text-align: center;
}
.home_area .most_view .banner_wrap .swiper .banner-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #c6c6c6;
}
.home_area .most_view .banner_wrap .swiper .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6c6c6c;
}

.category.main {
  max-width: 1440px;
  margin: auto;
  margin-top: 80px;
  text-align: left;
}
@media (max-width: 768px) {
  .category.main {
    margin-top: 40px;
  }
}
.category.main > p {
  font-size: 2rem;
  font-family: "Noto Sans KR", sans-serif;
  color: #121212;
}
.category.main .item_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (max-width: 768px) {
  .category.main .item_wrap {
    display: block;
  }
}
.category.main .item_wrap .item {
  margin-top: 1.875rem;
}
.category.main .item_wrap .item .cg_tip_plus {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
  position: relative;
  z-index: 10;
  background: #0d47a7;
  color: #ffffff;
}
.category.main .item_wrap .item .cg_tip_plus .icon {
  margin-left: 20px;
}
.category.main .item_wrap .item .img_wrap {
  margin-top: -10px;
}
.category.main .item_wrap .item .img_wrap:hover + .text_wrap .title_wrap > p {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.category.main .item_wrap .item .text_wrap {
  color: #121212;
}
.category.main .item_wrap .item .text_wrap .title_wrap {
  height: 96px;
  padding: 10px 0px;
  display: flex;
}
.category.main .item_wrap .item .text_wrap .title_wrap > p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 38.4px;
  max-height: 76.8px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-weight: 700;
  margin: auto 0px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.category.main .item_wrap .item .text_wrap .title_wrap > p a:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.category.main .item_wrap .item .text_wrap .atc_sub_list li {
  font-size: 1.375rem;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 35.2px;
  max-height: 35.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-top: 1px solid #4d4d4d;
  padding: 0.5rem 0px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.category.main .item_wrap .item .text_wrap .atc_sub_list li > a {
  display: block;
  overflow: hidden;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 35.2px;
  max-height: 35.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-weight: 400;
}
.category.main .item_wrap .item .text_wrap .atc_sub_list li:last-child {
  border-bottom: 1px solid #4d4d4d;
}
.category.main .item_wrap .item .text_wrap .atc_sub_list li:hover a {
  color: #0d47a7 !important;
  text-decoration: underline;
}

.special_area {
  width: calc(100% + 64px);
  margin: auto;
  margin-left: -32px;
  height: 565px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .special_area {
    display: none;
  }
}
.special_area > .back_wrap {
  height: 100%;
}
.special_area > .back_wrap .back_img {
  width: 100%;
  height: 100%;
  display: none;
}
.special_area > .back_wrap .back_img > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(90%);
  height: 100%;
  backdrop-filter: blur(10px);
  opacity: 0.7;
  -webkit-backdrop-filter: blur(10px);
}
.special_area > .back_wrap .back_img.active {
  display: block;
}
.special_area > .ct_wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.special_area > .ct_wrap > div {
  max-width: 1440px;
  margin: auto;
  text-align: initial;
  padding: 30px 32px;
}
.special_area > .ct_wrap > div > p {
  font-weight: 700;
  color: #ffffff;
  font-size: 32px;
  font-family: "Noto Sans KR", sans-serif;
}
.special_area > .ct_wrap > div > .tab_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  background: #ffffff;
  margin-top: 30px;
  padding: 30px;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header {
  grid-column: 1/2;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
  border-top: 1px solid #4d4d4d;
  color: #333333;
  cursor: pointer;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li > p.hd_title {
  grid-column: 1/4;
  font-weight: 700;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 32px;
  max-height: 64px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  margin: auto;
  margin-left: 0px;
  margin-right: 10px;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li > .img_wrap {
  grid-column: 4/5;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li.active {
  background: #0D47A7;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li.active .hd_title {
  color: #FFFFFF;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li:hover .hd_title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li.active:hover .hd_title {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}
.special_area > .ct_wrap > div > .tab_area ul.tab_header li:last-child {
  border-bottom: 1px solid #4d4d4d;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap {
  grid-column: 2/4;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item {
  display: none;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > .text_wrap {
  height: 180px;
  overflow: hidden;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > .text_wrap > .title {
  font-size: 2rem;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 51.2px;
  max-height: 102.4px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > .text_wrap > .contents {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 22.4px;
  max-height: 89.6px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  margin-top: 10px;
  color: #505050;
  font-size: 14px;
  font-weight: 400;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > .text_wrap:hover > .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > .text_wrap.card_null {
  overflow: hidden;
  max-height: 335px;
  height: 100%;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > .text_wrap.card_null > .contents {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 22.4px;
  max-height: 291.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 13;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  margin-top: 10px;
  color: #505050;
  font-size: 14px;
  font-weight: 400;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card {
  display: flex;
  flex-flow: row nowrap;
  margin-top: 25px;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li {
  flex-grow: 1;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li .img_wrap {
  height: 100%;
  overflow: hidden;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li .img_wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li .title_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: flex;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li .title_wrap p {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 32px;
  max-height: 64px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  color: #ffffff;
  font-size: 20px;
  margin: auto;
  font-weight: 400;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li:hover .title_wrap {
  background: rgba(13, 71, 167, 0.8);
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item > ul.card li:hover .title_wrap p {
  text-decoration: underline;
}
.special_area > .ct_wrap > div > .tab_area .tab_ct_wrap .tab_item.active {
  display: block;
}

.special_area_m {
  display: none;
  margin-top: 40px !important;
  margin-left: -16px !important;
  width: calc(100% + 32px) !important;
  max-width: calc(100% + 32px) !important;
}
@media (max-width: 768px) {
  .special_area_m {
    display: block;
  }
}
.special_area_m .swiper_wrap .special_item {
  height: 550px;
  width: 100%;
  position: relative;
  opacity: 1 !important;
  cursor: pointer;
}
.special_area_m .swiper_wrap .special_item .back_img {
  width: 100%;
  height: 100%;
}
.special_area_m .swiper_wrap .special_item .back_img > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(50%) blur(1px);
  height: 100%;
  opacity: 0.7;
}
.special_area_m .swiper_wrap .special_item .ct_wrap {
  position: absolute;
  top: 0px;
  padding: 20px;
  text-align: initial;
  width: 100%;
}
@media (max-width: 768px) {
  .special_area_m .swiper_wrap .special_item .ct_wrap {
    padding: 20px 16px;
  }
}
.special_area_m .swiper_wrap .special_item .ct_wrap > p {
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  font-family: "Noto Sans KR", sans-serif;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap {
  margin-top: 25px;
  background: #FFFFFF;
  padding: 20px 10px;
  height: 400px;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .text_wrap {
  height: 100%;
  overflow: hidden;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .text_wrap .title {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 30px;
  max-height: 90px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 18px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .text_wrap .content {
  height: calc(100% - 52px);
  overflow: hidden;
  margin-top: 10px;
  font-size: 14px;
  color: #505050;
  font-weight: 400;
  line-height: 22px;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .text_wrap.card_ex {
  height: 235px;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .text_wrap.card_ex .content {
  height: 133px;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap {
  display: none;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap > ul {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap > ul li {
  flex-grow: 1;
  height: inherit;
  overflow: hidden;
  position: relative;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap > ul li .img_wrap {
  height: inherit;
  width: 100;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap > ul li .img_wrap img {
  height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap > ul li .title_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 10px;
  display: flex;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap > ul li .title_wrap p {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 25px;
  max-height: 25px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  color: #ffffff;
  font-size: 16px;
  margin: auto;
  font-weight: 400;
}
.special_area_m .swiper_wrap .special_item .ct_wrap > .item_wrap .card_wrap.card_ex {
  display: block;
  margin-top: 10px;
  height: 110px;
}
.special_area_m .swiper_wrap .swiper-slide {
  -webkit-backface-visibility: hidden !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
}
.special_area_m .m_special_pg {
  bottom: 20px !important;
}
.special_area_m .m_special_pg > .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
}
.special_area_m .m_special_pg > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #0d47a7;
  position: relative;
  top: 2px;
}

.media_area {
  max-width: 1440px;
  margin: auto;
  height: 340px;
  position: relative;
  display: flex;
}
@media (max-width: 768px) {
  .media_area {
    height: 160px;
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
  }
}
.media_area .swiper {
  margin: auto;
  width: 90%;
}
@media (max-width: 768px) {
  .media_area .swiper {
    width: 100%;
    height: 50px;
    margin: 50px 0px;
  }
}
.media_area .swiper .swiper-wrapper .media_item {
  width: 210px;
  height: 100px;
  margin-right: 30px !important;
  border: solid 1px #d9d9d9;
  display: flex;
}
@media (max-width: 768px) {
  .media_area .swiper .swiper-wrapper .media_item {
    width: 105px;
    height: 50px;
    padding: 5px;
    margin-right: 10px !important;
  }
}
.media_area .swiper .swiper-wrapper .media_item > a {
  margin: auto;
}
@media (max-width: 768px) {
  .media_area .swiper .swiper-wrapper .media_item > a {
    max-height: 40px;
  }
}
.media_area .swiper .swiper-wrapper .media_item > a img {
  margin: auto;
  display: flex;
  max-width: 160px;
  max-height: 70px;
}
@media (max-width: 768px) {
  .media_area .swiper .swiper-wrapper .media_item > a img {
    max-width: 95px;
    max-height: 40px;
  }
}
@media (max-width: 768px) {
  .media_area .swiper .swiper-wrapper .media_item:nth-child(1) {
    margin-left: 16px;
  }
}
.media_area .arrow_btn {
  color: #0d47a7 !important;
}
.media_area .arrow_btn::after {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .media_area .arrow_btn {
    display: none;
  }
}

#mainPage .text_wrap.main_tip_area .cg_tip:not(:nth-child(1)) {
  display: none;
}

.articles_area {
  max-width: 1376px;
  margin: auto;
  text-align: initial;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .articles_area {
    padding-bottom: 100px;
  }
}
.articles_area .special_top_area {
  position: relative;
  margin-top: 20px;
  margin-left: 0px;
  width: 100%;
}
@media (max-width: 768px) {
  .articles_area .special_top_area {
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
  }
}
.articles_area .special_top_area > .img_wrap {
  padding-bottom: 50.8%;
}
.articles_area .special_top_area > .img_wrap > .cover_wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0.5) 90%, rgb(255, 255, 255) 100%);
}
.articles_area .special_top_area .top_layer {
  z-index: 10;
}
.articles_area .special_top_area > .select_wrap {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 24px;
}
@media (max-width: 768px) {
  .articles_area .special_top_area > .select_wrap {
    display: none;
  }
}
.articles_area .special_top_area > .select_wrap .select_box {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #424242;
  position: relative;
  width: 640px;
}
.articles_area .special_top_area > .select_wrap .select_box .select {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d9d9d9;
  height: 2.6rem;
  box-sizing: border-box;
  cursor: pointer;
  justify-content: space-between;
}
.articles_area .special_top_area > .select_wrap .select_box .select > span {
  display: flex;
}
.articles_area .special_top_area > .select_wrap .select_box .select > .selected {
  line-height: 2.6rem;
  padding: 0px 10px;
  overflow: hidden;
}
.articles_area .special_top_area > .select_wrap .select_box .select .icon_arrow {
  width: 2.6rem;
  height: 2.6rem;
  margin-top: -1px;
  margin-right: -1px;
  border-left: 1px solid #d9d9d9;
}
.articles_area .special_top_area > .select_wrap .select_box .select .icon_arrow img {
  width: 12px;
  margin: auto;
  transform: rotate(0deg);
}
.articles_area .special_top_area > .select_wrap .select_box .select.show .icon_arrow img {
  transform: rotate(180deg);
}
.articles_area .special_top_area > .select_wrap .select_box ul.options {
  background: #ffffff;
  max-height: 300px;
  overflow-y: auto;
  padding: 0px 10px;
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
}
.articles_area .special_top_area > .select_wrap .select_box ul.options > li {
  line-height: 34px;
  height: 34px;
  overflow: hidden;
  cursor: pointer;
}
.articles_area .special_top_area > .select_wrap .select_box ul.options > li > a {
  display: block;
  width: 100%;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.articles_area .special_top_area > .select_wrap .select_box ul.options > li:hover,
.articles_area .special_top_area > .select_wrap .select_box ul.options li.selected {
  font-weight: 700;
  text-decoration: underline;
}
.articles_area .special_top_area > .select_wrap .select_box ul#specialOption {
  width: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.8);
}
.articles_area .special_top_area > .select_wrap .select_box ul.options.show {
  display: block;
}
.articles_area .special_top_area > .select_wrap .select_box .options::-webkit-scrollbar {
  width: 10px;
}
.articles_area .special_top_area > .select_wrap .select_box .options::-webkit-scrollbar-thumb {
  background: #d9d9d9;
}
.articles_area .special_top_area > .select_wrap .select_box .options::-webkit-scrollbar-track {
  background: #ffffff;
}
.articles_area .special_top_area > .text_wrap {
  background: rgba(255, 255, 255, 0.7);
  margin-top: -100px;
  width: calc(100% - 40px);
  margin: -100px 10px 0px 20px;
  border: 1px solid #FFFFFF;
  padding: 30px;
  z-index: 10;
  position: relative;
}
@media (max-width: 768px) {
  .articles_area .special_top_area > .text_wrap {
    width: calc(100% - 32px);
    margin: -30px 10px 0px 16px;
    padding: 10px;
  }
}
.articles_area .special_top_area > .text_wrap > .title {
  font-size: 32px;
  line-height: 51.2px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  color: #121212;
  font-weight: 700;
}
@media (max-width: 768px) {
  .articles_area .special_top_area > .text_wrap > .title {
    font-size: 21px;
    line-height: 33.6px;
  }
}
.articles_area .special_top_area > .text_wrap > .contents {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28.8px;
  color: #424242;
}
@media (max-width: 768px) {
  .articles_area .special_top_area > .text_wrap > .contents {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22.4px;
  }
}
.articles_area .media_top_area {
  margin-top: 40px;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .articles_area .media_top_area {
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
    margin-top: 0px;
  }
}
.articles_area .media_top_area .content_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 40px 30px;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap {
    display: block;
    padding: 30px 20px;
  }
}
.articles_area .media_top_area .content_wrap .logo_wrap {
  grid-column: 1/2;
  height: 200px;
  width: auto;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 28px;
  display: flex;
  margin: auto 0px;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .logo_wrap {
    height: 70px;
    width: 140px;
    padding: 5px;
  }
}
.articles_area .media_top_area .content_wrap .logo_wrap a {
  margin: auto;
}
.articles_area .media_top_area .content_wrap .logo_wrap a > img {
  min-height: auto;
  max-width: 360px;
  max-height: 140px;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .logo_wrap a > img {
    min-height: auto;
    max-height: 60px;
    max-width: 120px;
  }
}
.articles_area .media_top_area .content_wrap .text_wrap {
  grid-column: 2/4;
  display: flex;
  margin: auto 0px;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap {
  display: flex;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap > span {
  display: block;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .name {
  font-size: 40px;
  margin-top: 0px;
  cursor: pointer;
  font-weight: 700;
  line-height: 160%;
  color: #121212;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .name {
    font-size: 26px;
    margin-top: 20px;
  }
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title span.url_icon {
  display: none;
  background-image: url(https://menu.mt.co.kr/pado/assets/images/link_url.svg?2b6ad74051f502537fe46adfa66aa366);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title span.url_icon {
    display: inline-block;
  }
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url {
  margin: auto auto 5px 15px;
  display: inline-block;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url a {
  display: flex;
  position: relative;
  cursor: pointer;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url a span.url_icon {
  display: block;
  background-image: url(https://menu.mt.co.kr/pado/assets/images/link_url.svg?2b6ad74051f502537fe46adfa66aa366);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: relative;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url a span.url_icon {
    display: none;
  }
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url a span.url_text {
  color: #767676;
  font-size: 12px;
  margin-left: 3px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url a .m_none {
  display: block;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title .url a .m_none {
    display: none;
  }
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title:hover .name {
  color: #0d47a7;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title:hover + .url a span.url_icon {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/link_url_active.svg?8e6d9a3d71a981009b5d47261c5d0894);
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_title_wrap .title:hover + .url a span.url_text {
  color: #0d47a7;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_contents {
  font-size: 14px;
  color: #424242;
  margin-top: 15px;
  line-height: 22.4px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .articles_area .media_top_area .content_wrap .text_wrap > div .media_contents {
    font-size: 13px;
    line-height: 20.8px;
    margin-top: 5px;
  }
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_count {
  margin-top: 20px;
  font-size: 1rem;
  color: #333333;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.articles_area .media_top_area .content_wrap .text_wrap > div .media_count .fw-bold {
  color: #121212;
}
.articles_area .search_top_area {
  background: #f5f5f5;
  width: 100%;
  padding: 40px 30px;
  margin-top: 30px;
  color: #121212;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .articles_area .search_top_area {
    padding: 20px 16px;
  }
}
.articles_area .search_top_area > div {
  display: flex;
}
.articles_area .search_top_area > div .icon_wrap {
  width: 100px;
  line-height: 64px;
  display: flex;
}
@media (max-width: 768px) {
  .articles_area .search_top_area > div .icon_wrap {
    display: none;
  }
}
.articles_area .search_top_area > div .icon_wrap > img {
  margin: auto 0;
  width: 26px;
  margin-right: 10px;
}
.articles_area .search_top_area > div .icon_wrap > span {
  font-size: 20px;
  font-weight: 700;
}
.articles_area .search_top_area > div .input_wrap {
  width: calc(100% - 180px);
  height: 64px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  display: flex;
  padding: 15px 30px;
}
@media (max-width: 768px) {
  .articles_area .search_top_area > div .input_wrap {
    padding: 10px;
  }
}
.articles_area .search_top_area > div .input_wrap > input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 18px;
}
@media (max-width: 768px) {
  .articles_area .search_top_area > div .input_wrap > input {
    font-size: 15px;
  }
}
.articles_area .search_top_area > div .input_wrap > img {
  margin-left: 10px;
  width: 16px;
  height: 16px;
  margin: auto;
  cursor: pointer;
}
@media (max-width: 768px) {
  .articles_area .search_top_area > div .input_wrap > img {
    margin-left: 10px;
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 768px) {
  .articles_area .search_top_area > div .input_wrap {
    width: calc(100% - 54px);
    height: 44px;
  }
  .articles_area .search_top_area > div .input_wrap > input {
    font-size: 15px;
  }
  .articles_area .search_top_area > div .input_wrap > img {
    width: 14px;
    height: 14px;
  }
}
.articles_area .search_top_area > div .btn_wrap {
  width: 82px;
}
.articles_area .search_top_area > div .btn_wrap > button {
  width: 100%;
  height: 100%;
  border: 1px solid #4d4d4d;
  font-size: 18px;
  background: #ffffff;
  color: #121212;
}
@media (max-width: 768px) {
  .articles_area .search_top_area > div .btn_wrap {
    width: 52px;
  }
  .articles_area .search_top_area > div .btn_wrap > button {
    width: 52px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .articles_area .search_top_area {
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
    margin-top: 15px;
  }
}
.articles_area .result_null_wrap {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.articles_area .result_null_wrap .null_text_wrap {
  height: 280px;
  display: flex;
}
@media (max-width: 768px) {
  .articles_area .result_null_wrap .null_text_wrap {
    height: 180px;
  }
}
.articles_area .result_null_wrap .null_text_wrap > p {
  margin: auto;
  font-size: 1.625rem;
  line-height: 160%;
  color: #424242;
}
@media (max-width: 768px) {
  .articles_area .result_null_wrap .null_text_wrap > p {
    font-size: 1.125rem;
  }
}
.articles_area .result_null_wrap .null_text_wrap > p .search_text {
  color: #121212;
  font-weight: 700;
}
.articles_area .result_null_wrap .null_result_info {
  width: 100%;
  background: #fafafa;
}
.articles_area .result_null_wrap .null_result_info ul {
  padding: 30px;
  font-size: 12px;
  line-height: 160%;
  color: #767676;
  list-style: disc;
  margin-left: 20px;
}
.articles_area .result_null_wrap .null_result_info ul li {
  margin-bottom: 5px;
}
.articles_area > div .search_gap_area {
  height: 60px;
}
@media (max-width: 768px) {
  .articles_area > div .search_gap_area {
    height: 20px;
  }
}
.articles_area > div .title_wrap {
  display: flex;
  padding: 30px 0px 10px;
  margin-bottom: 30px;
  justify-content: space-between;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  border-bottom: 1px solid #5e5e5e;
}
@media (max-width: 768px) {
  .articles_area > div .title_wrap {
    display: block;
    padding: 20px 0px 10px;
    margin-bottom: 0px;
  }
}
.articles_area > div .title_wrap > .title {
  font-size: 38px;
  height: 52px;
  font-weight: 700;
  color: #121212;
}
@media (max-width: 768px) {
  .articles_area > div .title_wrap > .title {
    font-size: 24px;
  }
}
.articles_area > div .title_wrap > .search_result {
  line-height: 43px;
  font-size: 22px;
  color: #424242;
}
.articles_area > div .title_wrap > .search_result p {
  line-height: 160%;
}
@media (max-width: 768px) {
  .articles_area > div .title_wrap > .search_result {
    line-height: 18px;
    font-size: 15px;
  }
}
.articles_area > div .title_wrap > .search_result strong {
  color: #121212;
}
.articles_area > div .title_wrap > .select_box {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #424242;
  position: relative;
  width: 200px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.articles_area > div .title_wrap > .select_box .select {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d9d9d9;
  height: 2.6rem;
  box-sizing: border-box;
  cursor: pointer;
  justify-content: space-between;
}
.articles_area > div .title_wrap > .select_box .select > span {
  display: flex;
}
.articles_area > div .title_wrap > .select_box .select > .selected {
  line-height: 2.6rem;
  padding: 0px 10px;
  overflow: hidden;
}
.articles_area > div .title_wrap > .select_box .select .icon_arrow {
  width: 2.6rem;
  height: 2.6rem;
  margin-top: -1px;
  margin-right: -1px;
  border-left: 1px solid #d9d9d9;
}
.articles_area > div .title_wrap > .select_box .select .icon_arrow img {
  width: 12px;
  margin: auto;
  transform: rotate(0deg);
}
.articles_area > div .title_wrap > .select_box .select.show .icon_arrow img {
  transform: rotate(180deg);
}
.articles_area > div .title_wrap > .select_box ul.options {
  background: #ffffff;
  max-height: 300px;
  overflow-y: auto;
  padding: 0px 10px;
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
}
.articles_area > div .title_wrap > .select_box ul.options > li {
  line-height: 34px;
  height: 34px;
  overflow: hidden;
  cursor: pointer;
}
.articles_area > div .title_wrap > .select_box ul.options > li > a {
  display: block;
  width: 100%;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.articles_area > div .title_wrap > .select_box ul.options > li:hover,
.articles_area > div .title_wrap > .select_box ul.options li.selected {
  font-weight: 700;
  text-decoration: underline;
}
.articles_area > div .title_wrap > .select_box ul#specialOption {
  width: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.8);
}
.articles_area > div .title_wrap > .select_box ul.options.show {
  display: block;
}
.articles_area > div .title_wrap > .select_box .options::-webkit-scrollbar {
  width: 10px;
}
.articles_area > div .title_wrap > .select_box .options::-webkit-scrollbar-thumb {
  background: #d9d9d9;
}
.articles_area > div .title_wrap > .select_box .options::-webkit-scrollbar-track {
  background: #ffffff;
}
.articles_area > div .title_wrap > .select_box .options {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-top: none;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .articles_area > div .title_wrap > .select_box {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.articles_area > div .list_wrap .item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap .item {
    display: block;
  }
}
.articles_area > div .list_wrap .item .img_wrap {
  grid-column: 1/2;
}
.articles_area > div .list_wrap .item .img_wrap:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area > div .list_wrap .item .text_wrap {
  grid-column: 2/5;
  margin: auto 0px;
  text-align: left;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap .item .text_wrap {
    margin: 10px 0px;
  }
}
.articles_area > div .list_wrap .item .text_wrap .tip_wrap .cg_tip {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
  border: 1px solid #0d47a7;
  background: transparent;
  margin-right: 5px;
}
.articles_area > div .list_wrap .item .text_wrap .list_content_wrap {
  max-height: 127px;
  overflow: hidden;
}
.articles_area > div .list_wrap .item .text_wrap .list_content_wrap:hover .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area > div .list_wrap .item .text_wrap .title {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625em;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap .item .text_wrap .title {
    font-size: 19px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 30.4px;
    max-height: 60.8px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
}
.articles_area > div .list_wrap .item .text_wrap .contents {
  display: block;
  line-height: 22.4px;
  max-height: 44.8px;
  overflow: hidden;
  margin-top: 10px;
  font-weight: 400;
  color: #505050;
  font-size: 16px;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap .item .text_wrap .contents {
    display: none;
  }
}
.articles_area > div .list_wrap .item .text_wrap .info {
  margin-top: 10px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.articles_area > div .list_wrap .item .text_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.articles_area > div .list_wrap .item .text_wrap .info .create_date {
  display: flex;
}
.articles_area > div .list_wrap .item .text_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.articles_area > div .list_wrap .item .text_wrap .info span.none,
.articles_area > div .list_wrap .item .text_wrap .info .vt_div.none {
  display: none;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap .item .text_wrap .info .media_name {
    height: 18px;
    overflow: hidden;
    word-break: break-all;
  }
}
.articles_area > div .list_wrap_hz {
  margin-top: 20px;
}
.articles_area > div .list_wrap_hz .item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.articles_area > div .list_wrap_hz .item .img_wrap {
  grid-column: 1/2;
}
.articles_area > div .list_wrap_hz .item .img_wrap:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area > div .list_wrap_hz .item .list_content_wrap {
  max-height: 120px;
  overflow: hidden;
}
.articles_area > div .list_wrap_hz .item .list_content_wrap:hover .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area > div .list_wrap_hz .item .text_wrap {
  grid-column: 2/5;
  margin: auto 0px;
  text-align: left;
}
.articles_area > div .list_wrap_hz .item .text_wrap .cg_tip {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
  border: 1px solid #0d47a7;
  background: transparent;
  margin-right: 5px;
}
.articles_area > div .list_wrap_hz .item .text_wrap .title {
  margin-top: 5px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625em;
}
.articles_area > div .list_wrap_hz .item .text_wrap .title a:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area > div .list_wrap_hz .item .text_wrap .contents {
  display: block;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 22.4px;
  max-height: 44.8px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  margin-top: 10px;
  font-weight: 400;
  color: #505050;
  font-size: 16px;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap_hz .item .text_wrap .contents {
    display: none;
  }
}
.articles_area > div .list_wrap_hz .item .text_wrap .info {
  margin-top: 10px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.articles_area > div .list_wrap_hz .item .text_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.articles_area > div .list_wrap_hz .item .text_wrap .info .create_date {
  display: flex;
}
.articles_area > div .list_wrap_hz .item .text_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.articles_area > div .list_wrap_hz .item .text_wrap .info span.none,
.articles_area > div .list_wrap_hz .item .text_wrap .info .vt_div.none {
  display: none;
}
.articles_area > div .list_wrap_hz .item .text_wrap .info .media_name,
.articles_area > div .list_wrap_hz .item .text_wrap .info .vt_div {
  display: block;
}
@media (max-width: 768px) {
  .articles_area > div .list_wrap_hz > .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
    margin-bottom: 20px;
  }
  .articles_area > div .list_wrap_hz > .item .img_wrap {
    grid-column: 1/2;
  }
  .articles_area > div .list_wrap_hz > .item .text_wrap {
    grid-column: 2/3;
    margin: auto 0px;
    text-align: left;
  }
  .articles_area > div .list_wrap_hz > .item .text_wrap .cg_tip {
    display: none;
    margin-top: 0px;
  }
  .articles_area > div .list_wrap_hz > .item .text_wrap .title {
    margin-top: 5px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27.2px;
    max-height: 54.4px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    font-size: 17px;
  }
  .articles_area > div .list_wrap_hz > .item .text_wrap .info .media_name,
  .articles_area > div .list_wrap_hz > .item .text_wrap .info .vt_div {
    display: none;
  }
}
.articles_area > div.m_none {
  display: block;
}
@media (max-width: 768px) {
  .articles_area > div.m_none {
    display: none;
  }
}
.articles_area .special_index_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 40px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .articles_area .special_index_wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
    row-gap: 20px;
  }
}
.articles_area .special_index_wrap .item .img_area {
  position: relative;
}
.articles_area .special_index_wrap .item .img_area .icon_wrap {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.4);
}
.articles_area .special_index_wrap .item .img_area .icon_wrap .icon {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 51px;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.articles_area .special_index_wrap .item .img_area .icon_wrap .icon::after {
  content: "";
  background-image: url(https://menu.mt.co.kr/pado/assets/images/count.svg?ff1f1e53b28388a9628aa4a9c19a2c38);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 28px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
}
.articles_area .special_index_wrap .item .img_area .icon_wrap.none {
  display: none;
}
.articles_area .special_index_wrap .item .img_area:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area .special_index_wrap .item .title {
  margin-top: 15px;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 44.8px;
  max-height: 89.6px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 28px;
}
@media (max-width: 768px) {
  .articles_area .special_index_wrap .item .title {
    font-size: 19px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 30.4px;
    max-height: 60.8px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
}
.articles_area .special_index_wrap .item .title a:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.articles_area .more_btn_wrap {
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .articles_area .more_btn_wrap {
    padding-top: 30px;
  }
}
.articles_area .more_btn_wrap button {
  width: 600px;
  height: 78px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
}
@media (max-width: 768px) {
  .articles_area .more_btn_wrap button {
    width: 100%;
    height: 60px;
  }
}
.articles_area .more_btn_wrap button > span {
  color: #424242;
  font-size: 24px;
  font-weight: 400;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .articles_area .more_btn_wrap button > span {
    font-size: 16px;
    font-weight: 400;
  }
}
.articles_area .more_btn_wrap button > span.icon {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/more_arrow.svg?d06415bcf26ad20654179a0ff92e7461);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
  display: inline-block;
  width: 20px;
  height: 12px;
  padding-top: 5px;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .articles_area .more_btn_wrap button > span.icon {
    background-size: 15px;
    width: 10px;
    height: 6px;
    height: 6px;
    height: 6px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .articles_area .more_btn_wrap button:hover {
    border: 1px solid #4D4D4D;
  }
  .articles_area .more_btn_wrap button:hover > span {
    font-weight: 700;
  }
}
.articles_area .more_btn_wrap.none {
  display: none;
}

.atc_top_area {
  max-width: 1143px;
  margin: auto;
  display: grid;
  margin-top: 40px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  text-align: initial;
}
@media (max-width: 768px) {
  .atc_top_area {
    margin-top: 20px;
  }
}
.atc_top_area .category .cg_tip {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
  border: 1px solid #0d47a7;
  background: transparent;
  margin-right: 5px;
}
.atc_top_area h1,
.atc_top_area h2 {
  margin: 0px;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #121212;
}
.atc_top_area h1.title {
  font-size: 42px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .atc_top_area h1.title {
    font-size: 26px;
    margin-top: 10px;
  }
}
.atc_top_area h2.subject {
  color: #121212;
  font-size: 24px;
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: -0.24px;
}
@media (max-width: 768px) {
  .atc_top_area h2.subject {
    font-size: 17px;
    margin-top: 10px;
    letter-spacing: -0.34px;
  }
}

.article_body {
  max-width: 1376px;
  margin: auto;
  text-align: initial;
  padding: 40px 0px;
  color: #121212;
  font-size: 16px;
}
@media (max-width: 768px) {
  .article_body {
    padding: 20px 0px;
  }
}
.article_body figure,
.article_body p {
  margin: 0px;
  padding: 0px;
}
.article_body .info_func {
  max-width: 1143px;
  display: flex;
  margin: auto;
  padding: 30px 0px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .article_body .info_func {
    display: block;
  }
}
@media (max-width: 768px) {
  .article_body .info_func {
    padding: 20px 0px;
  }
}
.article_body .info_func .info_wrap {
  display: flex;
  line-height: 36px;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .article_body .info_func .info_wrap {
    line-height: 24px;
  }
}
.article_body .info_func .info_wrap .info {
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.article_body .info_func .info_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.article_body .info_func .info_wrap .info .create_date {
  display: flex;
}
.article_body .info_func .info_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.article_body .info_func .info_wrap .info span.none,
.article_body .info_func .info_wrap .info .vt_div.none {
  display: none;
}
.article_body .info_func .info_wrap .info .date {
  min-width: 130px;
}
.article_body .info_func .info_wrap .info .media > span {
  height: 36px;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 768px) {
  .article_body .info_func .info_wrap .info {
    display: block;
  }
  .article_body .info_func .info_wrap .info .media > span {
    height: 24px;
    overflow: hidden;
    word-break: break-all;
  }
}
.article_body .info_func .info_wrap .info .create_date {
  min-width: 70px;
}
.article_body .info_func .info_wrap .info .create_date img {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .article_body .info_func .info_wrap .info .create_date img {
    margin-top: 5px;
  }
}
.article_body .info_func .info_wrap .info > div {
  display: flex;
}
.article_body .info_func .info_wrap .info > .date > p {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
  margin: auto 0px;
}
.article_body .info_func .info_wrap .info > .date .vt_div {
  display: block;
}
@media (max-width: 768px) {
  .article_body .info_func .info_wrap .info > .date .vt_div {
    display: none;
  }
}
.article_body .info_func .func_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 0px;
  width: 128px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
}
.article_body .info_func .func_wrap ul {
  display: flex;
  gap: 10px;
}
.article_body .info_func .func_wrap ul > li {
  cursor: pointer;
  border: 1px solid #d9d9d9;
  background: transparent;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  display: flex;
}
.article_body .info_func .func_wrap ul > li > .img {
  margin: auto;
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
}
.article_body .info_func .func_wrap ul > li.active {
  background: #0d47a7;
}
.article_body .info_func .func_wrap ul > li#fontFunc > .img {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/text_off.svg?23a658b1c5831e27f717864163b6c8dd);
}
.article_body .info_func .func_wrap ul > li.active#fontFunc > .img {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/text_on.svg?bcc0cc4f19b42ac7e5c9eb2a6ddf038b);
}
.article_body .info_func .func_wrap ul > li#shareFunc > .img {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/share_off.svg?02da052998a61f8c7e66211ff06e8efa);
}
.article_body .info_func .func_wrap ul > li.active#shareFunc > .img {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/share_on.svg?5b66b1df80ff8e57d05c1c137580734b);
}
.article_body .info_func .func_wrap ul > li#linkFunc > .img {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/link_off.svg?16443570c0c367ac78df2600891a4738);
}
.article_body .info_func .func_wrap ul > li.active#linkFunc > .img {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/link_on.svg?d3f29f7d34266acc2de25509e1a14493);
}
.article_body .info_func .func_wrap .func_tips {
  position: relative;
  width: 100%;
}
.article_body .info_func .func_wrap .func_tips .bubble {
  display: none;
  position: absolute;
  top: 50px;
  right: 0px;
  width: 164px;
  height: 94px;
  background: #ffffff;
  border-radius: 0px;
  border: #d9d9d9 solid 1px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips .bubble {
    top: 15px;
    width: 100%;
    height: 160px;
  }
}
.article_body .info_func .func_wrap .func_tips .bubble > .close_icon {
  padding: 10px;
  width: 12px;
  height: 12px;
  margin-left: auto;
  display: block;
  cursor: pointer;
  background-image: url(https://menu.mt.co.kr/pado/assets/images/bb_close.svg?f511d5c2c7021d0698404519f3ed5f88);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap {
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap {
    justify-content: center;
    gap: 5px;
    padding: 32px 20px;
  }
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button {
  width: 36px;
  height: 36px;
  max-width: 36px;
  border: 1px solid #d9d9d9;
  color: #000000;
  background: #ffffff;
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  display: flex;
  justify-content: center;
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button > span {
  margin: auto;
  color: #000000;
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.active {
  background: #EEEEEE;
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.fs_small {
  font-size: 16px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.fs_small {
    font-size: 14px;
  }
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.fs_middle {
  font-size: 18px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.fs_middle {
    font-size: 16px;
  }
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.fs_big {
  font-size: 20px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > button.fs_big {
    font-size: 18px;
  }
}
.article_body .info_func .func_wrap .func_tips .bubble > .icon_wrap > a img {
  width: 36px;
  height: 36px;
}
.article_body .info_func .func_wrap .func_tips .bubble > .link_wrap {
  padding: 5px 20px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips .bubble > .link_wrap {
    padding: 35px 20px;
  }
}
.article_body .info_func .func_wrap .func_tips .bubble > .link_wrap > div {
  width: 100%;
  height: 32px;
  border: 1px solid #d9d9d9;
  display: flex;
}
.article_body .info_func .func_wrap .func_tips .bubble > .link_wrap > div > input {
  border: none;
  width: 70%;
  height: 100%;
  padding: 5px 10px;
  color: #767676;
}
.article_body .info_func .func_wrap .func_tips .bubble > .link_wrap > div > button {
  width: 30%;
  border: 1px solid #4d4d4d;
  background: #ffffff;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-size: 14px;
  color: #121212;
  box-sizing: border-box;
  height: 30px;
  margin-left: 1px;
}
.article_body .info_func .func_wrap .func_tips .bubble:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
  z-index: 1;
  top: -8px;
}
.article_body .info_func .func_wrap .func_tips .bubble:before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: #d9d9d9 transparent;
  display: block;
  width: 0;
  z-index: 0;
  top: -9px;
}
.article_body .info_func .func_wrap .func_tips .bubble.active {
  display: block;
  z-index: 10;
}
.article_body .info_func .func_wrap .func_tips #fontBubble::after {
  left: 40px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #fontBubble::after {
    left: 10px;
  }
}
.article_body .info_func .func_wrap .func_tips #fontBubble::before {
  left: 40px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #fontBubble::before {
    left: 10px;
  }
}
.article_body .info_func .func_wrap .func_tips #shareBubble::after {
  left: 88px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #shareBubble::after {
    left: 56px;
  }
}
.article_body .info_func .func_wrap .func_tips #shareBubble::before {
  left: 88px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #shareBubble::before {
    left: 56px;
  }
}
.article_body .info_func .func_wrap .func_tips #linkBubble {
  width: 300px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #linkBubble {
    width: 100%;
  }
}
.article_body .info_func .func_wrap .func_tips #linkBubble::after {
  left: 272px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #linkBubble::after {
    left: 101px;
  }
}
.article_body .info_func .func_wrap .func_tips #linkBubble::before {
  left: 272px;
}
@media (max-width: 768px) {
  .article_body .info_func .func_wrap .func_tips #linkBubble::before {
    left: 101px;
  }
}
.article_body figure.atc_img_wrap {
  max-width: 100%;
  width: auto;
  margin-left: 0px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .article_body figure.atc_img_wrap {
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
  }
}
.article_body figure.atc_img_wrap > img {
  margin: auto;
  max-width: 100%;
}
.article_body figure.atc_img_wrap figcaption p {
  color: #767676;
  margin-top: 10px;
  font-size: 0.75em;
  line-height: 160%;
  padding: 0px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .article_body figure.atc_img_wrap figcaption p {
    padding: 0px 20px;
  }
}
.article_body figure.atc_video_wrap {
  max-width: 100%;
  width: auto;
  margin-left: 0px;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article_body figure.atc_video_wrap {
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
  }
}
.article_body figure.atc_video_wrap > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article_body p {
  max-width: 1143px;
  margin: auto;
  font-size: 1.125em;
  line-height: 180%;
  text-align: justify;
  letter-spacing: -0.01em;
  padding: 0px;
}
@media (max-width: 768px) {
  .article_body p {
    font-size: 1em;
  }
}
.article_body pre a {
  text-decoration: underline;
  color: #0d47a7;
}
.article_body .footnote > span.text {
  background: #edf4ff;
  color: #0d47a7;
  cursor: pointer;
}
.article_body .footnote > sup {
  line-height: 70%;
  color: #0d47a7;
}
.article_body .footnote.active > span.text {
  background: #0d47a7;
  color: #fff500;
}
.article_body hr {
  max-width: 1143px;
  width: auto;
  margin-left: auto;
  box-sizing: border-box;
  border: none;
  height: 1px;
  background: #4d4d4d;
}
.article_body .subheading {
  max-width: 1143px;
  font-weight: 700;
  font-size: 1.25em;
  margin: 50px auto 30px;
  line-height: 160%;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .article_body .subheading {
    font-size: 17px;
  }
}
.article_body .quote p {
  padding: 40px 0px;
  display: table;
  font-size: 1.5em;
  line-height: 180%;
  max-width: 700px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  .article_body .quote p {
    font-size: 1.125em;
    line-height: 160%;
    max-width: 100%;
  }
}
.article_body .quote p sup {
  font-size: 2em;
  color: #d9d9d9;
  line-height: 70%;
}
@media (max-width: 768px) {
  .article_body .quote p sup {
    vertical-align: middle;
  }
}
.article_body .quote p sup.begin {
  vertical-align: -35%;
  margin-right: 5px;
}
.article_body .quote p sup.end {
  vertical-align: -37%;
  margin-left: 5px;
}
.article_body .list_wrap {
  max-width: 1143px;
  margin: auto;
  font-size: 1.125em;
}
@media (max-width: 768px) {
  .article_body .list_wrap {
    font-size: 1em;
  }
}
.article_body .list_wrap .list-wrap {
  padding: 0;
}
.article_body .list_wrap .list-wrap li {
  list-style-type: none;
  counter-reset: list;
  position: relative;
  line-height: 160%;
}
.article_body .list_wrap .list-wrap li a {
  text-decoration: underline;
  color: #0d47a7;
}
.article_body .list_wrap .list-wrap li[data-depth="1"] {
  list-style: disc;
  margin: 6px 0px;
  margin-left: 2em;
}
.article_body .list_wrap .list-wrap li[data-depth="2"] {
  list-style: circle;
  margin: 2px 0px;
  margin-left: 4em;
}
.article_body .list_wrap .list-wrap li[data-depth="3"] {
  padding-inline-start: 6em;
}
.article_body .list_wrap .list-wrap li[data-depth="4"] {
  padding-inline-start: 8em;
}
.article_body .list_wrap .list-wrap li[data-depth="5"] {
  padding-inline-start: 10em;
}
.article_body .list_wrap .list-wrap li[data-list-type=ordered][data-depth="1"] + li[data-list-type=ordered][data-depth="1"],
.article_body .list_wrap .list-wrap li[data-list-type=ordered][data-depth="2"] + li[data-list-type=ordered][data-depth="2"],
.article_body .list_wrap .list-wrap li[data-list-type=ordered][data-depth="3"] + li[data-list-type=ordered][data-depth="3"],
.article_body .list_wrap .list-wrap li[data-list-type=ordered][data-depth="4"] + li[data-list-type=ordered][data-depth="4"],
.article_body .list_wrap .list-wrap li[data-list-type=ordered][data-depth="5"] + li[data-list-type=ordered][data-depth="5"] {
  counter-reset: none;
}
.article_body .edit_comment {
  color: #767676;
  max-width: 1143px;
  margin: auto;
  letter-spacing: -0.14px;
}
.article_body .edit_comment > strong {
  color: #444444;
  margin-right: 10px;
  font-size: 0.875em;
  color: #767676;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  float: left;
  line-height: 150%;
}
.article_body .edit_comment > p {
  font-size: 0.875em;
  line-height: 160%;
}
.article_body .edit_comment > button {
  padding: 8px 12px;
  display: flex;
  box-sizing: content-box;
  border: none;
  background: #0D47A7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.article_body .edit_comment > button > .label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
.article_body .edit_comment > button > .icon {
  margin-left: 8px;
  margin-top: 4px;
  background-image: url(https://menu.mt.co.kr/pado/assets/images/editor_show.svg?7681137fabe41d2f12e09a20f60d562a);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
}
.article_body .edit_comment > .comment_area {
  border: 1px solid transparent;
  color: #424242;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out, border 0.3s ease-in-out;
}
.article_body .edit_comment > .comment_area > div {
  padding: 20px;
}
@media (max-width: 768px) {
  .article_body .edit_comment > .comment_area > div {
    padding: 10px;
  }
}
.article_body .edit_comment > .comment_area p {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-size: 1em;
  line-height: 160%;
}
.article_body .edit_comment.open > button > .icon {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/editor_hide.svg?ed6c935bb3499ecab7553a0082f3b466);
}
.article_body .edit_comment.open > .comment_area {
  height: auto;
  border: 1px solid #d9d9d9;
  transition: height 0.3s ease-in-out, border 0.3s ease-in-out;
}
.article_body .inline_link a {
  color: #121212 !important;
  text-decoration: unset !important;
}
.article_body .inline_link a span {
  padding: 0 8px;
  text-align: justify;
  color: #0D47A7 !important;
  font-style: italic;
}

.article_body.fs_middle {
  font-size: 18px !important;
}

.article_body.fs_big {
  font-size: 20px !important;
}

.atc_bottom_area > .byline {
  max-width: 1143px;
  text-align: justify;
  margin: auto;
  padding: 60px 0px;
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .atc_bottom_area > .byline {
    padding: 50px 0px;
  }
}
.atc_bottom_area > .byline > ul {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 160%;
}
@media (max-width: 768px) {
  .atc_bottom_area > .byline > ul {
    font-size: 13px;
  }
}
.atc_bottom_area > .byline > ul li {
  display: flex;
  margin: 4px 0px;
}
.atc_bottom_area > .byline > ul li dt {
  color: #767676;
  font-weight: 700;
  min-width: 28px;
}
.atc_bottom_area > .byline > ul li dd {
  color: #424242;
  margin-left: 12px;
}
.atc_bottom_area > .byline > ul li dd > span.vr {
  display: inline-block;
  width: 1px;
  margin: 0px 16px;
  height: 0.75em;
  border-left: 1px solid #D9D9D9;
}
@media (max-width: 768px) {
  .atc_bottom_area > .byline > ul li dd > span.vr {
    margin: 0px 8px;
  }
}
.atc_bottom_area > .byline > ul li dd.reduce {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .atc_bottom_area > .byline > ul li dd.reduce {
    overflow: hidden;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.atc_bottom_area > .media_profile {
  background: #fafafa;
  min-height: 50px;
  margin-left: -32px;
  width: calc(100% + 64px);
}
@media (max-width: 768px) {
  .atc_bottom_area > .media_profile {
    margin-left: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
  }
}
.atc_bottom_area > .media_profile > .text_wrap {
  max-width: 1143px;
  text-align: justify;
  margin: auto;
  padding: 40px 0px;
}
@media (min-width: 769px) and (max-width: 1375px) {
  .atc_bottom_area > .media_profile > .text_wrap {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .atc_bottom_area > .media_profile > .text_wrap {
    padding: 30px 16px;
  }
}
.atc_bottom_area > .media_profile > .text_wrap .subject {
  display: flex;
  justify-content: space-between;
}
.atc_bottom_area > .media_profile > .text_wrap .subject span.title {
  color: #121212;
  font-weight: 700;
  font-size: 32px;
  text-align: left;
  line-height: 160%;
}
@media (max-width: 768px) {
  .atc_bottom_area > .media_profile > .text_wrap .subject span.title {
    font-size: 22px;
  }
}
.atc_bottom_area > .media_profile > .text_wrap .subject span.more_btn {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  color: #767676;
  min-width: 62px;
  margin-left: 20px;
  line-height: 51.2px;
}
@media (max-width: 768px) {
  .atc_bottom_area > .media_profile > .text_wrap .subject span.more_btn {
    line-height: 35.4px;
  }
}
.atc_bottom_area > .media_profile > .text_wrap .subject span.more_btn .icon {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/more_plus.svg?874624a42cdd29d9d1c73a107c323b38);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-left: 5px;
}
.atc_bottom_area > .media_profile > .text_wrap .summary {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 160%;
  color: #424242;
  margin-top: 12px;
}
.atc_bottom_area > .media_profile > .text_wrap .list {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  margin-top: 32px;
  width: 100%;
  padding: 32px;
  background-color: #ffffff;
}
.atc_bottom_area > .media_profile > .text_wrap .list > p {
  color: #121212;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}
.atc_bottom_area > .media_profile > .text_wrap .list > ul > li {
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px;
  color: #424242;
  padding: 12px 0px;
}
.atc_bottom_area > .media_profile > .text_wrap .list > ul > li > a {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .atc_bottom_area > .media_profile > .text_wrap .list {
    margin-top: 16px;
    padding: 20px 10px;
  }
  .atc_bottom_area > .media_profile > .text_wrap .list > p {
    font-size: 15px;
    padding-bottom: 10px;
  }
  .atc_bottom_area > .media_profile > .text_wrap .list > ul > li {
    font-size: 14px;
    padding: 10px 0px;
  }
}

.atc_list_area {
  max-width: 1376px;
  margin: auto;
  margin-bottom: 200px;
  margin-top: 90px;
}
@media (max-width: 768px) {
  .atc_list_area {
    margin-bottom: 100px;
  }
}
.atc_list_area > div .title_wrap {
  display: flex;
  padding: 30px 0px 10px;
  margin-bottom: 30px;
  justify-content: space-between;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  border-bottom: 1px solid #5e5e5e;
}
@media (max-width: 768px) {
  .atc_list_area > div .title_wrap {
    display: block;
    padding: 10px 0px;
    margin-bottom: 0px;
    text-align: initial;
  }
}
.atc_list_area > div .title_wrap > .title {
  font-size: 38px;
  font-weight: 700;
  color: #121212;
}
@media (max-width: 768px) {
  .atc_list_area > div .title_wrap > .title {
    font-size: 24px;
  }
}
.atc_list_area > div .atc_list_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 768px) {
  .atc_list_area > div .atc_list_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.atc_list_area > div .atc_list_wrap .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 768px) {
  .atc_list_area > div .atc_list_wrap .item {
    margin: 10px 0;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.atc_list_area > div .atc_list_wrap .item .img_wrap {
  grid-column: 1/2;
}
.atc_list_area > div .atc_list_wrap .item .img_wrap:hover + .text_wrap .title a {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap {
  grid-column: 2/4;
  margin: auto 0px;
  text-align: left;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .title {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625em;
}
@media (max-width: 768px) {
  .atc_list_area > div .atc_list_wrap .item .text_wrap .title {
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27px;
    max-height: 54px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    font-size: 1.06em;
  }
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .title a {
  text-decoration: none;
  color: initial;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .title a:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .info {
  margin-top: 10px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .info .create_date {
  display: flex;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.atc_list_area > div .atc_list_wrap .item .text_wrap .info span.none,
.atc_list_area > div .atc_list_wrap .item .text_wrap .info .vt_div.none {
  display: none;
}
@media (max-width: 768px) {
  .atc_list_area > div .atc_list_wrap .item .text_wrap .info {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .atc_list_area > div .atc_list_wrap .item:nth-child(3),
  .atc_list_area > div .atc_list_wrap .item:nth-child(4) {
    display: none;
  }
}

.poem {
  max-width: 1143px;
  margin: auto;
  margin-bottom: 10px;
  line-height: 180%;
  text-align: justify;
  letter-spacing: -0.01em;
  border: 3px solid #d9d9d9;
  position: relative;
}
.poem .icon_wrap {
  position: absolute;
  right: 30px;
  top: 40px;
  display: flex;
  gap: 6px;
}
@media (max-width: 768px) {
  .poem .icon_wrap {
    top: 30px;
    right: 15px;
  }
}
.poem .icon_wrap > span {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .poem .icon_wrap > span {
    background-size: 28px;
    width: 28px;
    height: 28px;
  }
}
.poem .icon_wrap > span.trans_icon {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/trans_off.svg?523e1f493287f5ab82e37483191009e3);
  display: block;
}
.poem .icon_wrap > span.trans_icon.on {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/trans_on.svg?c542d659228a81b11720a78a7348102c);
}
@media (max-width: 768px) {
  .poem .icon_wrap > span.enter_icon {
    display: block;
    background-image: url(https://menu.mt.co.kr/pado/assets/images/enter_off.svg?ec1855604112c7ec84bf46e43622f753);
  }
  .poem .icon_wrap > span.enter_icon.on {
    background-image: url(https://menu.mt.co.kr/pado/assets/images/enter_on.svg?65125569bbd80eee038405d565ba5955);
  }
}
.poem .poem_wrap {
  overflow-y: auto;
  padding: 60px 0px;
}
@media (max-width: 768px) {
  .poem .poem_wrap {
    padding: 70px 0px 60px;
  }
}
.poem .poem_wrap > div {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 30px;
}
@media (max-width: 768px) {
  .poem .poem_wrap > div {
    padding: 0px 10px;
  }
}
.poem .poem_wrap > div pre {
  width: 100%;
  white-space: pre;
  display: inline-block;
  max-width: none;
  color: #121212;
  letter-spacing: -0.18px;
  margin: 0px;
  font-family: "Noto Serif", "Noto Serif KR", "Noto Serif SC", "Noto Serif TC", serif;
}
.poem .poem_wrap > div .title pre {
  font-weight: 700;
  margin-bottom: 20px;
}
.poem .poem_wrap > div.show {
  display: block;
}
.poem .poem_wrap > div.hidden {
  display: none;
}
.poem .poem_wrap.enter > div pre {
  white-space: break-spaces;
}
.poem .poem_wrap::-webkit-scrollbar {
  width: 1px;
  height: 12px;
}
.poem .poem_wrap::-webkit-scrollbar-thumb {
  background: #9F9FAD;
  border-radius: 9999px;
  border: 3px solid #ffffff;
}
.poem .poem_wrap::-webkit-scrollbar-track {
  background: transparent;
}

.media_info_page {
  max-width: 1376px;
  margin: auto;
  text-align: initial;
}
.media_info_page > div {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .media_info_page > div {
    margin-top: 20px;
  }
}
.media_info_page > div section {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .media_info_page > div section {
    margin-bottom: 40px;
  }
}
.media_info_page > div section .title {
  color: #000245;
  font-size: 38px;
  margin-bottom: 30px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 768px) {
  .media_info_page > div section .title {
    font-size: 25px;
  }
}
.media_info_page > div section .sub_title {
  color: #000245;
  font-size: 22px;
  margin-top: 30px;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  font-weight: 700;
}
@media (max-width: 768px) {
  .media_info_page > div section .sub_title {
    font-size: 17px;
  }
}
.media_info_page > div section .contents {
  margin-top: 12px;
  font-size: 18px;
  line-height: 180%;
  color: #121212;
}
@media (max-width: 768px) {
  .media_info_page > div section .contents {
    margin-top: 24px;
    font-size: 15px;
  }
}
.media_info_page > div section .contents .email {
  display: flex;
  color: #121212;
}
.media_info_page > div section .contents .email > .icon {
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(https://menu.mt.co.kr/pado/assets/images/icon_mail_mo.svg?0ff0c1b225af35fa2a879cfc1c81e89a);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  margin-top: 5PX;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .media_info_page > div section .contents .email > .icon {
    margin-top: 3PX;
  }
}
.media_info_page > div section .contents .email a {
  text-decoration: underline;
}
.media_info_page > div section .contents .email:hover {
  color: #0D47A7;
}
.media_info_page > div section .contents .email:hover > .icon {
  display: block;
  background-image: url(https://menu.mt.co.kr/pado/assets/images/icon_mail_pc.svg?7861a8ca4bcfeff3e1cd48fd43ebfc30);
  background-repeat: no-repeat;
  background-position: center center;
}
.media_info_page > div section.masthead .contents dl dt {
  float: left;
  margin-right: 8px;
  color: #424242;
}
.media_info_page > div section.masthead .contents dl dd {
  color: #121212;
  font-weight: 700;
}
.media_info_page > div section.media_list .contents ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 768px) {
  .media_info_page > div section.media_list .contents ul {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.media_info_page > div section.media_list .contents ul li {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .media_info_page > div section.media_list .contents ul li {
    display: grid;
    margin-bottom: 20px;
  }
}
.media_info_page > div section.media_list .contents ul li .logo_wrap {
  min-width: 209px;
  max-width: 209px;
  height: 100px;
  border: 1px solid #d9d9d9;
  margin-right: 24px;
  display: flex;
}
@media (max-width: 768px) {
  .media_info_page > div section.media_list .contents ul li .logo_wrap {
    height: 66px;
    min-width: 100%;
    margin-right: 0px;
    padding: 10px;
  }
}
.media_info_page > div section.media_list .contents ul li .logo_wrap img {
  margin: auto;
  max-height: 70px;
  max-width: 160px;
}
@media (max-width: 768px) {
  .media_info_page > div section.media_list .contents ul li .logo_wrap img {
    width: auto;
    max-height: 46px;
    max-width: 100%;
    min-width: 10px;
  }
}
.media_info_page > div section.media_list .contents ul li .info_wrap {
  display: block;
  margin: auto 0px;
}
@media (max-width: 768px) {
  .media_info_page > div section.media_list .contents ul li .info_wrap {
    display: none;
  }
}
.media_info_page > div section.media_list .contents ul li .info_wrap .name {
  color: #121212;
  font-size: 22px;
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 35.2px;
  max-height: 70.4px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-weight: 700;
}
.media_info_page > div section.media_list .contents ul li .info_wrap .url a {
  color: #767676;
  font-size: 12px;
  display: flex;
}
.media_info_page > div section.media_list .contents ul li .info_wrap .url a img {
  margin-right: 5px;
}
.media_info_page > div section.media_list .contents ul li .info_wrap .url a > span {
  height: 32px;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.error_page {
  max-width: 1440px;
  margin: auto;
  text-align: initial;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.error_page > div {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .error_page > div {
    margin-top: 20px;
  }
}
.error_page > div .error_area_404 {
  text-align: center;
}
.error_page > div .error_area_404 .info_wrap {
  padding: 120px;
  border-bottom: 1px solid #4d4d4d;
}
@media (max-width: 768px) {
  .error_page > div .error_area_404 .info_wrap {
    padding: 60px 0px;
    padding-top: 10px;
  }
}
.error_page > div .error_area_404 .info_wrap > p:nth-child(1) {
  color: #121212;
  font-size: 36px;
  line-height: 160%;
  font-weight: 700;
}
@media (max-width: 768px) {
  .error_page > div .error_area_404 .info_wrap > p:nth-child(1) {
    font-size: 24px;
  }
}
.error_page > div .error_area_404 .info_wrap > p:nth-child(2) {
  margin-top: 30px;
  color: #424242;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 768px) {
  .error_page > div .error_area_404 .info_wrap > p:nth-child(2) {
    font-size: 16px;
  }
}
.error_page > div .error_area_404 .info_wrap > .btn_wrap {
  margin-top: 50px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 768px) {
  .error_page > div .error_area_404 .info_wrap > .btn_wrap {
    margin-top: 25px;
    gap: 5px;
  }
}
.error_page > div .error_area_404 .info_wrap > .btn_wrap > button {
  width: 280px;
  height: 69px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  font-size: 24px;
  color: #424242;
}
@media (max-width: 768px) {
  .error_page > div .error_area_404 .info_wrap > .btn_wrap > button {
    width: 140px;
    height: 50px;
    font-size: 16px;
  }
}
.error_page > div .error_area_404 .info_wrap > .btn_wrap > button > a {
  width: 100%;
  display: block;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}
.error_page > div .error_area_404 .info_wrap > .btn_wrap > button:hover {
  font-weight: 700;
  border: 1px solid #4D4D4D;
}
.error_page > div .error_area_404 .info_wrap > .btn_wrap > button.home {
  border-color: #0d47a7;
  color: #0d47a7;
}
.error_page > div .error_area_404 .info_wrap > .btn_wrap > button.home:hover {
  background-color: #0d47a7;
  color: #FFFFFF;
}
.error_page > div .error_area_500 {
  padding-bottom: 200px;
  text-align: center;
}
.error_page > div .error_area_500 > .hz_div {
  margin: 32px auto;
  width: 60px;
  height: 1px;
  border-bottom: 2px solid #d9d9d9;
}
.error_page > div .error_area_500 p.txt1 {
  color: #121212;
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 768px) {
  .error_page > div .error_area_500 p.txt1 {
    font-size: 24px;
  }
}
.error_page > div .error_area_500 p.txt2 {
  color: #424242;
  font-size: 22px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .error_page > div .error_area_500 p.txt2 {
    font-size: 16px;
  }
}
.error_page > div .article_list_area {
  margin-top: 60px;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .error_page > div .article_list_area {
    margin-top: 20px;
    margin-bottom: 80px;
  }
}
.error_page > div .article_list_area > p {
  font-size: 38px;
  font-weight: 700;
  color: #121212;
}
@media (max-width: 768px) {
  .error_page > div .article_list_area > p {
    font-size: 24px;
  }
}
.error_page > div .article_list_area > .list_wrap {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .error_page > div .article_list_area > .list_wrap {
    display: block;
  }
}
.error_page > div .article_list_area > .list_wrap .item {
  width: 33.3333333333%;
  display: block;
}
@media (max-width: 768px) {
  .error_page > div .article_list_area > .list_wrap .item {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-bottom: 20px;
  }
}
.error_page > div .article_list_area > .list_wrap .item .img_wrap:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.error_page > div .article_list_area > .list_wrap .item .text_wrap {
  text-align: left;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .error_page > div .article_list_area > .list_wrap .item .text_wrap {
    margin: auto;
    width: 100%;
  }
}
.error_page > div .article_list_area > .list_wrap .item .text_wrap .tip_wrap .cg_tip {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
  margin-right: 5px;
}
.error_page > div .article_list_area > .list_wrap .item .text_wrap .tip_wrap .cg_tip:not(:nth-child(1)) {
  display: none;
}
.error_page > div .article_list_area > .list_wrap .item .text_wrap .title {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .error_page > div .article_list_area > .list_wrap .item .text_wrap .title {
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27px;
    max-height: 54px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    margin-top: 5px;
  }
}
.error_page > div .article_list_area > .list_wrap .item .text_wrap .title a:hover {
  color: #0d47a7 !important;
  text-decoration: underline;
}

.pado_books {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  color: #121212;
  max-width: 1376px;
  margin: auto;
}
.pado_books .title_wrap {
  display: flex;
  padding: 35px 0px 15px;
  border-bottom: 1px solid #5e5e5e;
}
.pado_books .title_wrap > img {
  height: 60px;
}
@media (max-width: 768px) {
  .pado_books .title_wrap {
    padding: 28.5px 0px 16px;
  }
  .pado_books .title_wrap > img {
    height: 32px;
  }
}
.pado_books .intro_area .bookcover_wrap {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .pado_books .intro_area .bookcover_wrap {
    margin-top: 35px;
  }
}
.pado_books .intro_area .bookcover_wrap > p:nth-child(1) {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.9px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .bookcover_wrap > p:nth-child(1) {
    font-size: 17px;
    letter-spacing: -1.02px;
  }
}
.pado_books .intro_area .bookcover_wrap > p:nth-child(2) {
  margin: 24px 0px;
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -2.4px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .bookcover_wrap > p:nth-child(2) {
    margin: 15px 0px;
    font-size: 31px;
    letter-spacing: -1.86px;
  }
}
.pado_books .intro_area .bookcover_wrap > p:nth-child(3) {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1.5px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .bookcover_wrap > p:nth-child(3) {
    font-size: 19px;
    letter-spacing: -1.14px;
  }
}
.pado_books .intro_area .bookcover_wrap > img {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .bookcover_wrap > img {
    margin-top: 40px;
    width: 100%;
  }
}
.pado_books .intro_area .writer_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 100px;
  text-align: start;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap {
    display: block;
    margin-top: 60px;
    text-align: center;
  }
}
.pado_books .intro_area .writer_wrap > div.author {
  grid-column: 1/2;
  grid-row: 1/2;
}
.pado_books .intro_area .writer_wrap > div.img_henry {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.img_henry {
    margin-top: 20px;
  }
}
.pado_books .intro_area .writer_wrap > div.img_henry > img {
  width: 100%;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.img_henry > img {
    width: 160px;
  }
}
.pado_books .intro_area .writer_wrap > div.txt_henry {
  grid-column: 3/5;
  grid-row: 1/2;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.txt_henry {
    margin-top: 20px;
  }
}
.pado_books .intro_area .writer_wrap > div.txt_abraham {
  grid-column: 2/4;
  grid-row: 2/3;
  margin-top: 0;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.txt_abraham {
    margin-top: 20px;
  }
}
.pado_books .intro_area .writer_wrap > div.img_abraham {
  grid-column: 4/5;
  grid-row: 2/3;
  margin-top: 0;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.img_abraham {
    margin-top: 50px;
  }
}
.pado_books .intro_area .writer_wrap > div.img_abraham > img {
  width: 320px;
  width: 100%;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.img_abraham > img {
    width: 160px;
  }
}
.pado_books .intro_area .writer_wrap > div.list {
  grid-column: 1/2;
  grid-row: 3/4;
  margin-top: 0;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.list {
    margin-top: 60px;
  }
}
.pado_books .intro_area .writer_wrap > div.book_list {
  grid-column: 2/5;
  grid-row: 3/4;
  margin-top: 0;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.book_list {
    margin-top: 37px;
  }
}
.pado_books .intro_area .writer_wrap > div.book_list ul {
  width: 100%;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.book_list ul {
    width: 230px;
    margin: auto;
  }
}
.pado_books .intro_area .writer_wrap > div.book_list ul li {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.9px;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div.book_list ul li {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: start;
  }
}
.pado_books .intro_area .writer_wrap > div .item_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.2px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div .item_title {
    font-size: 20px;
  }
}
.pado_books .intro_area .writer_wrap > div .profile_txt {
  margin-top: 24px;
  color: #626262;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.9px;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .pado_books .intro_area .writer_wrap > div .profile_txt {
    margin-top: 20px;
    font-size: 15px;
    text-align: start;
  }
}
.pado_books .intro_area .infroduction_wrap {
  margin-top: 100px;
  background: #FAFAFA;
  padding: 100px 0px;
  width: 100%;
}
@media (max-width: 768px) {
  .pado_books .intro_area .infroduction_wrap {
    margin-top: 50px;
    padding: 50px 0px;
    margin-left: -16px;
    width: calc(100% + 32px);
  }
}
.pado_books .intro_area .infroduction_wrap .text {
  width: 70%;
  margin: auto;
  font-family: "Noto Serif KR", serif;
  text-align: start;
  font-size: 24px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.9px;
  word-break: auto-phrase;
}
@media (max-width: 768px) {
  .pado_books .intro_area .infroduction_wrap .text {
    width: 100%;
    font-size: 15px;
    max-width: 450px;
    margin: 0px auto;
    padding: 0px 32px;
  }
}
@media (max-width: 768px) {
  .pado_books .intro_area .link_wrap {
    margin-top: 60px;
  }
}
.pado_books .intro_area .link_wrap > p {
  margin: 100px 0px 40px 0px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.2px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .link_wrap > p {
    margin: 50px 0px 20px 0px;
    font-size: 20px;
  }
}
.pado_books .intro_area .link_wrap > ul {
  border-radius: 10px;
  border: 1px solid #9d9d9d;
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pado_books .intro_area .link_wrap > ul {
    max-width: 500px;
  }
}
.pado_books .intro_area .link_wrap > ul > li {
  height: 100px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .link_wrap > ul > li {
    height: 50px;
  }
}
.pado_books .intro_area .link_wrap > ul > li a {
  width: 100%;
  height: 100%;
  display: block;
}
.pado_books .intro_area .link_wrap > ul > li a .icon_wrap {
  margin: 0px 26px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
}
.pado_books .intro_area .link_wrap > ul > li a .icon_wrap > label {
  margin: auto 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.72px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .pado_books .intro_area .link_wrap > ul > li a .icon_wrap > label {
    font-size: 15px;
  }
  .pado_books .intro_area .link_wrap > ul > li a .icon_wrap > label > img.kyobo {
    width: 75.5px;
  }
  .pado_books .intro_area .link_wrap > ul > li a .icon_wrap > label > img.yes24 {
    width: 60px;
  }
  .pado_books .intro_area .link_wrap > ul > li a .icon_wrap > label > img.aladin {
    width: 75px;
  }
}
.pado_books .intro_area .link_wrap > ul > li a .icon_wrap .arrow {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/arrow.svg?c2b4d514ba5a004c15ba7d17eaf6afc9);
  width: 48px;
  height: 48px;
  background-size: 48px 48px;
}
@media (max-width: 768px) {
  .pado_books .intro_area .link_wrap > ul > li a .icon_wrap .arrow {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
}
.pado_books .intro_area .link_wrap > ul > li a .icon_wrap.border_none {
  border-bottom: none;
}
.pado_books .intro_area .link_wrap > ul > li:hover {
  border: 1px solid #0d47a7;
  border-radius: 10px;
}
.pado_books .intro_area .link_wrap > ul > li:hover a .icon_wrap .arrow {
  background-image: url(https://menu.mt.co.kr/pado/assets/images/arrow_hover.svg?46b9ebeedd54d3b903b5d5f6121371f8);
}
.pado_books .related_area {
  margin-top: 85px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .pado_books .related_area {
    margin-bottom: 60px;
  }
}
.pado_books .related_area .title_wrap .title {
  color: #121212;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.38px;
}
@media (max-width: 768px) {
  .pado_books .related_area .title_wrap .title {
    font-size: 24px;
    letter-spacing: -0.24px;
  }
}
.pado_books .related_area .list_wrap .item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.pado_books .related_area .list_wrap .item .img_wrap {
  grid-column: 1/2;
}
@media (max-width: 768px) {
  .pado_books .related_area .list_wrap .item .img_wrap {
    grid-column: 1/3;
  }
}
.pado_books .related_area .list_wrap .item .img_wrap:hover + .text_wrap .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.pado_books .related_area .list_wrap .item .text_wrap {
  grid-column: 2/5;
  margin: auto 0px;
  text-align: left;
}
@media (max-width: 768px) {
  .pado_books .related_area .list_wrap .item .text_wrap {
    grid-column: 3/5;
  }
}
.pado_books .related_area .list_wrap .item .text_wrap .tip_wrap .cg_tip {
  font-size: 0.875rem;
  display: inline-block;
  background: #edf4ff;
  padding: 0.5rem 0.75rem;
  color: #0d47a7;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  cursor: default;
  margin-bottom: 5px;
  border: 1px solid #0d47a7;
  background: transparent;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .pado_books .related_area .list_wrap .item .text_wrap .tip_wrap {
    display: none;
  }
}
.pado_books .related_area .list_wrap .item .text_wrap .list_content_wrap {
  max-height: 127px;
  overflow: hidden;
}
.pado_books .related_area .list_wrap .item .text_wrap .list_content_wrap:hover .title {
  color: #0d47a7 !important;
  text-decoration: underline;
}
.pado_books .related_area .list_wrap .item .text_wrap .title {
  font-weight: 700;
  color: #121212;
  letter-spacing: -0.01em;
  line-height: 41.6px;
  max-height: 83.2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  font-size: 1.625em;
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .pado_books .related_area .list_wrap .item .text_wrap .title {
    font-size: 17px;
    margin-top: 0px;
    font-weight: 700;
    color: #121212;
    letter-spacing: -0.01em;
    line-height: 27px;
    max-height: 54px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
  }
}
.pado_books .related_area .list_wrap .item .text_wrap .contents {
  display: block;
  line-height: 22.4px;
  max-height: 44.8px;
  overflow: hidden;
  margin-top: 10px;
  font-weight: 400;
  color: #424242;
  font-size: 16px;
}
@media (max-width: 768px) {
  .pado_books .related_area .list_wrap .item .text_wrap .contents {
    display: none;
  }
}
.pado_books .related_area .list_wrap .item .text_wrap .info {
  margin-top: 10px;
  display: flex;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  color: #767676;
}
.pado_books .related_area .list_wrap .item .text_wrap .info .vt_div {
  width: 1px;
  border-left: 1px solid #d9d9d9;
  height: 12px;
  margin: auto 10px;
}
.pado_books .related_area .list_wrap .item .text_wrap .info .create_date {
  display: flex;
}
.pado_books .related_area .list_wrap .item .text_wrap .info .create_date img {
  margin-right: 5px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.pado_books .related_area .list_wrap .item .text_wrap .info span.none,
.pado_books .related_area .list_wrap .item .text_wrap .info .vt_div.none {
  display: none;
}
@media (max-width: 768px) {
  .pado_books .related_area .list_wrap .item .text_wrap .info .media_name {
    height: 18px;
    overflow: hidden;
    word-break: break-all;
  }
}
