/*COMMON*/
:root {
  --vh: 100%;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333;
  -webkit-tap-highlight-color: transparent;
  margin: 0px;
}

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

img {
  display: block;
}

::selection {
  /* ... */
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

b {
  font-weight: bold;
}

iframe {
  border: 1px solid black;
  box-sizing: border-box;
}

/* fontawesome */
.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/*INNER*/
.inner {
  width: calc(100% - 15px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.inner.i1200 {
  max-width: 1200px;
}

.inner.i1000 {
  max-width: 1000px;
}

.inner.i800 {
  max-width: 800px;
}


.btn_more {
  display: flex;
  /* justify-content: flex-end; */
}

.btn_more>div {

  padding: 10px 15px;
  background-color: #6495ed;
  color: #fff;
  transition: background-color 0.4s;
  cursor: pointer;
}

.btn_more>div:hover {
  background-color: rgba(99, 147, 237, 0.80);
}


.link_span {
  color: #6495ed;
  cursor: pointer;
  /* text-decoration: underline;
  text-underline-position: under; */
}

.link_span:hover {
  color: rgba(99, 147, 237, 0.80);
}


/*BUTTON*/
.btn {
  width: 130px;
  padding: 10px;
  border: 2px solid #333;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  display: block;
  transition: .4s;
}

.btn:hover {
  background-color: #333;
  color: #FFF;
}

.btn.btn--reverse {
  background-color: #333;
  color: #FFF;
}

.btn.btn--reverse:hover {
  background-color: transparent;
  color: #333;
}

.btn.btn--brown {
  color: #592B18;
  border-color: #592B18;
}

.btn.btn--brown:hover {
  color: #FFF;
  background-color: #592B18;
}

.btn.btn--gold {
  color: #D9AA8A;
  border-color: #D9AA8A;
}

.btn.btn--gold:hover {
  color: #FFF;
  background-color: #D9AA8A;
}

.btn.btn--white {
  color: #FFF;
  border-color: #FFF;
}

.btn.btn--white:hover {
  color: #333;
  background-color: #FFF;
}


/*HEADER*/
.pc_header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid #c8c8c8;
  box-shadow: 0px 0px 8px #00000030;
}

.pc_header>.inner {
  height: 100px;
}

.pc_header .logo {
  position: absolute;
  width: 20%;
  height: 100%;
}

.pc_header .logo img {
  position: absolute;
  width: 100%;
  max-width: 200px;
  top: 50%;
  transform: translateY(-50%);
}

.pc_header .sub-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}

.pc_header .sub-menu ul.menu {
  display: flex;
}

.pc_header .sub-menu ul.menu li {
  position: relative;
}

.pc_header .sub-menu ul.menu li::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #e5e5e5;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.pc_header .sub-menu ul.menu li:first-child::before {
  display: none;
}

.pc_header .sub-menu ul.menu li a {
  padding: 11px 16px;
  display: block;
  font-size: 13px;
  color: #656565;
}

.pc_header .sub-menu ul.menu li a:hover {
  color: #000;
}

.pc_header .sub-menu ul.menu li img {
  width: 16px;
}

.pc_header .sub-menu .search {
  position: relative;
  height: 34px;
}

.pc_header .sub-menu .search input {
  width: 36px;
  height: inherit;
  padding: 4px 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
  outline: none;
  background-color: #fff;
  color: #777;
  font-size: 12px;
  transition: width .4s;
}

.pc_header .sub-menu .search input:focus {
  width: 190px;
  border-color: #6495ed;
}

.pc_header .sub-menu .search .material-icons {
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  transition: .4s;
}

.pc_header .sub-menu .search.focused .material-icons {
  opacity: 0;
}

.pc_header .main-menu {
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: 1;
  display: flex;
}

.pc_header .main-menu .item .item__name {
  padding: 10px 20px 34px 20px;

  font-size: 18px;
  transition: color 0.5s;
  cursor: pointer;
  position: relative;
}

.pc_header .main-menu .item .item__name::after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  width: 0px;
  height: 0px;
  border-bottom: 10px solid #f5f5f5;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  /* box-sizing: border-box; */
  margin-bottom: -1px;
  z-index: 1;
}

.pc_header .main-menu .item .item__name::before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  width: 0px;
  height: 0px;
  border-bottom: 10px solid #333;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  /* box-sizing: border-box; */
}

.pc_header .main-menu .item:hover .item__name {
  color: #6495ed;
}

.pc_header .main-menu .item .item__contents {
  width: 100%;
  position: fixed;
  left: 0;
  display: none;
}

.pc_header .main-menu .item:hover .item__contents {
  display: block;
}

.pc_header .main-menu .item:hover .item__name::after {
  display: block;
}

.pc_header .main-menu .item:hover .item__name::before {
  display: block;
}

.pc_header .main-menu .item .item__contents .contents__menu {
  background-color: #f5f5f5;
  /* 393B40 e2ebfc  4F5A6E f6f5ef fffaf0  */
  border-top: 1px solid #333;

  box-shadow: 0 3px 3px #00000030;
  /* border-top: 1px solid #333; */

}

.pc_header .main-menu .item .item__contents .contents__menu>div {
  display: flex;
  justify-content: space-between;
}

.pc_header .main-menu .item .item__contents .contents__menu .menu2_ul {
  padding: 20px 0px 20px 0px;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.pc_header .main-menu .item .item__contents .contents__menu .menu2_ul>li {
  width: 180px;
}

.pc_header .main-menu .item .item__contents .contents__menu .menu2_ul>li h4 {
  padding: 3px 10px 12px 0;
  font-size: 18px;
  font-weight: 700;

}

.cur_point {
  cursor: pointer;
}

.pc_header .main-menu .item .item__contents .contents__menu .menu2_ul>li h4.cur_point:hover {
  color: #6495ed;
  transition: 0.2s;
}

.pc_header .main-menu .item .item__contents .contents__menu .menu2_ul>li ul li {
  padding: 5px 10px 5px 0;
  font-size: 16px;
  color: #777;
  cursor: pointer;

}

.pc_header .main-menu .item .item__contents .contents__menu .menu2_ul>li ul li:hover {
  color: #6495ed;
  transition: 0.2s;
}

/* ?????? ��� */
.pc_header .main-menu .item .item__contents .contents__menu .menu_banner {
  width: 300px;
  margin: 20px;

}

.pc_header .main-menu .item .item__contents .contents__menu .menu_banner img {
  width: 100%;
  border: 1px solid #aaa;
  /* background-color: #fff; */
  cursor: pointer;
}

.pc_header .main-menu .item .item__contents .contents__texture {
  padding: 26px 0px;
  font-size: 14px;
  background-color: #333;

  text-align: right;
}

.pc_header .main-menu .item .item__contents .contents__texture h4 {
  color: #6495ed;
  font-weight: 500;
}

.pc_header .main-menu .item .item__contents .contents__texture p {
  color: #aaa;
  margin: 4px 0 14px;
}

/*BADGES*/
.pc_header .badges {
  position: absolute;
  top: 132px;
  right: 12px;
}

.pc_header .badges .badge {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, .15);
  cursor: pointer;
}

.top_margin {
  height: 100px;
}

.m_header {
  display: none;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100vw;
}

.m_header .m_header_lay {
  height: 60px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 1px 5px #00000030;
}

.m_header .m_header_lay img {
  height: 30px;
}

.sidenav {
  height: var(--vh);
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 120;
  background: #fff;
  overflow-x: hidden;
  white-space: nowrap;
  width: 80vw;
  /* ----?????? */
  max-width: 400px;
  /* transition : width 0.4s; */
  /* -webkit-tap-highlight-color: transparent; */
  }

.sidenav2 {height: var(--vh);position: fixed;top: 0;z-index: 110;overflow-x: hidden;width: 0;transition: background-color 0.6s;}

.sidenav2.fadein {
  width: 100vw;
  background-color: #00000030;
}

.side_pann_r1 {
  height: 61px;
  /* side_pann_r2 ????????? */
  background-color: #333;
  /* ????????? �޴� ?????? e2ebfc f5f5f5 f6f5ef*/
  color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #6495ed35;
  box-sizing: border-box;
}

.side_pann_r1 .spr1_r1 {
  display: flex;
  justify-content: space-between;

  align-items: flex-end;
}

/* .side_pann_r1 .spr1_r2{
  padding-top: 10px;
  width: 100%;
  height: 80px;
  overflow-y: scroll;
  white-space: normal;

 } */

.side_pann_r2 {
  display: flex;
  /* ?????? + ?????? */
  height: calc(var(--vh) - 61px);
  /* height: -webkit-fill-available;
  height: fill-available; */
}

.side_pann_r2_c1 {
  background-color: #eee;
  /* ????????? �޴� ��ư Į��  f6f5ef */


  width: 80px;
  /* display: flex;
  flex-direction: column; */
  overflow-x: hidden;
  overflow-y: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* ??????, ?????*/
  scrollbar-width: none;
  /* ?????? */
}

.side_pann_r2_c1::-webkit-scrollbar {
  /* ?????, ?????????, ???????? */
  display: none;
}

.spr2c1_box {
  /* flex: 1 1 0; */

  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 15px 0;
  border-bottom: 2px solid #e5e5e5;
  box-sizing: border-box;
  justify-content: center;
  cursor: pointer;
}

.spr2c1_text {
  position: relative;
  text-align: center;
}

.spr2c1_mark {
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
  position: absolute;
  transform: translateX(-50%) translateY(-100%);
  left: 50%;
  max-width: 26px;
}

.spr2c1_box.spr2c1_box_click {
  background-color: #fff;
  padding-top: 33px;
}

.spr2c1_box.spr2c1_box_click .spr2c1_mark {
  opacity: 1;
}

.spr2c1_sns {
  text-align: center;
  margin-top: 20px;
}

.spr2c1_sns>div {
  padding: 5px 0;
}

.side_pann_r2_c2 {
  /*  ????????? �޴� 2,3 ???????? */

  box-sizing: border-box;
  flex: 1 1 0;
  overflow-x: hidden;
  overflow-y: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* ??????, ?????*/
  scrollbar-width: none;
  /* ?????? */
}

.side_pann_r2_c2::-webkit-scrollbar {
  /* ?????, ?????????, ???????? */
  display: none;
}

.side_pann_r2_c2_lay {
  padding: 20px 10px 60px 10px;
}

.spr2c2_page {
  display: none;
}

.spr2c2_page.spr2c2_page_click {
  display: block;
}

.spr2c2_box {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #aaa;
}

.spr2c2_box_r1 {
  font-weight: 800;
}

.spr2c2_box_r1_box {
  color: #555;
  cursor: pointer;
}

.spr2c2_box_r2 {
  display: block;

}

.spr2c2_box_r2_box {

  margin: 5px 0 5px 15px;
  padding: 5px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* ??????, ?????*/
  scrollbar-width: none;
  /* ?????? */
  cursor: pointer;
}

.spr2c2_box_r2_box::-webkit-scrollbar {
  /* ?????, ?????????, ???????? */
  display: none;
}

.spr2c2_box_r2_box>div {
  display: inline-block;
}

.menu_adv_m {
  width: calc(80% - 20px);

  cursor: pointer;

  margin: 10px 0 0 auto;
  padding: 0 10px;
}

.menu_adv_m_img {
  border: 1px solid #aaa;
  box-sizing: border-box;
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.menu_adv_m_img>img {
  width: 100%;
  transition: transform 0.3s;
}

.menu_adv_m_t {
  margin-top: 15px;
  width: 100%;
  word-break: keep-all;
  white-space: wrap;
}

.menu_adv_m_v_lay {
  padding-left: 30px;
}

.menu_adv_m_n {
  margin-top: 15px;
  width: 100%;
  word-break: keep-all;
  white-space: wrap;
  font-weight: 500;
}

.menu_adv_m_v {
  width: 100%;
  word-break: keep-all;
  white-space: wrap;
}


/*INTRO*/
.introSec {
  position: relative;
  /* margin-top: 150px; */
  /* margin-bottom: 100px; */

  background-image: url('../images/book_store.jpg');
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
}

.top_gradi {
  position: absolute;
  width: 100%;
  height: 10px;

  /* background: linear-gradient(180deg, rgba(238,238,238,1) 0%, rgba(238,238,238,0) 100%); */
}

.intro_lay {}

.intro_img {
  width: 100%;
  max-width: 900px;
  /* box-shadow: 0 0 50px #00000030; */
  padding: 5px;
  background-color: none;
  border: 3px solid transparent;
  border-image: linear-gradient(to right, #009147 0%, #6495ed 100%);
  border-image-slice: 1;
  box-sizing: border-box;
}

.intro_img img {
  width: 100%;
  /* clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%); */
}

.intro_lay_border {
  font-size: 20px;
  max-width: 680px;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 11vh;
}

.intro_lay_border_out {
  background-color: #f8f3ed;
  /* 9dbbdf  e2ebfc d8e4fa  4F5A6E F2C0A2 8C2D18  F27F3D 0367A6 e5e5e5 f6f5ef f8f3ed*/
  padding: 5px;
  /* box-shadow: 0 0 20px #592B18; */
}

.intro_lay_border_out.scroll-spy {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.intro_lay_border_out.scroll-spy.show {
  opacity: 1;
  transform: translateY(0);
}

.intro_lay_border_inner {
  padding: 40px;
  border: 2px solid #333;
  /*  592C1C */
  color: #555;
}

.intro_lay_border .intro_lay_sub {
  text-align: center;

}

.intro_lay_border .intro_lay_hr {
  border-bottom: 2px solid #333;
  max-width: 200px;
  margin: 20px auto 0 auto;
}

.intro_lay_border .intro_lay_desc {
  padding-top: 22px;
  font-weight: 300;
  text-align: justify;
}

.intro_lay_border .intro_click {
  /* font-size: 34px; */
  font-weight: 800;
  cursor: pointer;

}

.intro_lay_border .intro_click:hover {
  color: #33333390;
}

.intro_lay_desc.on {
  color: red;
}

/*PROMOTION*/
.main_banner {
  background-color: #f6f5ef;
  /* 
  background: linear-gradient(-45deg, #f3f5f0 50%, #dfe8eb 50%);
  #dde1e7 
  #f6f5ef
  #f3f5f0
  #dfe8eb
  */
}

.main_banner .inner {}

.main_banner .promo_banner_pc {
  width: 100%;
  aspect-ratio: 5 / 2;
  position: relative;
  overflow: hidden;
}

.main_banner .promo_banner_m {
  display: none;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

/* ?????? ?????? �Ҹ� ?????? */
.swiper-pagination-bullet-active {
  background-color: #66023C !important; /* ?????? ?????? �Ҹ� ?????? */
}

.main_banner .swiper-container {
  /* 819px ???????????? 3��??? ?? ?????? ????? 10px??? = 2477px */
  width: 100%;
  /* aspect-ratio: 9 / 3; */
  position: absolute;
}

.main_banner .swiper-slide {
}

.main_banner .swiper-slide .slide_img {
  display: flex;
  align-items: center;
}

.main_banner .swiper-slide .slide_img.ban_link {
  cursor: pointer;
}

.main_banner .swiper-slide .slide_img img {
  background-color: #f6f5ef;
  width: 100%;
}

/* .swiper-slide .slide_button{
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(7%);
  display: inline-block;
  background-color: #333;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.4s;
  border: 3px solid #333;
}
.swiper-slide .slide_button:hover{
  background-color: #fafafa;
  color: #333;
} */

/* .main_banner .swiper-slide-active {
  opacity: 1;
} */
/* .main_banner .swiper-slide .btn {
  width: 130px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
} */

.swiperNavi {
  position: absolute;
  cursor: pointer;
  bottom: 8px;
  z-index: 11;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  border-radius: 50px;
  padding: 2px 8px;
}

.swiperNavi>div {
  position: relative;
  display: flex;
}

.main_banner .swiper-pagination {
  /* position: relative;
  bottom: 0px; */
  /* left: 0;
  right: 0; */
}

/* 
.main_banner .swiper-prev,
.main_banner .swiper-next {
  padding: 3px;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
  position: absolute;
  bottom: 5px;
  z-index: 11;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
}
.main_banner .swiper-prev {
  left: calc(50% - 80px);
  
}
.main_banner .swiper-next {
  right: calc(50% - 80px);
  
}
.main_banner .swiper-prev:hover,
.main_banner .swiper-next:hover {
  color: #fff;
  background-color: #333;
} */



/*NOTICE*/
.notice{}
/*NOTICE LINE*/
.notice .notice-line {
  overflow: hidden;
  background-color: #333;
  padding-left: 10px;
}

.notice .notice-line .inner {}

.notice .notice-line .inner__left {
  background-color: #333;
  display: flex;
  align-items: center;
}

.notice .notice-line .inner__left .notice_board_name {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding-right: 20px;
  flex: 0 0 auto;
  cursor: pointer;
}

.notice .notice-line .inner__left .notice_board_detail_name {
  width: calc(100% - 120px);
  flex-grow: 1;

}

.notice .notice-line .inner__left .swiper-container {
  height: 62px;

}

.notice .notice-line .inner__left .swiper-slide {
  height: 62px;
  line-height: 62px;
  cursor: pointer;
}

.notice .notice-line .notice_box {
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #333;
}

.notice .notice-line .notice_box .nb_sub {
  flex: 1 1 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;

}

.notice .notice-line .notice_box .nb_date {
  padding-left: 20px;
  flex: 0 0 auto;
}


.daily {

  margin-top: 100px;
}

.daily .daily_lay {
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 1px solid black;
  border-radius: 10px;
  box-sizing: border-box;
}

.daily .daily_lay .daily_mr_cardimg {}

.daily .daily_lay .daily_mr_cardimg img {
  width: 100%;

}

.daily .daily_lay .daily_mr_text {
  padding: 10px;
}

.daily .daily_lay .daily_mr_text_r1 {
  font-weight: bold;
}

.daily .daily_lay .daily_mr_text .bibText {}

.daily .daily_lay .daily_bib {}

.daily .daily_go {
  display: inline-block;
  float: right;
  font-weight: bold;
  cursor: pointer;
}

.daily .daily_go:hover {}





.video {}

.video .video_lay {}

.video .video_lay .video_iframe {}


/* .mbookswiperSection .inner{
  position: relative;
  overflow: hidden;
}
.mbookswipe_lay > div:first-of-type{
  position: absolute;
  width: 50px;
  height: 100%;
  z-index: 2;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.mbookswipe_lay > div:last-of-type{
  position: absolute;
  top:0;
  right:0;
  width: 50px;
  height: 100%;
  z-index: 2;
  background: rgb(255,255,255);
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
} */

.mbookswiperSection {
  overflow: hidden;
  margin-top: 100px;
  padding: 100px 0px;
  background: linear-gradient(0deg, #f8f3ed, #f8f3ed 170px, #dbd8d2 200px, #f7f3ea 200px 215px, #e7dcc9 215px 270px, #D9CEBD 300px, #f8f3ed 300px);
  /* background: linear-gradient(0deg, #f8f3ed, #f8f3ed 510px, #D9CEBD 510px,#e7dcc9 550px 580px, #f7f3ea 580px 595px, #dbd8d2 595px,#f8f3ed 630px); */
  /* background: linear-gradient(#f8f3ed 100%, #f2eadd 50%, #f7f3ea 25%); */
  /* background-color: #f8f3ed; */
}

.mbookswipe_title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  padding-bottom: 20px;
  cursor: pointer;
}

.mbookswipe_comm {
  color: #777;
  font-size: 20px;
}

.mbookswiperSection .mbookSwiper {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 150px;

}

.mbookswiperSection .mbookSwiper .swiper-wrapper {
  /* transition-timing-function: linear; */
}

.mbookswiperSection .mbookSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 200px;
  aspect-ratio: 2/3;

}

.mbookswiperSection .mbookSwiper .swiper-slide img {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* box-shadow: 0 0 20px #00000030; */
  filter: drop-shadow(0px 0px 20px #00000010) drop-shadow(0px 1px 0px #00000020) drop-shadow(0px 2px 0px #00000020) drop-shadow(0px 3px 1px #00000020) drop-shadow(0px 4px 2px #00000030);
}



.mainrowbanner {
  margin-top: 0;
  background-color: #EEEDF5;
  /*F2F7ED EDF5F1 */
  padding: 100px 0;
}

.mrb_r1 {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.mrb_r1c1,
.mrb_r1c2 {
  cursor: pointer;
  padding: 0 10px;
}

.mrb_r1c2 {
  color: #6495ed;
}

.mrb_r2 {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
  display: grid;
  grid-template-columns: repeat(auto-fill, 24%);
  justify-content: space-between;
  row-gap: 100px;
  /* grid-gap: 5%; */
}

.mrb_box {
  /* width: 30%; */
  cursor: pointer;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 10px;
}

.mrb_img {
  border: 1px solid #aaa;
  box-sizing: border-box;
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.mrb_img>img {
  width: 100%;
  transition: transform 0.3s;
}

.mrb_text {
  margin-top: 15px;
  width: 100%;
  word-break: break-all;
}

.mrb_text .mrb_text_t {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  word-break: keep-all;
}

.mrb_text .mrb_text_c {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* ?????? ?? ???���� ��??? ????????? */
  white-space: normal;
  line-height: 1.3;
  height: 6.5em;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.mrb_box:hover .mrb_img img {
  transform: scale(1.05);

}

.mrb_box.scroll-spy {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}

.mrb_box.scroll-spy.delay-scs {
  transition-delay: 0.2s;
}

.mrb_box.scroll-spy.show {
  opacity: 1;
  transform: translateY(0px);
}




.mainrowbanner2 {
  margin-top: 150px;
}

.mrb2_lay {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* display: grid;
  grid-template-columns: repeat(auto-fill, 30%);
  justify-content: space-between;
  grid-gap: 5%; */
}

.mrb2_box {
  width: 100%;
  max-width: 420px;
  background-color: #eee;
}

.mrb2_img {
  border: 1px solid #aaa;
  box-sizing: border-box;
  border-radius: 10px;
}

.mrb2_img>img {
  width: 100%;
}




.test_lay {}

.test_r1 {}

.test_r1c1 {
  max-width: 500px;
}

.test_r1c1 img {
  width: 100%;
}

.mainrowbanner .fa-square-plus,
.main_cont .fa-square-plus {
  /* color: #6495ed; */
}

/*��???ī��, ??????, ?????????*/
.main_cont {
  margin-top: 60px;
}

.main_cont_lay {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

/*��???ī��*/
@media (max-width: 740px) {
  .mc_c1 {
    width: 100%;
    margin-bottom: 50px;
  }
  .mc_c2 {
    margin: 0 auto;
  }
}
@media (min-width: 741px) {
  .mc_c1 {
    /* width: calc(40% - 20px); */
    margin-bottom: 120px;
  }
  .mc_c2 {
    row-gap: 20px;
  }
}


.mc_c1_r1 {
  /* margin-bottom: 80px; */
  margin-bottom: 0;
}

.mc_c1_r1_r1 {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;

}

.mc_c1_r1_r1 i {
  cursor: pointer;
  color: #6495ed;
}

.mc_c1_r1_r2 {
  cursor: pointer;
}

.mc_c1_r1_r2_r1 {
  border: 1px solid #aaa;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;

}

.mc_c1_r1_r2_r1 img {
  width: 100%;
  transition: transform 0.3s;
}

.mc_c1_r1_r2_r1:hover img {
  transform: scale(1.05);
}

@media (max-width: 740px) {
  .mc_c1_r1_r2_r2 {
    border-radius: 20px;
    background-color: #eee;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    font-size: 18px;
    text-align: justify;
  }

  #more-button {
    display: none;
  }
}

@media (min-width: 741px) {
  .mc_c1_r1_r2_r2 {
    /* 901px ????????? ??? ?????? */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #eee;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    font-size: 18px;
    text-align: justify;

    max-height: 120px; /* ????????? ����????????? ?????? ?????? */
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0.5) 80%, transparent);
    mask-image: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0.5) 80%, transparent);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  /* ????????? ????????? ????? */
  #text-container {
    max-height: 210px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent);
    mask-image: linear-gradient(to bottom, black 70%, transparent);
  }

  /* ???���� ��ư */
  #more-button {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: #333; /* ????????? ?????? */
    /* border: 1px solid #ddd; */
    border: 0;
    border-radius: 20px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    font-family: inherit; /* body??? font-family ?????? */
    font-size: inherit; /* body??? font-size ?????? */
    font-weight: inherit; /* body??? font-weight ?????? */
    line-height: inherit; /* body??? line-height ?????? */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  /* ???���� ��ư ????? ????? */
  #more-button:hover {
    background-color: #ddd;
    color: #111;
  }

  /* ????????? ����????????? ��ư ����??? ???? */
  #container {
    position: relative;
    margin: 20px auto;
    width: 90%; /* ����??? ????? */
    max-width: 600px;
  }
}

.mc_c1_r1_r2_r2_v {
  font-weight: 600;
}

.mc_c1_r1_r2_r2_t {
  margin-bottom: 10px;
}

.main_cont_title {
  margin-left: 20px;
  position: relative;
}

.main_cont_title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: calc(50% + 2px);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #333;
  transform: translateY(-50%);
  box-sizing: border-box;
}




/*?????? ?? ?????????*/
.mc_c2 {
  display: flex;
  flex-direction: column;
}
/* ?????? */
.mr_c2_r1 {
  
}

.mc_c2_r1_r1 {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mc_c2_r1_r2 {
  display: flex;
  
  column-gap: 20px;
  margin-bottom: 40px;
}

.mc_video {
  /* width: calc(50vw - 10px); */
  margin-bottom: 20px;
}

.mc_video .mc_video_container {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50%;

}

/* .mc_video .mc_video_container > img{
  width: 100%;
} */
.mc_video .mc_video_container iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.mc_video .mc_video_img_container {
  cursor: pointer;

}

.mc_video .mc_video_img_container img {
  width: 100%;
  transition: transform 0.3s;
}

@media (max-width: 900px) {
  .mc_video .mc_video_img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #aaa;
    box-sizing: border-box;
  }
}

@media (min-width: 901px) {
  .mc_video .mc_video_img {
    width: 350px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #aaa;
    box-sizing: border-box;
  }
}

.mc_video .mc_video_title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}

.mc_video .mc_video_img_container:hover img {
  transform: scale(1.05);
}




/*?????????*/
.mc_c2_r2_r1 {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}


@media (max-width: 740px) {
  .mc_c2_r2_r2 {
    margin-bottom: 64px;
    /* margin-bottom: 8%; */
  }
  
  .mc_c2_r2_r2 .textBoard_lay {
    border-top: 1px solid #555;
  }

  .mc_c1_r2_r1 {
    display: flex;
    justify-content: space-between;
    font-size: 13pt;
    font-weight: 600;
    margin-bottom: 40px;
  }
  
  .mc_c1_r2_r2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    font-size: 12pt;
    /* margin-bottom: 5px; */
    margin-bottom: 0;
    cursor: pointer;
  }
}
@media (min-width: 741px) {
  .mc_c2_r2_r2 {
    margin-bottom: 64px;
    /* margin-bottom: 8%; */
  }
  
  .mc_c2_r2_r2 .textBoard_lay {
    border-top: 1px solid #555;
  }

  .mc_c1_r2_r1 {
    display: flex;
    justify-content: space-between;
    font-size: 18pt;
    font-weight: 600;
    margin-bottom: 40px;
  }
  
  .mc_c1_r2_r2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    font-size: 15pt;
    /* margin-bottom: 5px; */
    margin-bottom: 0;
    cursor: pointer;
  }
}


.mc_c1_r2_r2>div {
  font-weight: 500;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
  border-radius: 3px;
  transition: 0.4s;
}

.mc_c1_r2_r2>div>span {
  color: #6495ed;
  /* background-color: #6495ed30; */
}

.mc_c1_r2{
  display: flex;

}
.mc_bibHymn {
  /* display: flex;
  column-gap: 5px;
  /* ?? ?????? ???????? ??????????? ����?? ?????? ��??? */
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  column-gap: 2%;
  /* ??????�ʿ� ����??? ??? 40px �ֱ� */
  justify-content: space-evenly;
  margin-bottom: 48px;
  /* width: 100vw; */
}



.mc_bibHymn>div {
  background-color: #EDF4F7;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 15px;
  border-radius: 20px;
  /* border: 1px solid #8f8f8f; */
  /* ??????���� ??????????? ��ġ????? ??? ???????? ����?? ?????? flex ?????? */
  flex-direction: column;
  /* ??????���� ????????? ???????? ?????????????? ?????? */
  
  /* ?? ???���� ???????? ��?????? ����?? ?????? ?????? */
}

/* ���??? ????? (��??? ????? 768px ??????)?????? 1????? ��ġ */
@media (max-width: 768px) {
  .mc_bibHymn{
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* width: calc(90vw - 22px); */
    gap: 30px;
    margin-top: inherit;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .mc_bibHymn > div{
    background-color: #EDF4F7;
    border-radius: 20px;
    font-size: 12pt;
  }
}



/*FOOTER*/
footer {
  background-color: #333;

}

footer .inner {
  padding: 40px 0 60px 0;
}

footer .menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

footer .menu li {
  position: relative;
}

footer .menu li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #555;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  margin: auto;
}

footer .menu li:last-child::before {
  display: none;
}

footer .menu li a {
  display: block;
  color: #CCC;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  cursor: pointer;
}

footer .menu li a i {
  font-size: 28px;
}

footer .menu li img {
  width: 24px;

}

footer .btn-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

footer .btn-group .btn {
  font-size: 12px;
  margin-right: 10px;
}

footer .btn-group .btn:last-child {
  margin-right: 0;
}

footer .info {
  margin-top: 30px;
  text-align: center;
}

footer .info span {
  margin-right: 20px;
  color: #999;
  font-size: 16px;
}

footer .info span:last-child {
  margin-right: 0;
}

footer .copyright {
  color: #999;
  font-size: 16px;
  text-align: center;
  margin-top: 12px;
  cursor: pointer;
  transition: color 0.3s;
}

footer .copyright:hover {
  color: #fff;
}

footer .logo {
  margin: 30px auto 0;
}

.footnote_span {
  color: #227909;
  text-decoration: underline;
  cursor: pointer;

}

.footnote_span .footnote_block {
  display: none;
  color: #000;
}

.footnote_span:hover {}

.footnote_span:hover .footnote_block {
  display: block;
  position: absolute;
  max-width: 500px;
  width: calc(100% - 20px);
  transform: translateX(-50%);
  left: 50%;
  background-color: #fafafa;
  border: 2px solid #227909;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 10px 10px #00000030;
}




/*SCROLL TO TOP*/
#to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  width: 42px;
  height: 42px;
  background-color: #333;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}




.topBar {
  background-color: #f6f5ef;
  /* f6f5ef  e2ebfc */
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* ??????, ?????*/
  scrollbar-width: none;
  /* ?????? */
  border-bottom: 1px solid #DED8C8;
}

/* .topBar::after{
  content: "";
  z-index: 20;
  position: absolute;
  width: 60px;
  height: 60px;
  right:0;
  top: 50px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(224,224,224,1) 80%);
} */
.topBar::-webkit-scrollbar {
  /* ?????, ?????????, ???????? */
  display: none;
}

.topBar .topBar_lay {
  display: flex;
  /* height: 50px; */
  align-items: flex-end;

}

.topBar .topBar_lay .topBar_box {
  cursor: pointer;
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
}

.topBar .topBar_lay #topBar_scroll {
  height: 50px;
  line-height: 50px;
  position: sticky;
  right: 0px;
  padding: 0 20px 0 20px;
  /* background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(224,224,224,1) 20%); */
  /* background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%); */
  background: linear-gradient(90deg, #f6f5ef00 0%, #f6f5ef 50%, #f6f5ef 100%);
  color: ;
  display: none;
  transition: 0.4s;
}



.board {
  position: relative;
  padding-top: 50px;
}

.board .boardName {
  font-weight: 600;
  font-size: 24px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  color: #555;
}

.board .divHr {
  border-top: 1px solid black;
  margin-bottom: 10px;
}

.board .boardCate {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;

}

.board .boardCate>div {
  padding: 5px;
  margin: 0 10px 10px 0;
  background-color: #eee;
  cursor: pointer;
  transition: 0.4s;
}

.board .boardCate>div:hover {
  background-color: #ddd;
}

.board .boardCate .boardSearch form {
  display: flex;
}

.board .boardCate .boardSearch input {
  border: none;
  border-bottom: 1px solid #555;
  background-color: transparent;
  width: 100px;
  transition: 0.4s;
}



.board .boardInfo {
  padding: 15px;
  /* background-color: #f6f5ef; */
  background-color: #f5f5f5;
}

.board .boardInfo summary {
  cursor: pointer;
}



.imageBoard {}

.imageBoard .imageBoard_lay {
  display: flex;
  flex-wrap: wrap;
}

.imageBoard .imageBoard_lay .box {
  width: calc((100% / 3) - 40px);
  margin: 10px 20px 60px 20px;
  cursor: pointer;
}

.imageBoard .imageBoard_lay .box .box_thum {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid #aaa;
  box-sizing: border-box;

}

.imageBoard .imageBoard_lay .box:hover .box_thum {
  filter: brightness(103%);
  box-shadow: 2px 2px 0px #11111130;
}

.imageBoard .imageBoard_lay .box .box_thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.imageBoard .imageBoard_lay .box:hover .box_thum img {
  transform: scale(1.05);
}

.imageBoard .imageBoard_lay .box .box_text {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 0 10px;
  /* text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; */

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.3;
  height: 2.6em;
  text-align: left;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.imageBoard .imageBoard_lay .box .box_text_date {
  text-align: right;
  font-size: 14px;
  color: #555;
  padding-left: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}



.card_imgSection {}

.card_imgSection .board .imageBoard .imageBoard_lay .box .box_thum img {
  transition: transform 0.5s;
}

.card_imgSection .board .imageBoard .imageBoard_lay .box .box_thum {
  position: relative;
  transition: box-shadow 0.5s;
}




.podSection {}

.noticeSection {}

.gospelSection {}

.imageBoardSection {}



.textBoard {
  margin-top: 10px;
}

.textBoard .textBoard_lay {}

.textBoard .textBoard_lay .row {
  display: flex;
  font-size: 16px;
  padding: 12px 0px 12px 10px;
  border-bottom: 1px solid #555;
  box-sizing: border-box;
  color: #555;
}

.textBoard .textBoard_lay .row.first {
  text-align: center;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
}

.textBoard .textBoard_lay .row>div {

  white-space: nowrap;
  overflow: hidden;
}


.textBoard .textBoard_lay .row .num {
  width: 70px;
  text-align: center;
}

.textBoard .textBoard_lay .row .cate {
  width: 120px;
}

.textBoard .textBoard_lay .row .subject {
  font-size: 18px;
  margin-right: 10px;
  flex: 1 1 0;
  cursor: pointer;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;

}

.textBoard .textBoard_lay .row .subject::-webkit-scrollbar {
  display: none;
}


.textBoard a {
  color: #000;
}

.textBoard a:visited {
  color: #999;
}

.textBoard .textBoard_lay .row .date {
  width: 80px;
  text-align: center;
}

.textBoard .textBoard_lay .row .count {
  width: 70px;
  text-align: center;
}



/* .boardDetail_navi .BDN_button{
	display:flex;
}
.boardDetail_navi .BDN_button > div{
	padding: 5px 20px;
	background-color: #333;
	color: #fff;
	border-right: 1px solid #fff;
} */







.mBSection {}

.bookBoard {
  margin-top: 20px;
}

.bookBoard .bookBoard_lay {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bookBoard .bookBoard_lay .box {
  width: calc((100% / 2) - 40px);
  margin: 20px 0px 100px 0;
  position: relative;
  cursor: pointer;
}

.bookBoard .bookBoard_lay .box.bestBackColor {
  /* background: linear-gradient(-45deg, #f3f5f0 50%, #dfe8eb 50%); */
}

/* .bookBoard .bookBoard_lay .box:hover{
  filter: brightness(103%);
  box-shadow: 2px 2px 10px #11111170;
} */
.bookBoard .bookBoard_lay .box .box_row1 {
  display: flex;
}

.bookBoard .bookBoard_lay .box .box_row2 {}

.bookBoard .bookBoard_lay .box .box_thum {
  width: 30%;

}


.bookBoard .bookBoard_lay .box .box_thum>img {
  margin: 0 auto;
  width: 100%;
  max-width: 150px;
  /* box-shadow: -7px 7px 10px #11111150; */
  filter: drop-shadow(7px 7px 10px #11111150);

  /* border:1px solid #fff; */
  object-fit: cover;
  transition: 0.4s;
}

.bookBoard .bookBoard_lay .box:hover .box_thum>img {
  transform: perspective(500px) rotateY(-15deg);
  /* box-shadow: -12px 9px 12px #11111150; */
  filter: drop-shadow(12px 9px 12px #11111150) brightness(1.05);
}

.bookBoard .bookBoard_lay .box .box_text {
  width: 70%;
  padding: 10px 10px 10px 20px;
  /* white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; */
}

.bookBoard .bookBoard_lay .box .box_text .box_text_name {
  font-weight: 400;
  font-size: 20px;
  font-weight: bold;
  word-break: keep-all;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ccc;
}

.bookBoard .bookBoard_lay .box .box_text .box_text_content {
  padding-top: 15px;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  line-height: 1.6;
  /* display: -webkit-box;
  -webkit-line-clamp: 6; 
  -webkit-box-orient: vertical */
}

.bookBoard .bookBoard_lay .box .box_text .box_text_keyword {
  position: absolute;
  bottom: 5px;
  width: calc(70% - 5px);
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;

  /* display: -webkit-box;
   -webkit-line-clamp: 3; 
   -webkit-box-orient: vertical */
}



/* �״����� �Խ�??  */
.g_DetailSection {
  padding-bottom: 100px;
  background-color: #f5f5f5;
}

.g_Detail {
  border: 1px solid #ddd;
  padding: 100px;
  background-color: #fff;
}

.g_Detail .gd_sub {
  display: flex;
  padding-bottom: 10px;
}

.g_Detail .gd_title {
  font-size: 30px;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
  word-break: keep-all;
}

.g_Detail .gd_file {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}

.g_Detail .gd_file .gd_file_row {
  display: inline;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
}

.g_Detail .gd_img {}

.g_Detail .gd_img img {
  max-width: 100%;
  margin: 0 auto;
}

.g_Detail .gd_content_lay {
  padding: 50px 10px 0px 10px;
}

.g_Detail .gd_content {
  font-weight: 300;
  color: black;
  word-break: break-all;
}

.g_Detail .gd_content img {
  max-width: 100%;
}

.g_Detail .gd_content b {
  font-weight: bold;
}

.g_Detail .gd_video {
  width: 100%;
  max-width: 900px;
  margin: 50px auto 0px auto;
}

.g_Detail .gd_video .gd_video_container {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50%;
}

.g_Detail .gd_video .gd_video_container iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}








/* ????? �Խ�?? */
.boardDetailSection {
  padding-bottom: 100px;
  background-color: #f5f5f5;
}

.boardDetail {
  border: 1px solid #ddd;
  padding: 100px;
  background-color: #fff;
}

.boardDetail .bd_sub {
  display: flex;
  padding-bottom: 10px;
}

.boardDetail .bd_title {
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
  word-break: keep-all;
}

.boardDetail .bd_file {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}

.boardDetail .bd_file .bd_file_row {
  display: inline;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
}

.boardDetail .bd_img {}

.boardDetail .bd_img img {
  max-width: 100%;
  margin: 0 auto;
}

.boardDetail .bd_content_lay {
  padding: 50px 10px 0px 10px;
}

.boardDetail .bd_content {
  /* font-weight: 300; */
  font-size: 18px;
  line-height: 1.6;
  margin-top: 50px;
}

.boardDetail .bd_content b {
  font-weight: bold;
}

.boardDetail .bd_content i {
  font-style: oblique;
}

.boardDetail .bd_youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0px;
  overflow: hidden;
}

.boardDetail .bd_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.boardDetail .bd_content img {
  max-width: 100%;
}

.mobile_paging {
  display: none;
}

.pc_paging {
  display: block;
}


.share_button_lay {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.share_button_lay>div:hover {
  filter: brightness(105%);
}

.link_share_bu {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: rgba(243, 206, 206, 0.608);
}

.link_share_com {
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  position: absolute;
  display: inline;
  width: 120px;
  text-align: center;
  transform: translateX(calc(-50% + 15px)) translateY(calc(-100% - 40px));
  background-color: #2d3948;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}




.loader_lay {
  position: fixed;
  width: 100vw;
  height: var(--vh);
  background-color: #ffffff70;
  z-index: 1000;
}

.loader {
  position: fixed;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  z-index: 1000;
  box-sizing: border-box;
  border: 10px solid #6495ed;
  border-top: 10px solid transparent;
  border-radius: 50%;

  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}





@media (max-width: 1400px) {
  .bookBoard .bookBoard_lay .box .box_text .box_text_content {
    /* -webkit-line-clamp: 4;  */
  }
}

@media (max-width: 1200px) {
  .bookBoard .bookBoard_lay .box {
    width: calc((100% / 1) - 40px);
    margin: 20px 20px 100px 20px;
  }

  .imageBoard .imageBoard_lay .box {
    width: calc((100% / 3) - 40px) !important;
    margin-left: 20px;
    margin-right: 20px;
  }

  .mrb_r2 {
    grid-template-columns: repeat(auto-fill, 32%);
  }
}

@media (max-width: 1100px) {}

@media (max-width: 900px) {
  .pc_header {
    display: none;
  }

  .m_header {
    display: block;
  }

  .top_margin {
    height: 59px;
  }

  .introSec {
    margin-bottom: 0px;
  }

  .intro_lay_border {
    /* position: relative;
    top: -100px; */

  }

  /* .mainrowbanner{
    margin-top: 0;
    padding: 50px 0;
  } */

  .mbookswiperSection {
    margin-top: 80px;
    padding: 100px 0px 10px 0px;
    /* background: linear-gradient(#f8f3ed, #f8f3ed 450px, #D9CEBD 450px,#e7dcc9 480px 500px, #f7f3ea 500px 515px, #dbd8d2 515px,#f8f3ed 540px); */
    background: linear-gradient(0deg, #f8f3ed, #f8f3ed 90px, #dbd8d2 115px, #f7f3ea 115px 130px, #e7dcc9 130px 175px, #D9CEBD 200px, #f8f3ed 200px);
  }

  .mbookswiperSection .mbookSwiper .swiper-slide {
    width: 150px;
  }



  .mc_c1, .mc_c2 {
    width: 100%;
  }


  /* .mc_c1_r1{
    margin-bottom: 50px; 
  } */

  .mc_c2_r1_r2 {
    display: flex;
    flex-direction: column;
    column-gap: 20px;
    margin-bottom: 40px;
  }

  .mrb_r2 {
    grid-template-columns: repeat(auto-fill, 50%);
  }

  .mc_video {
    margin-bottom: 40px;
  }

  .imageBoard .imageBoard_lay .box {
    margin-bottom: 30px;
  }
}

@media (max-width: 800px) {

  .main_banner .promo_banner_pc {
    display: none;
  }

  .main_banner .promo_banner_m {
    display: block;
  }

  .imageBoard .imageBoard_lay .box {
    width: calc((100% / 2) - 40px) !important;
    margin-left: 20px;
    margin-right: 20px;
  }

  .bookBoard .bookBoard_lay .box .box_text .box_text_content {
    /* -webkit-line-clamp: 7;  */
  }


  .textBoard .textBoard_lay .row .num,
  .textBoard .textBoard_lay .row .cate,
  .textBoard .textBoard_lay .row .count {
    display: none;
  }

  .textBoard .textBoard_lay .row .date {
    display: none;
    /* width: 70px; 
    display: flex; 
    justify-content: center; 
    align-items: flex-end; */

  }

  .boardDetail {
    padding: 50px;
  }

  .g_Detail {
    padding: 50px;
  }

  .introSec .inner {
    width: 100%;
  }

  .intro_lay_border {
    padding: 0 20px;
  }

  .intro_lay_border_inner {
    font-size: 20px;
  }


  .notice .notice-line .notice_board_name {
    display: none;
  }

  .mrb_r2 {
    /* grid-template-columns: repeat(auto-fill, 100%); */
    row-gap: 50px;
  }




  .mobile_paging {
    display: block;
  }

  .pc_paging {
    display: none;
  }
}

@media (max-width: 600px) {
  .inner {
    /* margin: 3px; */
  }

  .imageBoard .imageBoard_lay .box {
    width: calc((100% / 1) - 40px) !important;
    margin-left: 20px;
    margin-right: 20px;
  }

  .bookBoard .bookBoard_lay .box .box_row1 {
    display: block;
  }

  .bookBoard .bookBoard_lay .box .box_thum {
    width: 100%;
  }

  .bookBoard .bookBoard_lay .box .box_text {
    width: 100%;
    padding: 40px 0 0 0;
  }

  .bookBoard .bookBoard_lay .box .box_text .box_text_content {
    position: static;
    /* -webkit-line-clamp: 7;  */
    width: calc(100vw);
  }

  .main_cont {
    margin-top: 50px;
  }


  .bible_section {
    /* display: flex;
    flex-direction: column;
    justify-content: flex-end; */
  }

  .boardDetail {
    padding: 20px 10px;
    border: none;
  }

  .boardDetail .bd_content_lay {
    padding: 50px 0px 0px 0px;
  }

  .g_Detail {
    padding: 20px 10px;
    border: none;
  }

  .g_Detail .bd_content_lay {
    padding: 50px 0px 0px 0px;
  }

  .intro_lay_border_inner {
    padding: 20px;
    font-size: 18px;
  }


  .notice .notice-line .notice_box .nb_date {
    display: none;
  }

}

@media (max-width: 500px) {
  .intro_lay_border_inner {
    font-size: 18px;
  }

}


@media (hover: hover) and (pointer: fine) {

  /* when supported */
  .card_imgSection .board .imageBoard .imageBoard_lay .box .box_thum:hover {
    /* transform : scale(1.5); */
    /* z-index: 11; */
    /* border: 1px solid #fff;
    box-sizing: border-box;
    box-shadow: 0px 0px 15px #11111150 , 0px 0px 1px #11111180; */
  }

  .card_imgSection .board .imageBoard .imageBoard_lay .box .box_thum:hover img {
    transform: scale(1.3);
  }
}

@supports (-webkit-touch-callout : none) {
  .introSec {
    background-attachment: scroll;
  }
}

@supports not (-webkit-touch-callout : none) {}