@charset "UTF-8";
/************* font *****************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.serif {
  font-family: "Noto Serif KR", serif;
}
.deco {
  font-family: "PT Serif", serif;
  font-style: normal;
}
.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/************inner size*************/
.inner {
  padding: 0 70px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
section {
  overflow: hidden;
  margin-bottom: 100px;
}
/*********topbtn***********/
.topbtn {
  z-index: 999;
  cursor: pointer;
  background: var(--main-color);
  height: 30px;
  position: relative;
}
.topbtn:before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 60%;
  left: 50%;
  transition: 0.3s;
}
.topbtn:hover:before {
  top: 50%;
}
/**********common************/
.video_wrap {
  position: absolute;
  width: 100%;
  height: 0%;
  padding-top: 56.25%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.video_wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000010;
  left: 0;
  top: 0;
  z-index: 1;
}
.video_wrap iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 120%;
}
main {
  overflow: hidden;
}
.main_title {
  color: #fff;
}
.main_title h2 {
  font-size: 60px;
  margin: 20px 0 50px;
  line-height: 1.4;
}
.main_title h3 {
  font-size: 30px;
  font-weight: 400;
}
.main_title p {
  font-size: 18px;
}
.main_title .line {
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
}
/*****fixedbtns******/
.fixedbtns {
  position: fixed;
  background: #fff;
  box-shadow: 10px 10px 15px 15px rgba(0,0,0,0.06);
  right: 25px;
  top: 120px;
  z-index: 99;
  border-radius: 200px 200px 0 0;
}
.fixedbtns ul {
  padding: 30px 20px;
}
.fixedbtns ul li a {
  display: block;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.fixedbtns ul li:last-of-type a {
  border-bottom: none;
}
.fixedbtns ul li a span {
  display: block;
  font-size: 13px;
  color: #666;
}
/************header***********/
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 998;
  transition: all 0.5s ease;
  white-space: nowrap;
  background: transparent;
  overflow: hidden;
}
header > .inner {
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: auto;
  transition: all 0.5s;
  height: 130px;
}
header.on {
  background: #fff;
}
header.on > .inner {
  padding: 0 70px;
  max-width: 100%;
  height: 100px;
}
header .header_logo {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
}
header .header_logo a img {
  transition: all 0.5s;
  vertical-align: middle;
  width: 250px;
}
nav {
  margin: auto 100px auto auto;
}
nav .nav_list {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  transition: all 0.5s;
}
nav .nav_item {
  position: relative;
}
nav .nav_item > a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: block;
  transition: 0.3s;
  height: 130px;
  line-height: 130px;
  text-align: center;
}
header.on nav .nav_item > a {
  height: 100px;
  line-height: 100px;
}
nav .nav_item > a span {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}
nav .nav_item > a.active span {
  border-bottom: 2px solid #fff;
}
header.on nav .nav_item > a.active {
  color: var(--main-color);
}
header.on nav .nav_item > a.active span {
  border-bottom: 2px solid var(--main-color);
}
nav .nav_item:hover > a span {
  border-bottom: 2px solid #fff;
}
nav .nav_dropdown a.active span {
  color: var(--main-color);
  font-weight: 600;
  border-bottom: 1px solid var(--main-color);
}
header.on nav .nav_item:hover > a span {
  color: var(--main-color);
}
nav .nav_dropdown {
  transition: all 0.3s;
  height: 100%;
  padding-top: 30px;
}
nav .nav_dropdown a {
  display: block;
  padding: 5px 0;
  font-size: 18px;
  transition: all 0.3s;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
nav .nav_dropdown a span {
  padding-bottom: 3px;
}
nav .nav_dropdown a:hover {
  color: var(--main-color);
}
.white_bg {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
  overflow: hidden;
  padding: 20px 70px;
  display: flex;
  justify-content: start;
  align-items: end;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}
.white_bg.on {
  height: 500px;
  opacity: 1;
}
.white_txt {
  display: flex;
  justify-content: start;
  align-items: end;
  gap: 25px;
  white-space: wrap;
  width: 30%;
}
.white_txt img {
  border-radius: 20px;
  width: 200px;
}
.white_txt h2 {
  color: var(--main-color);
  margin-bottom: 15px;
  font-size: 32px;
}
.white_txt p {
  font-size: 16px;
  color: #333;
  white-space: wrap;
  padding-bottom: 20px;
}
header .lang_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .lang_btns a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
  position: relative;
  padding-right: 30px;
}
header .lang_btns a span {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(45deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  width: 12px;
  height: 12px;
  transition: all 0.3s;
}
header.on .nav_item > a {
  color: #222;
}
header.on .lang_btns a {
  color: #333;
}
header.on .lang_btns a span {
  border-color: #333;
}
header.on .nav_item > a:before {
  background: #222;
}
header.sub_on .nav_item > a {
  color: #222;
}
header.sub_on .lang_btns a {
  color: #333;
}
header.sub_on .lang_btns a span {
  border-color: #333;
}
header.sub_on .nav_item > a:before {
  background: #222;
}
header.sub_on {
  background: #fff;
}
header.sub_on .inner {
  padding: 0 70px;
  max-width: 100%;
  height: 100px;
}
.menubtn {
  width: 35px;
  height: 27px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.menubtn div {
  height: 3px;
  background: #fff;
  width: 100%;
}
.menubtn div:nth-of-type(2) {
  width: 60%;
}
header.on .menubtn div {
  background: #222;
}
.menubox {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background: url(/img/menuboxbg.jpg) no-repeat center / cover;
  display: none;
  z-index: 999;
}
.menubox .inner {
  padding: 0;
}
.menubox_top {
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  transition: all 0.5s;
  height: 130px;
  padding: 0 70px;
}
.menubox_logo {
  text-align: center;
}
.menubox_logo a img {
  transition: all 0.5s;
  width: 250px;
}
header.on .menubox_top {
  padding: 0 70px;
  max-width: 100%;
  height: 100px;
}
.closebtn {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  right: 0;
  top: -15px;
}
.closebtn div {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 3px;
  background: #fff;
}
.closebtn div:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.closebtn div:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu_list li {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 50px 70px;
  transition: all 0.3s;
  background: transparent;
}
.menu_list li:hover {
  background: rgba(0, 0, 0, 0.2);
}
.menu_list li a {
  color: #fff;
}
.menu_list li > a {
  font-size: 30px;
  padding-right: 15%;
  font-weight: 600;
  line-height: 1;
}
.menu_list li .dropdown {
  display: flex;
  justify-content: start;
  align-items: start;
  text-align: left;
  flex-wrap: wrap;
  width: 100%;
}
.menu_list li .dropdown a {
  font-size: 20px;
  width: 25%;
  margin-bottom: 15px;
}
.menu_list li .dropdown a span {
  position: relative;
  font-weight: 200;
}
.menu_list li .dropdown a span::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: -3px;
  transition: all 0.3s;
}
.menu_list li .dropdown a:hover span::before {
  width: 100%;
}
/***************footer***************/
footer {
  background: #333;
  padding: 30px 0;
  color: #fff;
}
footer .footer_logo {
  margin-right: 50px;
}
footer .footer_logo img {
  width: 280px;
}
footer > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_content {
  width: 100%;
}
.footer_content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2em;
  color: #fff;
}
.footer_content p span {
  padding: 0 15px;
}
.footer_content small {
  display: block;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #666;
  font-size: 11px;
  text-align: right;
}
/*.main common*/
.more {
  margin-top: 30px;
  display: inline-block;
  font-size: 16px;
  padding: 10px 40px;
  border: 1px solid #999;
  border-radius: 3px;
  text-align: center;
  color: #333;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.more:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: #222;
  transition: all 0.3s;
  z-index: 1;
}
.more:hover {
  color: #fff;
}
.more:hover:before {
  top: 0;
  z-index: -1;
}
.location_table {
  border-color: #bbb;
  color: #333;
  width: 100%;
}
.location_table th {
  background: #999;
  color: #fff;
}
.location_table th,
.location_table td {
  padding: 15px;
  text-align: center;
  font-size: 18px;
}
.location_search {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.location_search a {
  text-align: center;
  padding: 10px 50px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.location_search a img {
  height: 25px;
}
.location_search a span {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
}
.location_search a:nth-child(2) {
  margin: 0 50px;
}
.location_search a:nth-child(1) span {
  color: #03cf5d;
}
.location_search a:nth-child(2) span {
  color: #0089ff;
}
.location_search a:nth-child(3) span {
  color: #dd4436;
}
/*****************visual****************/
.visual {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #f4f4f4;
  overflow: hidden;
  height: 100vh;
}
.visual .visual_slide {
  position: relative;
  height: 100%;
}
.visual .visual_slide .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 5s;
}
.visual .visual_slide .swiper-slide-active > img {
  transform: translate(-50%, -50%) scale(1.1);
}
.visual .visual_slide .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.visual .visual_txt {
  position: relative;
  width: 1440px;
  color: #fff;
  z-index: 999;
}
.visual .visual_slide .swiper-slide-active .visual_txt {
  animation: visual_txt 1.5s 1 normal;
}
@keyframes visual_txt {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.visual .visual_txt h2 {
  font-size: 48px;
  line-height: 1.3;
}
.visual .visual_txt p {
  font-size: 18px;
  margin: 10px 0 50px;
}
.visual .visual_txt a {
  background: #5eb0cf;
  color: #fff;
  padding: 10px 50px;
  border-radius: 100px;
  font-size: 20px;
}
.visual .swiper-pagination.swiper-num {
  position: absolute;
  width: 1440px;
  display: flex;
  justify-content: start;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 151px;
  gap: 50px;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet {
  background: none;
  width: auto;
  height: auto;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  position: relative;
  text-align: left;
  transition: all 0.5s;
  width: 110px;
  margin: 0 0 0 -50px !important;
  opacity: 0.3;
}
.swiper-pagination.swiper-num > span:first-of-type {
  margin-left: 0 !important;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet .line {
  display: block;
  width: 0;
  height: 3px;
  background: #fff;
  opacity: 0;
  margin: auto;
  margin-top: 15px;
  position: relative;
  left: 0;
  transition: all 0.5s;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet .line::before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  left: 0;
  bottom: 0;
  background: var(--main-color);
  z-index: 9;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet-active .line {
  opacity: 1;
  width: 110px;
  left: -37%;
}
.swiper-pagination.swiper-num .swiper-pagination-bullet-active .line::before {
  animation: visual_line 5.5s 1 ease-in-out;
}
@keyframes visual_line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.visual .scroll_down_box {
  position: absolute;
  color: #fff;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  text-align: center;
}
.visual .scroll_down_box p {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 5px;
  writing-mode: vertical-rl;
}
.visual .scroll_down_box .scroll_down_mouse {
  background: rgba(255, 255, 255, 0.27);
  width: 1px;
  height: 100px;
  position: absolute;
  left: 6px;
  bottom: 130px;
  overflow: hidden;
}
.visual .scroll_down_box .scroll_down_mouse span {
  background: #fff;
  display: block;
  width: 1px;
  height: 100px;
  position: absolute;
  left: 0;
  top: -100%;
  animation: wheeldown 2s 1s infinite normal;
}
@keyframes wheeldown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
/******business*******/
.busi .inner {
  padding: 0;
  max-width: 1440px;
}
.busi_cont {
  display: flex;
  justify-content: space-between;
}
.busi_title {
  position: relative;
  height: 620px;
  width: 468px;
  border-radius: 24px;
  overflow: hidden;
}
.busi_title .txt {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 9;
  text-align: left;
  padding: 50px;
}
.busi_title .txt h2 {
  font-size: 50px;
}
.busi_title .txt p {
  font-size: 18px;
}
.busi_title .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.busi_group {
  display: flex;
  align-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 944px;
  gap: 24px;
}
.busi_group .item {
  display: block;
  position: relative;
  width: 296px;
  height: 296px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}
.busi_group .txt {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 9;  
}
.busi_group .txt h3 {
  font-weight: 400;
  font-size: 18px;
}
.busi_group .txt h2 {
  font-size: 40px;
}
.busi_group .txt p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all .5s;
  opacity: 0;
  margin-top: 0;
}
.busi_group .item:hover .txt p {
  margin-top: 20px;
  opacity: 1;
}
.busi_group .txt p span {
  color: #000;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.busi_group .txt p span::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.busi_group .item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.busi_group a:last-of-type {
  width: 100%;
  text-align: left;
}
.busi_group a:last-of-type .txt {
  padding: 50px;
}
.busi_group a:last-of-type .txt p {
  justify-content: start;
}
/*****법인소개******/
.about {
  position: relative;
  padding: 150px 0;
}
.about .inner {
  padding: 0 200px 0 70px;
}
.about .about_cont {
  width: 100%;
  display: flex;
  height: 250px;
  gap: 30px;
  overflow: hidden;
  margin-top: 100px;
}
.about .about_cont li {
  width: calc(100% / 6);
  color: #fff;
  display: flex;
  align-items: end;
  cursor: pointer;
  border-bottom: 3px solid #fff;
  transition: all .3s;
  position: relative;
}
.about .about_cont li .title {
  display: flex;  
  align-items: end;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.about .about_cont li .title h3 {
  font-size: 28px;
}
.about .about_cont li .title h3 small {
  font-size: 16px;
  display: block;
  font-weight: 300;
}
.about .about_cont li .title i {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 20px;
  opacity: 0;
  transition: all .3s;
}
.about .about_cont li .item {
  position: absolute;
  width: 100%;
  bottom: -253px;
  height: 250px;
  transition: all .3s;
  padding: 40px 20px;
  border-radius: 30px 0 30px 0;
}
.about .about_cont li .item p {
  font-size: 18px;
}
.about .about_cont li:nth-of-type(1) .item {
  background: url(/img/about01.jpg) no-repeat center / cover;
}
.about .about_cont li:nth-of-type(2) .item {
  background: url(/img/about02.jpg) no-repeat center / cover;
}
.about .about_cont li:nth-of-type(3) .item {
  background: url(/img/about03.jpg) no-repeat center / cover;
}
.about .about_cont li:nth-of-type(4) .item {
  background: url(/img/about04.jpg) no-repeat center / cover;
}
.about .about_cont li:nth-of-type(5) .item {
  background: url(/img/about05.jpg) no-repeat center / cover;
}
.about .about_cont li:nth-of-type(6) .item {
  background: url(/img/about06.jpg) no-repeat center / cover;
}
.about .about_cont li:hover {
  border-bottom: 1px solid transparent;
}
.about .about_cont li:hover .title i {
  opacity: 1;
}
.about .about_cont li:hover .item {
  bottom: 0;
}
/*****언론보도*******/
.gallery {
  padding: 150px 0; 
  overflow: visible;
  background: url(/img/visual02.jpg);
}
.gallery .inner {
  padding-right: 0;
}
.gallery .gall_title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 70px;
}
.gallery .gall_title h4 {
  color: var(--main-color);
  padding-left: 10px;
}
.gallery .gall_title h2 {
  font-size: 60px;
  margin: 10px 0 25px;
  line-height: 1em;
}
.gallery .btns {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
.gallery .btns .viewall {
  height: 60px;
  line-height: 60px;
  border-radius: 100px;
  background: var(--main-color);
  text-align: center;
  padding: 0 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.gallery .btns .slide_btns {
  display: flex;
  gap: 10px;
}
.gallery .btns .slide_btns div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f4f4;
  cursor: pointer;
  position: relative;
  transition: all .3s;
}
.gallery .btns .slide_btns div:first-of-type::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--main-color);
  border-left: 3px solid var(--main-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gallery .btns .slide_btns div:last-of-type::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--main-color);
  border-right: 3px solid var(--main-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gallery .btns .slide_btns div:hover {
  background: var(--main-color);
}
.gallery .btns .slide_btns div:hover::before {
  border-color: #fff;
}
.gallery .gall_slide {
  padding-right: 250px;
  overflow: visible;  
}
.gallery .gall_slide .swiper-slide {
  width: 340px !important;
  background: #f9f5ef;
  overflow: hidden;
  border-radius: 20px;
  transition: all .3s;
}
.gallery .gall_slide .swiper-slide:hover {
  transform: translateY(-20px)
}
.gall_slide .box .subject,
.gall_slide .box .content {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gall_slide .thumb img {
  width: 100%;
  height: 250px;
  border-radius: 20px;
}
.gall_slide .box {
  color: #333;
  padding: 30px 20px;
}
.gall_slide .box .subject {
  font-size: 17px;
  font-weight: 600;
}
.gall_slide .box .content {
  margin: 5px 0 15px;
  font-weight: 300;
  font-size: 15px;
}
.gall_slide .box .morebtn {
  display: block;
  color: var(--main-color);
  font-weight: 600;
}
/********맞춤후원안내**********/
.dona .mini_inner {
  max-width: 1200px;
}
.dona .title {
  text-align: center;
  margin-bottom: 50px;
}
.dona .title h4 {
  color: #ff7b75;
  font-size: 18px;
}
.dona .title h2 {
  font-size: 60px;
  color: var(--main-color);
  margin: 25px auto;
  line-height: 1em;
}
.dona .title p {
  font-size: 18px;
}
.dona_cont {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  flex-wrap: wrap;
}
.dona_cont > a,
.dona_cont > div {
  position: relative;
  width: 23.5%;
  height: 282px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.dona_cont > a > img,
.dona_cont > div > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.dona_cont a h2 {
  font-size: 32px;
  font-weight: 700;
}
.dona_cont a h2 small {
  font-weight: 400;
  display: block;
  font-size: 20px;
  text-align: center;
}
.dona_cont .txt {
  color: var(--main-color);
  align-items: end;
  justify-content: start;
  font-size: 20px;
}
.dona_cont .heart {
  display: flex;
  justify-content: end;
  align-items: end;
}
.dona_cont .heart img {
  width: 35%;
  height: auto;
  position: static;
}
.dona_cont > div:last-of-type {
  width: 49%;
}
.dona_add {
  flex-direction: column;
  justify-content: ;
}
.dona_add h2 {
  font-size: 40px;
}
.dona_add h3 {
  color: navy;
}
.bank {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.bank p {
  font-weight: 700;
  font-size: 24px;
  padding-left: 10px;
  color: #333;
}
.bank img {
  width: 150px;
  background: #fff;
  border-radius: 8px;
}
/*******메인공지자료실*********/
.bbsmain .inner {
  display: flex;
  justify-content: space-between;
  padding: 0;
  max-width: 1440px;
}
.bbsmain .item {
  width: 47%;
}
.bbsmain .title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.bbsmain .title h2 {
  font-size: 36px;
  font-weight: 800;
}
.bbsmain .title a {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
  line-height: 1.1em;
  display: block;
  transition: all .3s;
  font-weight: 600;
}
.bbsmain .title a:hover {
  padding-bottom: 5px;
}
.bbsmain .bbs_cont li {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}
.bbsmain .bbs_cont li p {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  padding-right: 50px;
  transition: all .3s;
}
.bbsmain .bbs_cont li small {
  color: #b6b6b6;
  font-size: 15px;
  display: block;
  margin-top: 10px;  
}
.bbsmain .bbs_cont li::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 25px;
  background: url(/img/plus.png) no-repeat center / cover;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  transition: all .3s;
}
.bbsmain .bbs_cont li:hover::before {
  transform: translateY(-50%) rotate(180deg);
}
.bbsmain .bbs_cont li a:hover p {
  color: var(--main-color);
} 