@charset "utf-8";
@import url(font.css);

/* clearfix */
.clearfix:before,
.clearfix:after {
  display: block;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
/* IR 효과 */
.ir_pm {
  display: block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
} /* 의미있는 이미지의 대체 텍스트를 제공하는 경우(Phark Method) */
.ir_wa {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
} /* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 대체 텍스트를 보여주고자 할 때(WA IR) */
.ir_su {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  text-indent: -9999px;
} /* 대체 텍스트가 아닌 접근성을 위한 숨김 텍스트를 제공할 때 */
.blind {
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  line-height: 0;
  margin: -1px;
} /* 접근성을 위한 대체 텍스트(alt 값이 너무 길 때) */

/* 본문바로가기 */
#skip_menu a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  z-index: 10000;
}
#skip_menu a:focus,
#skip_menu a:active {
  height: auto;
  background-color: #46b3df;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 2rem;
}

/* visual */
#visual {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-top: -40px;
  padding-top: 40px;
  border-radius: 0 0 30px 30px;
  /* background-repeat: no-repeat;
  background-size: 100%;
  background-position: center; */
  background: #ac105a;
}
#visual h2 {
  position: absolute;
  font-size: 4.2rem;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  top: 13%;
}
#visual img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 20px 20px;
}
/* tab_list */
.tab_list {
  margin: 50px auto;
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: 15px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.tab_list li {
  display: inline-block;
  width: 15.75%;
  height: 80px;
  text-align: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  border: 1px solid #ddd;
}
.tab_list li.over_txt {
  padding: 15px 20px;
}
.tab_list li.over_txt a span {
  font-size: 19px;
}
.tab_list li:hover {
  /* background: #15bcff; */
  cursor: pointer;
  /* border: 1px solid #c39a6d; */
  animation-name: tab-line;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.tab_list li:hover a span {
  color: #648ca0;
}
@keyframes tab-line {
  0% {
    border-top: 1px solid #648ca0;
  }
  25% {
    border-top: 1px solid #648ca0;
    border-right: 1px solid #648ca0;
  }
  50% {
    border-top: 1px solid #648ca0;
    border-right: 1px solid #648ca0;
    border-bottom: 1px solid #648ca0;
  }
  100% {
    border-top: 1px solid #648ca0;
    border-right: 1px solid #648ca0;
    border-bottom: 1px solid #648ca0;
    border-left: 1px solid #648ca0;
  }
}
.tab_list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 500;
  font-size: 23px;
}
.tab_list li a i {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
.tab_list li a i.icon01 {
  background-image: url("../img/common/icon/icon01.png");
}
.tab_list li a i.icon02 {
  background-image: url("../img/common/icon/icon02.png");
}
.tab_list li a i.icon03 {
  background-image: url("../img/common/icon/icon03.png");
}
.tab_list li a i.icon04 {
  background-image: url("../img/common/icon/icon04.png");
}
.tab_list li a i.icon05 {
  background-image: url("../img/common/icon/icon05.png");
}
.tab_list li a i.icon06 {
  background-image: url("../img/common/icon/icon06.png");
}
.tab_list li a i.icon07 {
  background-image: url("../img/common/icon/icon07.png");
}
.tab_list li a i.icon08 {
  background-image: url("../img/common/icon/icon08.png");
}
.tab_list li a i.icon09 {
  background-image: url("../img/common/icon/icon09.png");
}
.tab_list li a i.icon10 {
  background-image: url("../img/common/icon/icon10.png");
}
.tab_list li a i.icon11 {
  background-image: url("../img/common/icon/icon11.png");
}
.tab_list li a i.icon12 {
  background-image: url("../img/common/icon/icon12.png");
}

/* main */
.section::after {
  content: "";
  display: block;
  clear: both;
}
.section.gray {
  width: 100%;
  background-color: #f4f3f1;
  height: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  transition: all 0.5s;
}
.section.gray > h2 {
  margin: 50px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
}
.section.gray > h2 .fwb {
  font-weight: 600;
  color: #f26521;
}
.section .container {
  max-width: 1400px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto 50px;
}
.section .container:last-child {
  margin-bottom: 80px;
}
.section:nth-child(1) .cardBasic.cardType1 .textArea {
  background: #fff;
  padding: 0;
}
.section:nth-child(1) .cardBasic.cardType1 h2 {
  text-align: center;
  width: 230px;
  height: 195px;
  background-color: #7c0040;
  position: absolute;
  padding-top: 7px;
  transform: translateX(100%);
  color: #000;
  line-height: 1.2;
}
.section:nth-child(1) .cornerTxt {
  background: #d5524a;
}
.section:nth-child(2) .cornerTxt {
  background: #c39a6d;
}
.section:nth-child(3) .cornerTxt {
  background: #003799;
}
.section:nth-child(4) .cornerTxt {
  background: #003799;
}
.section:nth-child(5) .cornerTxt {
  background: #003799;
}
.section:nth-child(1) .cardBasic .textArea {
  background: #ffffff;
}
.section:nth-child(2) .cardBasic .textArea,
.section:nth-child(4) .cardBasic .textArea,
.section:nth-child(5) .cardBasic .textArea {
  background: #f4f3f1;
}
.section:nth-child(1) .cardBasic.cardType1 h2 span {
  display: inline-block;
}
.section:nth-child(1) .cardBasic.cardType1 .textArea p {
  text-align: center;
  font-size: 24px;
  padding: 0 10px;
}
.cardBasic {
  display: block;
  width: 679px;
  height: auto;
  background-color: white;
  position: relative;
  margin-top: 50px;
  transition: all 0.5s;
  overflow: hidden;
}
.cardBasic.cardType3 .textArea h2 {
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.cardBasic .cornerTxt {
  padding: 8px 20px;
  box-sizing: border-box;
  color: white;
  font-size: 23px;
  text-align: left;
  font-weight: 400;
}
.cardBasic .cornerTxt .fwb {
  font-weight: 600;
}
.cardBasic .textArea {
  padding: 20px;
  box-sizing: border-box;
}
.cardBasic .textArea .moreBox {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
.section .container .cardBasic.cardType1 .textArea .moreBox {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  padding: 0 20px 20px 0;
}
.cardBasic .textArea .moreBox .more_btn {
  display: inline-block;
  padding: 3px 15px;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #555;
  border-radius: 20px;
  color: #555;
}
.cardBasic .textArea .moreBox i {
  margin-left: 10px;
}
.cardBasic:hover .textArea .moreBox i {
  /* margin-left: 10px; */
  /* transition: all 0.4s; */
}
.section:nth-child(1) .cardBasic:hover .textArea .moreBox .more_btn {
  border: 1px solid #d5524a;
  background-color: #fde7e6;
  color: #d5524a;
}
.section:nth-child(2) .cardBasic:hover .textArea .moreBox .more_btn {
  border: 1px solid #ae8355;
  background-color: #faf3eb;
  color: #ae8355;
}
.section:nth-child(3) .cardBasic:hover .textArea .moreBox .more_btn {
  border: 1px solid #003799;
  background-color: #ecf0f7;
  color: #003799;
}
.section:nth-child(4) .cardBasic:hover .textArea .moreBox .more_btn {
  border: 1px solid #003799;
  background-color: #ecf0f7;
  color: #003799;
}
.cardBasic.cardType2 .textArea h2 {
  font-size: 25px;
  text-align: center;
  color: #333;
}
.cardBasic .textArea h2 {
  font-size: 25px;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
  color: #333;
  font-weight: 500;
}
.purple .cardBasic.cardType4 .textArea h2 {
  font-size: 25px;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}
.cardBasic.cardType4 .textArea h2 {
  font-size: 25px;
  margin-bottom: 12px;
  text-align: left;
  color: inherit;
}
.cardBasic.cardType5 .textArea h2 {
  font-size: 25px;
  margin-bottom: 12px;
  text-align: left;
  color: inherit;
}
.cardBasic .textArea .txtBox {
  font-size: 1rem;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.5;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 18px;
  text-align: justify;
}
.cardBasic .textArea .rowLine1 {
  -webkit-line-clamp: 1;
}
.cardBasic .textArea .rowLine2 {
  -webkit-line-clamp: 2;
}
.cardBasic .textArea .rowLine3 {
  -webkit-line-clamp: 3;
}
.cardBasic .textArea .rowLine4 {
  -webkit-line-clamp: 4;
}
.cardBasic .textArea .rowLine5 {
  -webkit-line-clamp: 5;
}
.cardBasic .textArea .rowLine6 {
  -webkit-line-clamp: 6;
}
.cardBasic .textArea .rowLine7 {
  -webkit-line-clamp: 7;
}
.cardType1 .label span {
  font-size: 24px;
}
.cardType1 .label .white {
  color: #fff;
}
.cardType1 .label .fz23 {
  font-size: 25px;
  margin-bottom: 45px;
}
.cardType2 {
  width: 370px;
}
.cardType2.special {
  width: 580px;
}
.cardType3 {
  width: 680px;
}
.cardType4 {
  width: 321.3px;
} /*원본{width: 320px;}*/
.cardType5 {
  width: 35%;
  /* width: calc((100% - 50px) / 2); */
  /* background: #f4f3f1; */
}
.cardType_tube {
  width: 62%;
}
.cardType3 .conBox {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.cardType3 .imgBox {
  line-height: 0px;
  width: 200px;
}
/* 0224 추가 */
.imgBox img {
  width: 100%;
}
.cardType3 .textArea {
  width: calc(100% - 190px);
  padding: 20px;
  box-sizing: border-box;
}
.cardType3.special .conBox,
.cardType4.special .conBox {
  flex-flow: column;
}
.cardType3.special .conBox .imgBox,
.cardType4.special .conBox .imgBox {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.cardType3.special .conBox .textArea,
.cardType4.special .conBox .textArea {
  width: 100%;
}
.youtube_wrap {
  position: relative;
  width: 100%;
  height: 490px;
  padding-bottom: 50%;
  overflow: hidden;
}
.youtube_wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cardBasic.cardType2 .textArea h2 {
  height: auto;
}

.section.purple {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  transition: all 0.5s;
}
.section.purple > h2 {
  margin: 60px 0 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.section.purple > h2 .fwb {
  font-weight: 600;
  color: #fff;
}

/* 지난호보기 */
.lastview_wrap {
  position: relative;
  max-width: 1400px;
  box-sizing: border-box;
  width: 100%;
  margin: 50px auto;
  background-color: #ebecee;
  text-align: center;
}
.lastview_wrap .cornerTxt {
  padding: 8px 10px;
  box-sizing: border-box;
  color: white;
  font-weight: 500;
  font-size: 23px;
  text-align: center;
  background: #43b2dd;
}
.lastview_wrap div img {
  width: 180px;
  height: 250px;
}
.lastview_wrap .vol {
  display: block;
  text-align: center;
  background: #8b8c8e;
  color: #fff;
  font-size: 18px;
  padding: 5px 0;
  width: 180px;
  margin: auto;
}
.swiper {
  padding: 30px 0 40px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #43b2dd;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 50px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 50px);
  left: auto;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 0px) !important;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px);
  cursor: pointer;
  z-index: 11;
}

.pc_img {
  display: block;
}
.pc_img2 {
  display: block;
}
.mo_img {
  display: none;
}
.mo_img2 {
  display: none;
}

/* 메인 카드 뉴스 스와이퍼 swiper*/
.card-section .conBox .swiper-container .swiper {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.card-section .conBox .swiper-container .swiper .swiper-wrapper {
  padding-bottom: 30px;
}

/* 0223- 구의회 추가 */
.row_list .row {
  justify-content: space-between;
  gap: 20px;
}
.row_list .row .row_half {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 50%;
  gap: 20px;
}
.row_list .row .row_half .row_img {
  width: 160px;
}
.row_list .row .row_half img {
  width: 100%;
}
.row_list .row .row_half .row_txt {
  width: calc(100% - 160px);
}
.row_list .row .row_half .row_txt p {
  margin-bottom: 20px;
  font-weight: 500;
  background-color: #c0d8a3;
  border-radius: 20px;
  padding: 0 18px;
}
.row_list .row .row_half .row_txt b {
  font-weight: 500;
}
.row_list .row .row_half .row_txt b span {
  font-weight: 400;
}
.row_list .row .row_half .row_txt .txt_box {
  padding-left: 20px;
  display: inline-block;
}
.sns_area {
  flex-direction: column;
  padding: 40px;
  background-color: #f9f9f9;
}
.sns_area p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
.sns_area ul {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media screen and (max-width: 1400px) {
  .section .container {
    max-width: 679px;
  }
  .cardBasic {
    margin: 35px 0 0;
  }
  .cardType2 {
    width: calc(50% - 20px);
  }
  .cardType5,
  .cardType_tube {
    width: 100% !important;
  }
  .cardType5 .imgBox img {
    width: 100%;
  }
  .youtube_wrap {
    padding-bottom: 56.5%;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 20px);
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 20px);
  }

  #tab_list.main {
    display: none !important;
  }
  .section.gray > h2 {
    margin: 60px 0 0;
  }
  .f_util .util {
    padding: 0 5%;
  }
  .pc_sns {
    display: none;
  }
  #visual h2 {
    font-size: 2.7rem;
  }
  .cardType2.mobile {
    margin: 35px auto 0;
  }

  .cardType5 {
    width: 47.13%;
  }
  .cardType_tube {
    order: 1;
  }
  .cardType2.special {
    order: -1;
    margin: 35px auto 0;
  }
}
/* 02.23 추가 */
@media screen and (max-width: 1200px) {
  .row_list .row .row_half .row_txt p {
    line-height: 1.2;
    word-break: keep-all;
    padding: 3px 18px;
  }
  .sns_area ul {
    flex-wrap: wrap;
  }
  .sns_area ul li {
    width: 40%;
    display: inline-block;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #visual {
    padding-top: 0px;
    /* padding: 80px 60px 0; */
    /* height: 500px; */
    img {
      width: 100%;
      /* width: 768px; */
    }
  }
  .section.gray > h2,
  .section.purple > h2 {
    font-size: 1.2rem;
    margin: 40px 0 0;
  }
  .pc_img {
    display: none;
  }
  .mo_img {
    display: block;
  }
  #visual h2 {
    font-size: 2.3rem;
    top: 22%;
  }
  /* 02.23 추가 */
  .row_list .row .row_half {
    flex-direction: column;
    width: 100%;
  }
  .row_list .row .row_half .row_img {
    margin: 0 auto;
  }
  .row_list .row .row_half .row_txt {
    width: 100%;
  }
  .row_list .row .row_half .row_txt p {
    padding: 3px 15px;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .section:nth-child(1) .cardBasic.cardType1 h2 {
    width: 36%;
    height: 26%;
    transform: translateX(-50%);
    left: 50%;
    padding-top: 5px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .section:nth-child(1) .cardBasic.cardType1 .textArea p {
    font-size: 20px;
  }
  .section:nth-child(1) .cardBasic.cardType1 h2 {
    line-height: 1;
  }
  .section .container {
    padding: 0 15px;
    margin: 0 auto 25px;
  }
  .cardType1 .label .fz23 {
    font-size: 20px;
    margin-bottom: 17px;
  }
  .cardBasic,
  .cardType2.mobile {
    margin: 25px 0 0;
    width: 100%;
  }
  .cardBasic .cornerTxt {
    font-size: 20px;
  }
  .cardBasic .conBox img {
    width: 100%;
  }
  .cardBasic .textArea h2 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    height: 45px;
    height: auto;
    -webkit-line-clamp: 2;
  }
  .cardBasic .textArea .rowLine4,
  .cardBasic .textArea .rowLine5 {
    -webkit-line-clamp: 3;
  }
  .cardBasic .textArea {
    width: 100%;
  }
  .cardBasic .textArea .txtBox {
    word-break: break-all;
  }
  .cardType1 .label span {
    font-size: 15px;
  }
  .cardType3 .conBox {
    display: block;
  }
  .cardType3 .imgBox {
    width: 100%;
  }
  .lastview_wrap {
    margin: 25px auto;
  }

  #visual h2 {
    font-size: 1.9rem;
    top: 22%;
  }
  .section.gray > h2 .fwb {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 450px) {
  .mo_img2 {
    display: block;
  }
  .pc_img2 {
    display: none;
  }
  #visual h2 {
    font-size: 1.6rem;
    top: 22%;
  }
  .cardBasic.cardType2 .textArea h2,
  .purple .cardBasic.cardType4 .textArea h2 {
    font-size: 21px;
  }
  .cardBasic.cardType4 .textArea h2,
  .cardBasic.cardType5 .textArea h2 {
    font-size: 20px;
  }
  .sns_area ul {
    flex-direction: column;
  }
  .sns_area ul li {
    width: 100%;
  }
  .youtube_wrap {
    height: auto;
  }
}

@media screen and (max-width: 375px) {
  .sns_box a i {
    margin-right: 2px;
  }
  .section:nth-child(1) .cardBasic.cardType1 h2 {
    width: 40%;
  }
  .section:nth-child(1) .cardBasic.cardType1 .textArea p {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  .cardType1 .label span {
    font-size: 13px;
  }
  .section:nth-child(1) .cardBasic.cardType1 h2 {
    padding-top: 5px;
    height: 30%;
  }
}
