@charset "utf-8";

/* 수정 시 view_contents_cms.css 동일하게 싱크 작업 필요 */

/* ===================================== 
  본문요소
    제목, 부제
    이미지, 이미지 크게보기
    본문, 중제, 편집자주1, 편집자주2, 인용1, 인용2, 박스1, 박스2, 화보, 파일첨부
===================================== */

/* 제목 */
.article-head .title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
}

/* 부제 */
.article-head .subtitle,
.article-text .subtitle {
  display: block;
  margin-top: 17px;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  color: #111;
}
.article-text .subtitle {
  margin-top: 40px;
  font-size: 21px;
}
.article-text {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .article-head .title {
    font-size: 25px;
    font-weight: 900;
  }
  .article-head .subtitle {
    font-size: 16px;
  }
  .article-text .subtitle {
    font-size: 20px;
  }
}

 /* 이미지 */
.image-area img {
  width: 100%;
}
.image-area figcaption {
  position: relative;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.62;
  color: #666;
  text-align: left;
  font-weight: normal;
  display: table-caption;
  caption-side: bottom;
}

/*
  options
    size : w-1500, w-1200, w-970, w-860, w-840
*/
.image-area.w-1500 {
  margin-left: -450px;
  margin-right: -450px;
}
.image-area.w-1200 {
 margin-left: -300px;
 margin-right: -300px;
}
.image-area.w-970 {
  margin-left: -195px;
  margin-right: -195px;
}
.image-area.w-860 {
  margin-left: -140px;
  margin-right: -140px;
}
.image-area.w-840 {
 margin-left: -130px;
 margin-right: -130px;
}
@media screen and (max-width: 1560px) {
  .image-area.w-1500 {
    margin-left: -300px;
    margin-right: -300px;
  }
}
@media screen and (max-width: 1760px) {
  .wrapper.photo .image-area.w-970 {
    margin-left: -150px;
    margin-right: -150px;
  }
}
@media screen and (max-width: 1279px) {
  .image-area.w-1500 {
    margin-left: -100px;
    margin-right: -100px;
  }
}
@media screen and (max-width: 1023px) {
  .image-area.w-970 {
    margin-left: -94px;
    margin-right: -94px;
  }
  .image-area.w-860 figcaption {
    padding: 0 20px;
  }
}
@media screen and (max-width: 900px) {
  .image-area.w-1500 {
    margin-left: -50px;
    margin-right: -50px;
  }
  .image-area.w-840 {
    margin-left: -80px;
    margin-right: -80px;
  }
}
@media screen and (max-width: 767px) {
  .image-area {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .image-area figcaption {
    padding: 0 20px !important;
  }
}

.article-text .image-area {
  margin-top: 50px;
  margin-bottom: 50px;
  line-height: 0;
  font-size: 0;
  text-align: center;
  display: table;
}
/* 이미지 좌우 정렬 */
.article-text .image-area.left {
  float: left;
  margin-top: 0;
  margin-bottom: 20px;
  margin-right: 20px;
}
.article-text .image-area.right {
  float: right;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 20px;
}
.article-text .text {
  margin: 40px 0;
  font-size: 18px;
  line-height: 1.86;
  color: #2a2a2a;
}
.article-text .text a {
  display: inline-block;
  text-decoration: underline;
  color: #00B8B1;
  word-break: break-all;
}
.article-text .text a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .article-text .image-area.left {
    margin-right: 20px !important;
    margin-left: 0 !important;
  }
  .article-text .image-area.right {
    margin-left: 20px !important;
    margin-right: 0 !important;
  }
}

/* 이미지 크게보기 */
.image-area .zoom-btn {
  position: absolute;
  right: 10px;
  top: -70px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 1;
  font-size: 0;
  line-height: 0;
}
.image-area .zoom-btn:hover {
  background-color: #FFFFFF1A;
}
/* 이미지 크게보기 팝업 */
.image-zoom-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.image-zoom-popup:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
}
.image-zoom-popup .thumbnail {
  position: absolute;
  left: 180px;
  right: 180px;
  top: 0;
  bottom: 0;
  max-width: calc(100% - 8vw);
}
.image-zoom-popup .thumbnail .thumbnail:before {
  min-height: 100vh;
}
.image-zoom-popup .zoom-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 50;
}
.image-zoom-popup .zoom-btn svg {
  width: 20px;
  height: 20px;
}
.image-zoom-popup .zoom-btn svg line {
  stroke: rgba(255, 255, 255, 0.6);
}
.image-zoom-popup .zoom-btn:hover {
  background-color: #FFFFFF1A;
}
.image-zoom-popup.is-active {
  opacity: 1;
  pointer-events: initial;
}
@media screen and (max-width: 1023px) {
  .image-area .zoom-btn {
    display: none;
  }
  .image-zoom-popup {
    display: none;
  }
}

/* 중제1 */
.article-text .cont-midtitle {
  display: block;
  margin: 30px 0 44px;
}

/* 중제2 */
.article-text .cont-midtitle.type1 .text {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: normal;
  color: #111;
}
.article-text .cont-midtitle.type2 {
  padding: 18px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.article-text .cont-midtitle.type2 .text {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: normal;
  color: #111;
}

/* 편집자주1 */
.article-text .cont-desc {
  position: relative;
  margin: 50px 0 20px;
  padding: 50px 30px 20px;
  border: 1px solid #121212;
  font-size: 18px;
  line-height: 2.1;
  color: #2a2a2a;
}
.article-text .cont-desc:after {
  content: "";
  display: block;
  clear: both;
}
.article-text .cont-desc + .cont-desc {
  margin-top: 20px;
}
.article-text .cont-desc.type1:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 30px;
  height: 4px;
  width: 30px;
  background: #121212;
}
.article-text .cont-desc .text {
  margin-top: 0;
}
.article-text .cont-desc .text:last-child {
  margin-bottom: 0;
}
.article-text .cont-desc .image-area {
  margin-top: 0;
}
.article-text .cont-desc .image-area:last-child {
  margin-bottom: 0;
}

/* 편집자주2 */
.article-text .cont-desc.type2 {
  padding-top: 63px;
}
.article-text .cont-desc.type2:before {
  content: "편집자주";
  position: absolute;
  top: 25px;
  left: 30px;
  padding: 3px 8px;
  border: 1px solid #121212;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: normal;
  color: #2a2a2a;
}

/* 인용1 */
.article-text .quote.type1 {
  position: relative;
  display: block;
  margin: 50px auto 70px;
  padding: 40px 60px;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
}
.article-text .quote.type1:before {
  content: "“";
  position: absolute;
  top: -14px;
  left: 0;
  padding: 0 10px;
  font-size: 50px;
  font-family: 'Noto Serif KR';
  background-color: #fff;
  line-height: 1;
  z-index: 1;
}
.article-text .quote.type1:after {
  content: "”";
  position: absolute;
  bottom: -36px;
  right: 0;
  padding: 0 10px;
  font-size: 50px;
  font-family: 'Noto Serif KR';
  background-color: #fff;
  line-height: 1;
  z-index: 1;
}
.article-text .quote.type1 .text {
  font-family: 'Noto Serif KR';
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.7;
}

/* 인용2 */
.article-text .quote.type2 {
  position: relative;
  display: block;
  margin-left: 20px;
  padding: 25px;
  border: 1px solid #121212;
  border-radius: 30px;
  border-top-left-radius: 0;
}
.article-text .quote.type2:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -20px;
  width: 28px;
  height: 20px;
  border-top: 1px solid #000;
  background-color: #fff;
}
.article-text .quote.type2:before {
  content: "";
  position: absolute;
  top: 9px;
  left: -25px;
  width: 28px;
  height: 1px;
  border-top: 1px solid #000;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: 1;
}
.article-text .quote.type2 .text {
  font-size: 18px;
  line-height: 2.1;
}
.article-text .quote .text {
  margin-top: 0;
}
.article-text .quote .text:last-child {
  margin-bottom: 0;
}
.article-text .quote .image-area {
  margin-top: 0;
}
.article-text .quote .image-area:last-child {
  margin-bottom: 0;
}

/* 박스1 */
.article-text .cont-box {
  position: relative;
  margin: 50px 0 70px;
  letter-spacing: normal;
  color: #2a2a2a;
  line-height: 2.24;
}
.article-text .cont-box:after {
  content: "";
  display: block;
  clear: both;
}
.article-text .cont-box.type1 {
  padding: 25px 30px 18px;
  border: 1px solid #121212;
}
.article-text .cont-box.type1 .text {
  font-size: 17px;
  font-family: 'Noto Serif KR';
  font-weight: bold;
}

/* 박스2 */
.article-text .cont-box.type2 {
  border-radius: 15px;
  padding: 30px;
  font-size: 18px;
  background-color: #F8F8F8;
}
.article-text .cont-box .text {
  margin-top: 0;
}
.article-text .cont-box .text:last-child {
  margin-bottom: 0;
}
.article-text .cont-box .image-area:not(.left, .right) {
  margin-top: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.article-text .cont-box .image-area:last-child {
  margin-bottom: 0;
}

/* 화보 */
.series-photo-wrap {
  position: relative;
  margin: 50px 0 70px;
  margin-left: -127px;
  margin-right: -127px;
}
.series-photo-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.series-photo-wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #12121280;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  z-index: 1;
}
.series-photo-title {
  position: absolute;
  bottom: 110px;
  display: block;
  margin-left: 25px;
  margin-bottom: -10px;
  padding-right: 25px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  pointer-events: none;
  transition: 0.2s;
  z-index: 2;
}
.seires-photo-item {
  position: relative;
}
.seires-photo-item a {
  opacity: 0;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 17px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
  background-color: #FFFFFF4D;
  z-index: 10;
}
.series-photo-wrap:hover:after,
.series-photo-wrap:focus-within:after {
  opacity: 1;
}
.series-photo-wrap:hover .seires-photo-item a,
.series-photo-wrap:focus-within .seires-photo-item a {
  opacity: 1;
}
.series-photo-wrap:hover .series-photo-title {
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .series-photo-wrap {
    margin-left: -80px;
    margin-right: -80px;
  }
}

/* 파일첨부 */
.attached {
  position: relative;
  margin: 50px 0 70px;
}
.attached a {
  display: inline-block;
  min-width: 310px;
  padding: 11px 86px 11px 20px;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.15s;
  background: url(../images/icon/download.svg) no-repeat calc(100% - 30px) center / 18px #f9f9f9;
}
.attached a:hover {
  background-color: #f1f1f1;
}
.attached a + a {
  margin-top: 18px;
}

@media screen and (max-width: 1023px) {
  .seires-photo-item a {
    padding: 11px 16px;
    font-size: 17px;
    opacity: 1;
  }
  .series-photo-wrap:after {
    display: none;
  }
  .series-photo-title {
    bottom: 100px;
    font-size: 18px;
    pointer-events: initial;
  }
  .article-text .text {
    font-size: 17px;
    line-height: 1.7;
  }
  .article-text .cont-desc .text {
    font-size: 17px;
    line-height: 1.7;
  }
  .article-text .cont-midtitle.type1 .text {
    font-size: 23px;
  }
  .article-text .cont-midtitle.type2 .text {
    font-size: 21px;
  }
  .article-text .quote.type2 .text {
    font-size: 17px;
    line-height: 1.7;
  }
  .article-text .cont-box.type1 .text {
    line-height: 1.7;
  }
  .article-text .cont-box.type2 .text {
    font-size: 17px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .series-photo-wrap {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .series-photo-wrap:after {
    transition: none;
    display: block;
    opacity: 1;
  }
  .series-photo-title {
    bottom: unset;
    top: 20px;
  }
  .series-photo-wrap:hover .series-photo-title {
    z-index: 2;
  }
  .attached a {
    min-width: 0;
    font-size: 14px;
  }
}

/* ===================================== 
  포토 기사
===================================== */
@media screen and (max-width: 1023px) {
  .view-photo-header .article-head .title {
    max-width: 500px;
    font-size: 32px;
  }
  .wrapper.photo .image-area.w-860 {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
@media screen and (max-width: 767px) {
  .view-photo-header .article-head .title {
    font-size: 24px;
  }
}
/* ===================================== 
  태그 기사
===================================== */
/* 제목 */
.article .article-title {
  display: block;
  margin: 20px 0 15px;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .article .article-title {
    font-size: 24px;
  }
}
.article .image-area {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 0;
  line-height: 0;
}
.article figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #727272;
  text-align: left;
  line-height: 1.5;
}
.article .text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.86;
  color: #2a2a2a;
}
.article .text + .text {
  margin-top: 40px;
}
.article .more-btn {
  display: block;
  margin: 15px auto 0;
  width: 120px;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #000;
  transition: 0.15s;
  background-color: #e5e5e5;
}
.article .more-btn:hover {
  background-color: #c7c7c7;
}
.article .more-btn.dark {
  padding: 5px 20px;
  background-color: rgba(229, 229, 229, 0.3);
  color: #fff;
  font-size: 16px;
}
.article .more-btn.dark:hover {
  background-color: rgba(229, 229, 229, 0.6);
}
.article .more-btn.arrow {
  position: relative;
  width: 56px;
  height: 56px;
  margin-top: 58px;
  border-radius: 50%;
  background: url(../images/icon/arrow-light.svg) no-repeat center / 26px;
  background-color: rgba(229, 229, 229, 0.3);
}
.article .more-btn.arrow:hover {
  background-color: rgba(229, 229, 229, 0.6);
}
@media screen and (max-width: 1023px) {
  .article .text {
    line-height: 1.6;
  }
  .article .more-btn {
    margin-top: 40px;
    font-size: 16px;
  }
  .article .more-btn.arrow {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .article .text {
    font-size: 17px;
  }
  .article .more-btn.dark {
    display: none;
  }
  .article .more-btn.arrow {
    display: none;
  }
}

/* ===================================== 
  태그 기사 타입
    default(이미지 사이즈 유동적), bg 박스형, bg 1500px,
    bg fullscreen, noimage, 화보, 영상, SNS embeded, timeline
===================================== */

/* default(이미지 사이즈 유동적) */
.flexible-area {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: auto;
  padding: 0 40px;
  font-size: 0;
  line-height: 0;
}
.article.default .image-area {
  margin: 0 auto !important;
  width: max-content;
}
.article.default .image-area img {
  max-width: calc(100vw - 80px);
}
.article.default figcaption {
  max-width: min-content;
  min-width: 100%;
}

@media screen and (max-width: 767px) {
  .flexible-area {
    width: 100%;
    padding: 0;
  }
  .article.default .image-area {
    width: 100%;
  }
  .article.default .image-area img {
    max-width: 100%;
  }
  .article.default figcaption {
    padding: 0 20px;
  }
}

/* bg 박스형 */
.article.bgBox {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
  border: none;
  background-color: #f8f8f8;
}
@media screen and (max-width: 1023px) {
  .article.bgBox {
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .article.bgBox {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* 화보 */
.article.series-photo {
  padding-top: 5px;
}
.article.series-photo .photo-item {
  max-height: 60%;
}
.seriesPhotoSwiper {
  padding-bottom: 48px !important;
}
.seriesPhotoSwiper .photo-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.seriesPhotoSwiper .photo-btns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46px;
}
.seriesPhotoSwiper .swiper-button-prev,
.seriesPhotoSwiper .swiper-button-next {
  top: 0;
  width: 46px;
  height: 46px;
  margin-top: 0;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  color: #727272;
  background-color: #fff;
}
.seriesPhotoSwiper .swiper-button-prev {
  left: auto;
  right: 58px;
}
.seriesPhotoSwiper .swiper-button-next {
  right: 0;
}
.seriesPhotoSwiper .swiper-button-prev:hover, 
.seriesPhotoSwiper .swiper-button-next:hover {
  background-color: #ebebeb;
}
.seriesPhotoSwiper .swiper-button-prev:after,
.seriesPhotoSwiper .swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-left: 2px;
  border: 0;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
.seriesPhotoSwiper .swiper-button-next:after {
  margin-left: -1px;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.seriesPhotoSwiper .swiper-pagination-bullet-active {
  background-color: #222;
}

@media screen and (max-width: 800px) {
  .seriesPhotoSwiper .swiper-button-prev,
  .seriesPhotoSwiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .seriesPhotoSwiper .swiper-button-prev {
    right: 66px;
  }
  .seriesPhotoSwiper .swiper-button-next {
    right: 20px;
  }
  .seriesPhotoSwiper .swiper-button-prev:after,
  .seriesPhotoSwiper .swiper-button-next:after {
    width: 11px;
    height: 11px;
  }
}

/* bg fullscreen */
.article.fullscreen .article-title {
  position: relative;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  text-align: center;
  color: #fff;
  font-size: 52px;
  letter-spacing: -1.04px;
  line-height: 1.3;
  z-index: 1;
}
.article.fullscreen .text {
  color: #fff;
  line-height: 1.5;
}
.fullscreen-figcaption {
  padding: 0 10px;
  font-size: 13px;
  color: #727272;
  text-align: left;
  line-height: 1.5;
}

@media screen and (max-width: 1279px) {
  .article.fullscreen .article-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .article.fullscreen .article-title {
    max-width: 620px;
    padding: 0 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .article.fullscreen .article-title {
    margin: 15px 0;
    text-align: left;
    font-size: 18px;
  }
  .article.fullscreen .text {
    display: none;
  }
  .fullscreen-figcaption {
    padding: 0 20px;
  }
}

/* embeded */
.embeded-area {
  position: relative;
  margin-top: 20px;
}
.article-text .embeded-area {
  margin: 50px auto 70px;
}
.embeded-area iframe {
  width: 100% !important;
}
.embeded-area .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.embeded-area .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.embeded-area .twitter-tweet,
.embeded-area .instagram-media {
  margin-left: auto !important;
  margin-right: auto !important;
}
.embeded-area .instagram-media {
  max-width: none !important;
  min-width: 0 !important;
}
.embeded-area .fb_iframe_widget {
  width: 100%;
}
.embeded-area .fb_iframe_widget span,
.embeded-area .fb_iframe_widget iframe {
  max-width: 100%;
}

/* timeline */
.timeline-wrap {
  position: relative;
  margin-top: 20px;
}
.timeline-item {
  position: relative;
  padding-left: 70px;
  padding-bottom: 12px;
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #AAAAAA;
}
.timeline-item:after {
  content: "";
  position: absolute;
  left: 13.5px;
  top: -2px;
  width: 24px;
  height: 24px;
  border: 6px solid #fff;
  border-radius: 50%;
  background-color: #AAAAAA;
  z-index: 1;
}
.timeline-item.is-new:before {
  background-color: #000000;
}
.timeline-item.is-new:after {
  background-color: #FF6600;
}
.timeline-item .time {
  display: block;
  font-family: 'Franklin Gothic';
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #666;
}
.timeline-item .time-title {
  display: block;
  font-size: 19px;
  font-weight: bold;
}
.timeline-item:last-child:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .timeline-item {
    padding-left: 34px;
  }
  .timeline-item:before {
    left: 7px;
  }
  .timeline-item:after {
    left: -4px;
  }
  .timeline-item .time {
    font-size: 12px;
  }
  .timeline-item .time-title {
    font-size: 15px;
  }
}