html,
body {
  max-width: 100%;
}

@media all and (max-width: 992px) {
  .container.md-fluid {
    padding: 0 15px;
    max-width: 100%;
  }
}

.scroll_wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 18px;
}
@media all and (max-width: 992px) {
  .scroll_wrapper {
    overflow-x: auto;
    width: 100vw;
    position: relative;
    left: -15px;
    margin-bottom: 30px;
  }
}

.tab_list.horizon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
  min-width: calc(100% - 30px);
  margin-bottom: 0;
  padding: 5px;
  background-color: white;
  border-radius: 10px;
}
.tab_list.horizon .tab_list__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
.tab_list.horizon .tab {
  position: relative;
  width: auto;
  height: 100%;
  border: 0px;
  z-index: 1;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
.tab_list.horizon .tab .hover_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tab_list.horizon .tab .hover_box div {
  text-align: center;
  padding: 8px 24px;
  word-break: keep-all;
  white-space: nowrap;
}
.tab_list.horizon .tab .hover_box div span {
  font-size: 15px;
  font-weight: 400;
}
@media all and (min-width: 767.9px) {
  .tab_list.horizon .tab .hover_box:hover {
    background-color: rgba(124, 124, 124, 0.1);
  }
}
.tab_list.horizon .tab.active::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  bottom: 2px;
  border-bottom: 1px solid #40AB8E;
  width: 100%;
}
.tab_list.horizon .tab.active::after {
  content: "";
  height: 5px;
  background-color: #40AB8E;
  display: block;
  width: 60px;
  margin-top: -5px;
  margin-left: 0;
}
.tab_list.horizon .tab.active .hover_box div {
  padding-left: 60px;
}
.tab_list.horizon .tab.active .hover_box div::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 15px;
  left: 0;
  background: url(../images/title.svg) no-repeat center/cover;
  height: 40px;
  width: 50px;
}
.tab_list.horizon .shift_box {
  width: 102px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(238, 238, 238);
  border-radius: 10px;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media all and (max-width: 991.9px) {
  .tab_list.horizon {
    margin-left: 0px;
    margin-bottom: 0px;
  }
  .tab_list.horizon .tab {
    font-size: 16px;
  }
  .tab_list.horizon .tab .hover_box div span {
    font-size: 14px;
  }
}

.mastery-content .mastery-list .grid-item:hover::after {
  top: 100%;
}

.author_card {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.author_card .img_box {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.author_card .img_box::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.author_card .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.author_card .img_box:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}
.author_card .content_box {
  padding: 16px;
}
.author_card .title {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}
.author_card .description {
  min-height: 72px;
  margin-bottom: 16px;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
}
.author_card a.link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 4px 16px;
  font-size: 0.875rem;
  border: 1px solid #333333;
}

.celebrity-list .main-title .title-wrap h2::before {
  content: none;
}

.author_info {
  width: 100%;
  border-left: 3px solid #DC000C;
  margin-bottom: 30px;
  padding: 40px;
  border-radius: 0 24px 24px 0;
  background-color: #f5f5f5;
}
.author_info .img_box {
  position: relative;
  width: 25%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 15px;
}
.author_info .img_box::before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.author_info .img_box img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  height: auto;
}
.author_info .content_box {
  width: 75%;
  padding: 0 15px;
  overflow: hidden;
}
.author_info .content_box .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.author_info .content_box .title {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: bold;
}
.author_info .content_box .description {
  font-size: 1.125rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-animation: all 0.3s ease;
          animation: all 0.3s ease;
  white-space: pre-wrap;
}
.author_info .toggle_btn {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  cursor: pointer;
}
.author_info .toggle_btn::after {
  content: "\f077";
  display: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.author_info .toggle_btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
}
.author_info .toggle_btn:hover {
  background-color: rgba(170, 170, 170, 0.5490196078);
}
.author_info.-open .content_box .description {
  max-height: none !important;
  -webkit-line-clamp: 999 !important;
}
.author_info.-open .toggle_btn svg {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
@media all and (max-width: 991.9px) {
  .author_info {
    padding: 15px;
  }
  .author_info .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .author_info .img_box {
    width: 50%;
    min-width: 250px;
    margin-bottom: 15px;
  }
  .author_info .content_box {
    width: 100%;
  }
  .author_info .content_box .title {
    margin-bottom: 12px;
    font-size: 1.25rem;
    text-align: center;
  }
  .author_info .content_box .description {
    font-size: 0.875rem;
  }
}
.author_info.pg_detail .img_box {
  width: 15%;
}
.author_info.pg_detail .content_box .title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.author_info.pg_detail .content_box .description {
  max-height: 82px;
  font-size: 1rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-animation: all 0.3s ease;
          animation: all 0.3s ease;
}
@media all and (max-width: 991.9px) {
  .author_info.pg_detail .content_box .title {
    font-size: 1.125rem;
    text-align: center;
  }
  .author_info.pg_detail .content_box .description {
    font-size: 0.875rem;
  }
}

.tag-box {
  text-align: end;
}
.tag-box .tag {
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 0;
  color: #212121;
  background-color: #E5EEF6;
  -webkit-transition: 0s;
  transition: 0s;
}
.tag-box .tag:hover {
  color: #0069AA;
  background-color: #cce2f5;
}

.item-group {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .item-group .item .img-box span {
    font-size: 0.8125rem;
  }
}
.item-group .item .right-box a.catagory {
  display: block;
  height: auto;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}
.item-group .item .right-box a.catagory:hover {
  color: #40AB8E;
}
@media (max-width: 767.8px) {
  .item-group .item .right-box a.catagory {
    font-size: 0.925rem;
    margin-bottom: 2px;
  }
}
.item-group .item .right-box .text-box .title-and-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.item-group .item .right-box .text-box .title-and-content > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.item-group .item .right-box .text-box .title-and-content > a p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.item-group .item .right-box .author-box p {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .item-group .item .right-box .author-box p {
    display: block;
    margin-bottom: 0;
  }
}
.item-group .item .right-box .author-box span,
.item-group .item .right-box .author-box a {
  display: inline;
  margin-left: 5px;
}

.article-title .author-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0;
  margin-bottom: 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.article-title .author-box p {
  display: inline;
  white-space: nowrap;
}
.article-title .author-box .catagory {
  margin-right: 15px;
  white-space: nowrap;
  text-decoration: none;
}
.article-title .author-box a {
  -webkit-transition: 0s;
  transition: 0s;
}
@media (max-width: 767.98px) {
  .article-title .author-box .catagory {
    font-size: 0.8rem;
  }
}
@media (max-width: 575.98px) {
  .article-title .author-box {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.article-content .relative-article .img-box {
  position: relative;
}
.article-content .relative-article .img-box span {
  position: absolute;
  z-index: 5;
  display: inline-block;
  padding: 3px 16px 6px 10px;
  font-size: 1rem;
  background: url(../images/tag01.png) no-repeat right top/cover;
  color: #fff;
  top: 5px;
  left: 0px;
}
.article-content .relative-article .img-box span.fame-tag {
  background: url(../images/tag02.png) no-repeat right top/cover;
}
.article-content .relative-article .catagory {
  margin: 0 0 4px;
  color: #212121;
}
.article-content .relative-article .author-box {
  margin-top: 10px;
  font-size: 0.8rem;
}
.article-content .relative-article .author-box p {
  display: inline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.tab-list {
  width: 100%;
  word-break: keep-all;
  margin: 0 auto 50px;
  text-align: center;
}
.tab-list .tab-item {
  display: inline-block;
  width: auto;
  padding: 0.3rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  color: #212121;
  margin: 10px;
}
.tab-list .tab-item.active, .tab-list .tab-item:hover {
  border-color: #FFE900;
  background-color: #FFE900;
}

.news-tab-slide {
  position: relative;
  margin-bottom: 50px;
  padding: 0 30px;
}
.news-tab-slide .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.news-tab-slide .tab-item {
  display: inline-block;
  width: auto;
  padding: 0.3rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  color: #212121;
  word-break: keep-all;
}
.news-tab-slide .tab-item.active, .news-tab-slide .tab-item:hover {
  border-color: #FFE900;
  background-color: #FFE900;
}
.news-tab-slide a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.news-tab-slide .swiper-button-next,
.news-tab-slide .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: black;
  background-color: rgba(0, 0, 0, 0.1);
}
.news-tab-slide .swiper-button-next svg,
.news-tab-slide .swiper-button-prev svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.news-tab-slide .swiper-button-prev {
  left: -15px;
}
.news-tab-slide .swiper-button-next {
  right: -15px;
}
@media (max-width: 767.98px) {
  .news-tab-slide {
    padding: 0 36px;
  }
  .news-tab-slide .swiper-button-prev {
    left: 0px;
  }
  .news-tab-slide .swiper-button-next {
    right: 0px;
  }
}

.pgs_list_wrapper {
  position: relative;
  left: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.pgs_list_wrapper .pgs_list {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  margin: 0 auto 15px;
}
.pgs_list_wrapper .pgs_list span {
  display: inline;
  margin-bottom: 0;
}
.pgs_list_wrapper .pgs_list li {
  width: 36px;
  height: 36px;
  display: inline-block;
}
.pgs_list_wrapper .pgs_list li a {
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  padding: 4px;
}
.pgs_list_wrapper .pgs_list li:hover {
  background-color: rgba(110, 110, 110, 0.1);
}
.pgs_list_wrapper .pgs_list li.current a {
  color: #DA004C;
}
.pgs_list_wrapper .pgs_input {
  display: inline-block;
  padding-left: 20px;
}
.pgs_list_wrapper .pgs_input input,
.pgs_list_wrapper .pgs_input span {
  display: inline-block;
}
.pgs_list_wrapper .pgs_input input {
  width: 50px;
  padding: 0.3rem;
  text-align: center;
}
.pgs_list_wrapper .pgs_input span {
  font-weight: bold;
}
.pgs_list_wrapper input::-webkit-outer-spin-button,
.pgs_list_wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pgs_list_wrapper input[type=number] {
  -moz-appearance: textfield;
}
@media (max-width: 575.8px) {
  .pgs_list_wrapper {
    left: 0;
  }
  .pgs_list_wrapper .pgs_list li {
    width: 30px;
    height: 30px;
  }
  .pgs_list_wrapper .pgs_list li span {
    font-size: 15px;
    padding: 4px;
  }
  .pgs_list_wrapper .pgs_input {
    padding-left: 15px;
  }
}

header .main-nav ul li a.navLink {
  max-width: 128px;
}

.is-mobile-mode .side-nav {
  right: 0;
}
.is-mobile-mode .side-nav .click-bg {
  right: 0;
  opacity: 1;
}

.side-nav {
  position: absolute;
  right: -100%;
  top: 0;
  padding-top: 50px;
  padding-left: 2rem;
  width: 65%;
  height: 100vh;
  background-color: #212121;
  -webkit-transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.side-nav.-open {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.side-nav .nav-list {
  width: 100%;
  max-height: 100%;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}
.side-nav .nav-list .nav-list-item {
  width: 100%;
  border-bottom: 1px solid white;
  overflow: hidden;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  cursor: pointer;
}
.side-nav .nav-list .nav-list-item > a,
.side-nav .nav-list .nav-list-item > form,
.side-nav .nav-list .nav-list-item > button {
  width: 100%;
  padding: 1rem 1rem 1rem 0;
  text-align: left;
  color: #fff;
  background-color: inherit;
  border: none;
}
.side-nav .nav-list .nav-list-item .nav-item.active {
  color: #40AB8E;
}
.side-nav .nav-list .nav-list-item:nth-last-child(-n+3) {
  border-bottom: none;
}
.side-nav .nav-list .nav-list-item .collapse-list-btn {
  cursor: pointer;
  position: relative;
}
.side-nav .nav-list .nav-list-item .collapse-list-btn svg {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.side-nav .nav-list .nav-list-item .collapse-list-btn.collapsed svg {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.side-nav .nav-list .nav-list-item .collapse-list {
  padding: 0px 0.5rem 1rem;
}
.side-nav .nav-list .nav-list-item .collapse-list .collapse-list-item a {
  padding: 8px;
  color: white;
}
.side-nav .nav-list .search-box input {
  width: 90%;
}
.side-nav .nav-list .search-box button {
  position: absolute;
  right: 10%;
  top: 0;
  padding: 0.3rem 0.75rem;
  border: none;
  background-color: transparent;
  color: #212121;
}
.side-nav .click-bg {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -30px;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.side-nav .sns-box .icon-link.line-btn {
  padding: 0;
  color: #fff;
}
.side-nav .sns-box .icon-link.fb-btn {
  padding: 0;
  color: #fff;
}

@media (min-width: 992px) {
  .web-display {
    display: block;
  }
  .mob-display {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .web-display {
    display: none;
  }
  .mob-display {
    display: block;
  }
  header .container {
    position: relative;
    max-width: 100%;
  }
  header .nav-top {
    border: none;
  }
  header .main-nav {
    display: none;
  }
}
.edit-block .blog-grid-group a {
  display: inline;
}
.edit-block .share-btn-group a {
  display: block;
}

@media (max-width: 767.98px) {
  .edit-block .share-btn-group {
    display: none;
  }
}
@media (min-width: 767.98px) {
  .newShare {
    display: none;
  }
}
.cookie {
  width: 100% !important;
  padding: 0;
  overflow: hidden !important;
}
.cookie .swal2-popup.swal2-toast {
  width: 100%;
  max-width: none;
  display: block !important;
  overflow: hidden !important;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.7);
}
.cookie .swal2-popup.swal2-toast .swal2-title {
  display: block !important;
  color: white;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}
.cookie .swal2-popup.swal2-toast .swal2-content {
  color: white;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.875rem;
}
.cookie .swal2-popup.swal2-toast .swal2-actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cookie .swal2-popup.swal2-toast .swal2-styled.swal2-confirm {
  font-size: 1rem;
  padding: 6px 16px;
  background-color: #DC000C;
}
/*# sourceMappingURL=style2023.css.map */