@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");

/*slideMenu start*/
#slideMenu {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 99999;
}
#slideMenu li.active a {
    background: url(../images/common/slide_ico_act.png) no-repeat center / contain;
}
#slideMenu li a {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/common/slide_ico_def.png) no-repeat center / contain;
}
/*slideMenu end*/

.relative{
	position:relative;
}
.center{
	text-align:center;
}
.overflow-x{
	overflow-x:auto;
}


.flex{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex01{
  display: flex;
  align-items: center;
}
.flex02{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
}
.flex03{
	display: flex;
	align-items: center;
	justify-content: flex-start;	
}
.flex04{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;	
}
.flex05{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.flex06{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.bold{font-weight:bold;}

.grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-column-gap: 20px;
}
.grid01{
	display: grid;
	grid-template-columns: repeat(3, 31%);
    grid-column-gap: 2%;
}

.margin00{margin:20px 0px;}
.margin01{margin:30px 0px;}
.margin02{margin:0px 0px 100px;}
.margin03{margin:50px 0px;}
.margin04{margin:0px 0px 300px;}
.margin05{margin:0px 0px 20px;}
.margin06{margin:0px 0px 0px 50px;}
.margin07{margin:0px 0px 350px;}
.margin08{margin:60px 0px 30px;}
.margin09{margin:0px 0px 50px;}
.margin10{margin:0px 0px 30px;}


.padding00{padding:20px 30px;}
.padding01{padding:30px 20px;}
.padding02{padding:0px 0px 100px !important;}
.padding03{padding:5px 0px;}

.NotificationWrap{margin:15px 0px;}
.NotificationWrap li{
	display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    line-height: 25px;
}
.notificationType01{
	background: #f7f9fa;
    padding: 30px;
    border: 1px solid #e1eaef;
    border-radius: 10px;
}


/*icon*/
.icon_bell{
	background:url(../images/common/icon_bell.png)no-repeat;
	width:50px;
	height:40px;
	display:block;
}
.icon_bell01{
	background:url(../images/common/icon_bell01.png)no-repeat;
	width:50px;
	height:40px;
	display:block;
}
.icon_nero{
	background: url(../images/common/icon_nero.png) no-repeat;
    width: 9px;
    height: 15px;
    display: block;
    background-size: contain;
    margin: 0px 0px 0px 5px;
}
.icon_down{
    background: url(../images/common/icon_down.png) no-repeat;
    width: 40px;
    height: 40px;
    display: block;
    background-size: contain;
    margin: 0px 0px 0px 5px;
}


.icon_check{
	border: 1px solid rgba(0, 0, 0, 0.3);
    height: 21px;
    border-radius: 50%;
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 0px;
    margin: 5px 7px 0px 0px;
    padding: 8px;
}

.btnType01{
	position: relative;
    margin: 50px auto;
    display: block;
    width: fit-content;
    font-size: 20px;
    line-height: 60px;
    margin-top: 30px;
    color: rgba(0, 0, 0, 0.6);
}
.btnType01::after{
	content: '';
    position: absolute;
    bottom: 0px;
    left: -25px;
    width: 220px;
    height: 50px;
    background: url(../images/common/btn_nero01.png) no-repeat;
    background-position: bottom;
    opacity: 0.2;
}
.btnType02{
	margin: 10px 0px;
    display: flex;
    border: 1px solid #d6d8db;
    background: #ffffff;
    color: #0085cd;
    padding: 3px 15px;
    border-radius: 6px;
    font-size: 16px;
    width: fit-content;
	transition: all 0.9s ease 0s;
}
.btnType02:hover{
    background: #0085cd;
	border: 1px solid #0085cd;
    color: #ffffff;
}
.btnType02 span.icon_nero{
	transition: all 0.9s ease 0s;
}
.btnType02:hover span.icon_nero{
	background: url(../images/common/icon_nero01.png) no-repeat;
	width: 9px;
    height: 15px;
    display: block;
    background-size: contain;
    margin: 0px 0px 0px 5px;
}

.btnType03{
	margin: 10px 0px;
    display: flex;
    border: 1px solid #d6d8db;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    font-size: 18px;
    width: auto;
    transition: all 0.9s ease 0s;
    justify-content: space-between;
}
.btnType03:hover{
    background: #f9f9f9;
	border: 1px solid rgba(0,0,0,0.3);
    color: #000000;
	font-weight:bold;
}
.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}
.btn-wrap.center {
  justify-content: center;
}

.btnType04 {
  display: inline-block;
  min-width: 5.625rem;
  padding: 1.2rem 1.25rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color ease 0.2s;
  border-radius: 20px;
}
.btnType04:hover {
  background: var(--bg-sky);
}
.btnType04 img {
  display: inline-block;
  width: 14px;
  margin: 0 0 -0.125rem 0.5rem;
}

.btn-list {
  width: 120px;
}

/*¸ð´ÞÃ¢*/
.modal-dialog table{
	font-size:16px;
}
.ui-draggable .ui-dialog-titlebar {
    border-bottom: 0px solid #f1f1f1 !important;
}
#myModal .modal-content{padding:60px;}
.modal-dialog table {
	border-top: 3px solid #169be4 !important;
}
.modal-dialog table th {
	background: #169be4;
	color: #ffffff;
}
.modal-dialog table td.bgGreen{
	background: #fff7e1;
	color:#222222;
	font-weight:bold;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
	background: none;
	border: 0px;
	border-bottom: 1px solid #f1f1f1;
	padding: 0px !important;
	margin-bottom: 0px !important;
}
.ui-dialog .ui-dialog-title {
	width: 100% !important;
}

#section2 .flex02 div .btnType01{
	 display:block;font-weight:bold;font-size:20px;
}


/*¼­ºê¸Þ´º*/
.subBarMenuWrap {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.subBarMenuWrap .inner{
	padding:0px !important;
}
.subBarMenuWrap li.selected {
    font-weight: bold;
    background: #169be4;
    color: #ffffff;
}
.subBarMenuWrap li.selected a{
    color: #ffffff !important;
}
.subBarMenuWrap li {
     border-bottom: 0px;
     height: 63px;
     font-weight: bold;
	 height: 55px;
     display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: normal;
    color: rgba(0, 0, 0, 0.7);
}
.subBarMenuWrap ul.grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     border-left: 1px solid rgba(0, 0, 0, 0.15);
	 gap:0px;
}
.com_layout{
    margin: 0px auto;
    max-width: 1200px;
    position: relative;
}


/*¸ÞÀÎÈ­¸é*/
	.pic_li_lt li:first-child .lt_img img, .pic_li_lt li .lt_img video,
	.pic_lt .lat_title,.pic_li_lt .lat_title,	#section5 .noticeWrap .lt_info {
		display:none;
	}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul,#section5 .pic_lt ul{
	display: flex;
	gap:20px;
}
#section5 .pic_lt li .lt_img {
    margin: 0px;
}
#section5 .pic_lt li a:nth-child(2) {
     padding: 10px 10px 0px 10px;
	 display: block;
}
#section5 .pic_lt .lt_info{padding: 5px 10px 15px 10px;}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li,#section5 .pic_lt li{
	border: 1px solid #d6d8db;
    border-radius: 30px;
    width: 33.3%;
	background:#ffffff;
	min-width: 250px;
	padding:0px;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a{
	display:block;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(1){
    overflow: hidden;
    border-radius: 30px 30px 0px 0px;
    height: 270px;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(1) img{
    width:100%;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(2){
	padding: 20px 30px 0px 30px;
	font-size: 20px;
    line-height: 30px;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li .lt_info{
	padding: 5px 30px 20px 30px;
    opacity: 0.4;
    font-size: 16px;
}
#section5 .fp-tableCell .inner .cont .media .lt_more{display:none;}
#section5 .media{display:block;}
#section5 h3 a{
	font-size: 18px;
    color: rgba(0, 0, 0, 0.3);
}
#section5 .latest_top_wr .pic_li_lt ul{
	border-top: 3px solid #111111;
}

#section5 .latest_top_wr .pic_li_lt ul li{
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#section5 .latest_top_wr .pic_li_lt ul li a.lt_img,#section5 .latest_top_wr .pic_li_lt ul li .sv_member,
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li .lt_info .lt_nick,#section5 .latest_top_wr .pic_li_lt ul li .lt_more,#section5 .latest_top_wr .lt_more{
    display:none;
}
#section5 .latest_top_wr .pic_li_lt ul li a{
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0px;
}
#section5 .latest_top_wr .pic_li_lt ul li .lt_info{
    font-weight: bold;
    color: rgba(0, 0, 0, 0.3);
    font-size: 18px;
	width: 50px;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(1), #section5 .pic_lt li a:nth-child(1){
	overflow: hidden;
    border-radius: 30px 30px 0px 0px;
}
#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(2) {
    padding: 10px 20px 0px 20px
}



/*notice*/
.noticetype01{
	background: #f7f9fa;
    padding: 40px 60px;
    border: 1px solid #e1eaef;
    border-radius: 10px;
}
.noticetype02{
	background: #ffffff;
    padding: 40px 60px;
    border: 1px solid #e1eaef;
    border-radius: 10px;
}
.noticetype01 h4{
	border-bottom: 1px solid #e1eaef;
	padding-bottom:20px;
	margin-bottom:20px;
	color:#0085cd;
}
.noticetype01 div,.noticetype02 div{
	font-size:16px;
	color:#666666;
}
.noticetype02 h4{
	border-bottom: 1px solid #e1eaef;
	padding-bottom:20px;
	margin-bottom:20px;
	color:#1a1a1a;
}



/*Àç´Ü¼Ò°³*/
.subcont .main-txt {
  margin-bottom: 1.25rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -1.5pt;
  color: var(--color-primary);
}
.foundingPhilosophy .img-wrap div {
  margin-bottom: 1.563rem;
  text-align:center;
}
.foundingPhilosophy .box-wrap{
	background:url(../images/sub/foundingPhilosophy_bg01.jpg)no-repeat;
	background-size:cover;
	padding:160px 100px;
}
.inner .pc,.content-wrap .pc{
	display:block;
}
.inner .mobile,.content-wrap .mobile{
	display:none;
}

.foundingPhilosophy .txt-wrap .txt ul li{
	position: relative;
    padding: 0px 0px 0px 15px;
}
.foundingPhilosophy .txt-wrap .txt ul li:before{
	content:'';
	position:absolute;
	left:0px;
	top: 12px;
	width:10px;
	height:10px;
	background:url(../images/common/icon_point01.png)no-repeat;
}


/*»ç¾÷¼Ò°³*/
.BusinessIntroduction .box-wrap .tapType01 ul li a span{
	transition: all 0.9s ease 0s;
}
.BusinessIntroduction .box-wrap .tapType01 ul li a span:nth-child(1){
	border: 1px solid #0092e1;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:nth-child(1) a span:nth-child(1){
    background: url(../images/sub/BusinessIntroduction_img01.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:nth-child(2) a span:nth-child(1){
    background: url(../images/sub/BusinessIntroduction_img02.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:nth-child(3) a span:nth-child(1){
    background: url(../images/sub/BusinessIntroduction_img03.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:nth-child(4) a span:nth-child(1){
    background: url(../images/sub/BusinessIntroduction_img04.png) no-repeat;
    background-position: center;
}

.BusinessIntroduction .box-wrap .tapType01 ul li:hover:nth-child(1) a span:nth-child(1){
    background: #0085cd url(../images/sub/BusinessIntroduction_img01_h.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:hover:nth-child(2) a span:nth-child(1){
    background:#0085cd url(../images/sub/BusinessIntroduction_img02_h.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:hover:nth-child(3) a span:nth-child(1){
    background:#0085cd url(../images/sub/BusinessIntroduction_img03_h.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li:hover:nth-child(4) a span:nth-child(1){
    background:#0085cd url(../images/sub/BusinessIntroduction_img04_h.png) no-repeat;
    background-position: center;
}
.BusinessIntroduction .box-wrap .tapType01 ul li a span:nth-child(2){
	color: var(--color-primary);
	margin-top:10px;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div{
	background: rgba(0, 76, 177, 0.95);
    position: absolute;
    right: -20px;
    top: 450px;
    width: 800px;
    height: auto;
    padding: 90px;
    color: #ffffff;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div span{
	font-size:20px;
	color:rgba(255,255,255,0.6);
	font-weight:bold;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div h3{
	font-size:45px;
	color:rgba(255,255,255,1);
	font-weight:bold;
	border-bottom:2px solid rgba(255,255,255,1);
	padding:10px 0px 50px;
	margin-bottom:50px;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div div{
	background: unset;
	position: unset;
    right: unset;
    bottom: unset;
    width: unset;
    height: unset;
	padding: 0px;
	font-size:22px;
	line-height: 40px;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(1) .bg{
	background:url(../images/sub/BusinessIntroduction_img01_b.jpg)no-repeat;
	height:850px;
	background-size:cover;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(2) .bg{
	background:url(../images/sub/BusinessIntroduction_img02_b.jpg)no-repeat;
	height:850px;
	background-size:cover;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(3) .bg{
	background:url(../images/sub/BusinessIntroduction_img03_b.jpg)no-repeat;
	height:850px;
	background-size:cover;
}
.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(4) .bg{
	background:url(../images/sub/BusinessIntroduction_img04_b.jpg)no-repeat;
	height:850px;
	background-size:cover;
}
.BusinessIntroduction .box-wrap .tabMenu li .selected{
	font-weight:bold;
}
.BusinessIntroduction .box-wrap .tabMenu li:nth-child(1) a.selected span:nth-child(1){
    background: #0085cd url(../images/sub/BusinessIntroduction_img01_h.png) no-repeat !important;
    background-position: center !important;
}
.BusinessIntroduction .box-wrap .tabMenu li:nth-child(2) a.selected span:nth-child(1){
    background: #0085cd url(../images/sub/BusinessIntroduction_img02_h.png) no-repeat !important;
    background-position: center !important;
}
.BusinessIntroduction .box-wrap .tabMenu li:nth-child(3) a.selected span:nth-child(1){
    background: #0085cd url(../images/sub/BusinessIntroduction_img03_h.png) no-repeat !important;
    background-position: center !important;
}
.BusinessIntroduction .box-wrap .tabMenu li:nth-child(4) a.selected span:nth-child(1){
    background: #0085cd url(../images/sub/BusinessIntroduction_img04_h.png) no-repeat !important;
    background-position: center !important;
}
#main .sec2 {
	background-color: #f5f7fa;
	padding-bottom: 16rem;
	position: relative;
}
#main .sec2 h3::before {
	background-image: linear-gradient(#f5f7fa, #f5f7fa), var(--gradient);
}
.business-slide {
	margin-top: 6rem;
    width: 100%;
    overflow: visible !important;
}
.business-slide .arrows{
    position: absolute;
    top: -50px;
    right: 0px;
    display: flex
}
.business-slide .arrows span {
	position: unset;
    top: calc((100% - 0rem) / 2);
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    margin-left: 15px;
    padding: 10px;
}
.business-slide .thumb {
	position: relative;
	border-radius: 3rem;
	overflow: hidden;
	user-select: none;
}
.business-slide .thumb img {
	max-width: 100%;
    height: 100%;
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
}
.business-slide .swiper-slide {
	transition: opacity 0.5s ease;
	opacity: 0.5;
	width:auto;
}
.business-slide .swiper-slide-active {
	opacity: 1;
}
.business-slide .swiper-slide-next {
	opacity: 1;
}
.business-slide .hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s;
	padding: 0 2rem;
}
.business-slide .hover .title{
	color: #ffffff;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 25px;
    margin-top: 50px;
}
.business-slide .thumb:hover .hover {
	opacity: 1;
}
.business-slide .hover .title{
	position: unset !important;
}
.business-slide .swiper-slide .title{
    position: absolute;
    left: 60px;
    bottom: 60px;
    color: #ffffff;
    font-weight: bold;
    font-size: 40px;
    text-shadow: 1px 1px 1px #00000042;
}

.business-slide .hover .txt {
	color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 3.3rem;
    text-align: center;
    transform: translateY(-20%);
    transition: transform 0.4s;
}
.business-slide .hover a .arrow {
	width: 20px;
}

.business-slide .hover .btn {
	transform: translateY(20%);
    transition: transform 0.4s;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: fit-content;
    border-radius: 30px;
    margin: 20px auto;
    padding: 5px 15px;
    color: #ffffff;
    height: auto;
    display: flex;
    align-items: center;
}
.business-slide .hover .btn span{
    color: #ffffff !important;
}
.business-slide .thumb:hover .txt {
	transform: translateY(0);
}
.business-slide .thumb:hover .btn {
	transform: translateY(0);
}
.business-slide .content {
	text-align: center;
	margin-top: 4rem;
}
.business-slide .content .title {
	font-size: 2.8rem;
	font-weight: 500;
}
.business-slide .content .txt {
	font-size: 2.2rem;
	color: #a3a4a3;
	margin-top: 1rem;
}
.business-slide .prev {
	left: -8rem;
	background: url('../images/common/prev.png') no-repeat center / 30%;
	opacity: 0.3;
	transition: all 0.9s ease 0s;
}
.business-slide .next {
	right: -8rem;
	background: url('../images/common/next.png') no-repeat center / 30%;
	opacity: 0.3;
	transition: all 0.9s ease 0s;
}
.business-slide .prev:hover {
	left: -8rem;
	background: url('../images/common/prev.png') no-repeat center / 30%;
	opacity: 1;
}
.business-slide .next:hover {
	right: -8rem;
	background: url('../images/common/next.png') no-repeat center / 30%;
	opacity: 1;
}
.business-pagination {
	display: none;
	justify-content: center;
	margin-top: 6rem;
}
.business-pagination .swiper-pagination-bullet {
	width: 1.4rem;
	height: 1.4rem;
	margin: 0 0.6rem;
	opacity: 0.1;
}
.business-pagination .swiper-pagination-bullet-active {
	background-color: #00b4a8;
	opacity: 1;
}





/*Á¤º¸°ø°³*/
.IntroductionInformation .box-wrap.BusinessPerformance .box01 div div{
	border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 10px;
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 1);
}
.BusinessPerformance .box01 div div{
	border-radius:10px;
}
.IntroductionInformation .box-wrap.BusinessPerformance .box01 div div:nth-child(2),
.IntroductionInformation .box-wrap.BusinessPerformance .box01 div div:nth-child(4),
.IntroductionInformation .box-wrap.BusinessPerformance .box01 div div:nth-child(6){
	border: 0px;
    border-radius: 0px;
    width: 1.3%;
    display: block;
    background: unset;
    font-size: 50px;
    text-align: center;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
}
.IntroductionInformation .box-wrap.BusinessPerformance .box01 div div .price{
    font-weight: bold;
    font-size: 20px;
}
.IntroductionInformation .box-wrap.BusinessPerformance .box01{
	margin-bottom: 140px;
    background: rgba(0, 0, 0, 0.03);
    padding: 50px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.IntroductionInformation .box-wrap.BusinessPerformance .totalPrice{
	font-weight:bold;
	font-size:40px;
	color: var(--color-primary);
}
.IntroductionInformation h4{
	font-size: 23px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}
.mainBottomBanner .mask,
.mainBottomBanner .content {
  position: unset;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 89px 20px 0px;
}
.mainBottomBanner {
	width: 100%;
	height: auto;
	margin: 0px 10px;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
}
.effect a.info {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 5%);
  display: block;
  padding-top: 200px;
  text-align: center;
}
.mainBottomBanner .mask,
.mainBottomBanner .content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  padding:0px;
}
.mainBottomBanner {
	width: 100%;
	height: 450px;
	margin: 0px 10px;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: default;
}

h3 span,h4 span{
    font-size: 17px;
    color: rgba(0, 0, 0, 0.4);
}
/*Á¤º¸°ø°³ Â÷Æ®*/
.chart-container2 .bb-chart-arc text {
	fill: #000;
	font-size: 12px;
}
.totalPrice{
	font-weight: bold;
    font-size: 40px;
    color: #0085cd;
    text-align: center
}
.s-chart-h6{
    width:300px;
	position: absolute;
	right: 250px;
}
.s-chart-h6 div{
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
}
.s-chart-h6 div span:nth-child(1){
    border-radius: 50% !important;
}
.s-chart-h6 div span:nth-child(2){
    font-weight: bold !important;
    font-size: 20px !important;
}




/*Àç´Ü¼Ò½Ä*/
#bo_list .td_date, #bo_list .td_num, #bo_list .td_name .sv_member, #bo_list .td_name .sv_guest,
#bo_list .td_datetime,.bo_v_nb li .nb_date,.bo_v_nb li .nb_tit{
    color: rgba(0, 0, 0, 0.5);
    font-weight: normal;
    font-size: 16px;
}
#bo_list_total {
    padding-top: 0px;
    font-size: 0.9rem;
    color: #bbbbbb;
    border-bottom: 0px;
}
#bo_list .tbl_head01 caption {
	display:none;
}
#bo_list .tbl_head01 {
    border-bottom: 0px solid #7f7f7f;
    margin: 15px 0px;
}
#bo_list .tbl_head01 td.td_subject{
	text-align:left;
}
#bo_sch {
	border-radius: 5px;
	padding: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px auto 100px;
    background:unset;
    border-radius: 0px;
}
#bo_sch .btn_submit {
	width: 70px;
	border: 0;
    background: #fff;
    color: unset;
    letter-spacing: -0.1em;
    cursor: pointer;
    height: 42px;
    font-size: 16px;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0.13);
    box-sizing: border-box;
    margin-left: 5px;
}
#bo_sch .frm_input {
    background: #fff;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    width: 40%;
}

#bo_sch select {
    width: unset;
    height: 42px;
    font-size: 16px;
    padding: 0px 10px;
    margin: 0px 5px;
    border: 0px solid rgba(0, 0, 0, 0.13);
	border-right: 1px solid rgba(0, 0, 0, 0.13);
}

#bo_sch legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

#bo_v header{
	position:unset !important;
	transition:unset !important;
}
#bo_v_title .bo_v_tit {
    text-align: center;
    padding: 30px 0px;
}

#bo_v header.on {
    background: unset !important;
    border-bottom: 0px !important;
}
#bo_v header.hide {
    transform: unset !important;
}

#bo_list .bo_tit{
	font-weight:normal;
	color:unset;
}
#bo_list .td_name {
    text-align: center !important;
}

#bo_v .cmt_btn,#bo_vc,#bo_vc_w,#bo_v_share{
	display:none;
}
#bo_v_info .profile_info .profile_info_ct {
    font-size: 0.9rem;
    opacity: 0.6;
}
#bo_v_con {
    margin: 30px 0 30px !important;
}
.bo_v_nb li {
    padding: 20px 15px !important;
}
.bo_v_nb {
    margin: 20px 0 100px !important;
}
.bo_v_nb li {
    font-size: 1rem !important;
}
.gall_row .col-gn-4 {
    width: 100% !important;
}
#bo_gall .gall_con {
    position: relative;
    display: flex;
}
#bo_gall .gall_text_href {
	margin: 0px 0px 30px 0px !important;
    width: 100%;
	padding:0px !important;
}
#bo_gall .gall_li_tit {
    margin: 0px !important;
}
#bo_gall .bo_tit {
    display: block;
    line-height: 30px;
    font-weight: bold;
    color: #000;
    font-size: 1.2em !important;
    margin-bottom: 15px;
}
#bo_gall .gall_info {
    line-height: 1.5em;
    line-height: 20px;
    font-size: 0.9rem;
    margin: 5px 0px;
	opacity: 0.6;
}
#bo_gall .gall_info {
    padding: 0px;
	margin: 0px;
}
#bo_gall .bo_cnt {
    color: rgba(0, 0, 0, 0.8) !important;
    line-height: 18px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 25px !important;
}
#bo_gall .gall_con {
    position: relative;
    display: flex;
}
#bo_gall .gall_img {
    border-bottom: 0px solid #eee !important;
    text-align: center;
    overflow: hidden;
    height: auto !important;
	width:40%;
}
#bo_gall .gall_box {
	position: relative;
    margin: 30px 0px 0px !important;
    border-radius: 0 0 2px 2px;
    padding: 30px 0px 0px;
    border-top: 1px solid #eee;
}
#bo_gall{
	margin-bottom:100px !important;
	border-bottom: 1px solid #eee !important;
	padding-bottom:30px;
}
#bo_gall .gall_li:last-child{
	padding-bottom:30px;
}
#bo_v_info {
    padding: 0px 0px 10px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
	text-align:center;
}
#bo_v_title .bo_v_tit {
    padding: 20px 15px;
}
#visit,#ft{display:none;}


/*Áö¿ø¹æ½Ä*/
.diagramType01 div div {
	border: 1px solid rgba(26, 166, 243, 0.5);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    justify-content: center;
}
.diagramType01 div.flex{
    width: auto;
    display: flex;
    align-items: stretch;
}
.diagramType01 div div:nth-child(2),.diagramType01 div div:nth-child(4),.diagramType01 div div:nth-child(6){
	border: 0px;
    padding: 0px;
    width: 30%;
}
.diagramType01 .name {
    color: var(--color-primary);
	font-weight:bold;
	text-align:center;
}

.MethodSupport .section04 .box01 div div:nth-child(2),
.MethodSupport .section04 .box01 div div:nth-child(4),
.MethodSupport .section04 .box01 div div:nth-child(6) {
    border: 0px;
    width: 30%;
    display: block;
    background: unset;
    display: flex;
}
.MethodSupport .section04 .box01 div div:nth-child(2) span,
.MethodSupport .section04 .box01 div div:nth-child(4) span,
.MethodSupport .section04 .box01 div div:nth-child(6) span{
    width: 20px;
    height: 20px;
}
.MethodSupport .section04 .box-wrap .diagramType01{overflow-x: auto;}
.MethodSupport .section05 .box-wrap{overflow-x:auto;}

.content-wrap .txt-wrap h3.title{
	position: relative;
    padding-left: 5.3rem;
    font-size: 1.875rem;
    margin-bottom: 2.3rem;
}
.content-wrap .txt-wrap h3.title::before{
	content:'';
	position:absolute;
	left:0px;
	top: -25px;
	width:80px;
	height:80px;
	background:url(../images/common/icon_nero02.png) no-repeat;
}
.subcont h4{
    font-size: 1.3rem;
}


:root {
  --color-primary: #0085cd;
  --color-border: #dadbdf;
  --color-sky: #94B5E8;
  --color-lightblue: #0088FF;
  --color-red: #FF6767;
  --color-yellow: #FFB200;
  --color-white: #ffffff;
  --bg-gray: #f9f9f9;
  --txt-sub: #454545;
  --bg-sky: #0087d6;
  --bg-white: #ffffff;
}

body, input, select, textarea, button{
  font-family: "Pretendard", "Noto Sans KR", sans-serif !important;
  font-weight: 400;
  letter-spacing: -0.5pt;
  line-height: 1;
  font-size: 1.1rem !important;
}
h1, h2, h3, h4, h5, h6{
 font-family: "Pretendard", "Noto Sans KR", sans-serif !important;
}

.inner,#bo_list,.content-wrap,#bo_gall,#bo_w,#bo_v,#bo_sch,#bo_list_title,.btn_confirm{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}
#bo_list{
	padding-bottom:4.375rem
}
#bo_list_title,#wrapper_title{display:none;}
.btn_confirm {
    text-align: center !important;
    padding: 30px 0px 100px;
}

.flex-wrap {
  display: flex;
}

header.mobile{display:none;}
header.pc{display:block;}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 9999;
}
header.hide {
  transform: translateY(-100%);
}
header > .inner {
	display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 76.5px;
}
header h1 a {
	display: block;
    width: 22rem;
    position: absolute;
    left: 0px;
}
header h1 img {
	position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 220px;
}
header h1 img:last-of-type {
  opacity: 0;
}
header .search-container {
  position: absolute;
  display: none;
  width: 100%;
  top: 100%;
  left: 0;
  border-top: 1px solid #DEDEDE;
  border-bottom: 2px solid var(--color-primary);
  background: #fff;
}
header .search-container .inner {
  display: flex;
  align-items: center;
  max-width: 47.5rem;
  margin: 0 auto;
  padding: 6.25rem 20px;
}
header .search-container .search-box {
  position: relative;
  width: 100%;
}
header .search-container .search-box input {
  width: 100%;
  padding: 1.063rem 1.25rem;
  font-size: 1rem;
  color: #333;
  border: 0;
  background: #F4F6F9;
}
header .search-container .search-box button {
  position: absolute;
  width: 1.375rem;
  height: 1.375rem;
  padding: 0;
  top: 0.938rem;
  right: 1.25rem;
  border: 0;
  background: 0;
}
header .search-container .search-box button img {
  width: 100%;
}
header .search-container .close {
  width: 1.375rem;
  height: 1.375rem;
  margin-left: 1.25rem;
  cursor: pointer;
}
header .search-container .close img {
  width: 100%;
}
header .search-container .autocomplete_box {
  position: absolute;
  top: 4em;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 90%;
  box-shadow: 0 10px 10px rgba(11, 11, 11, 0.2);
}
header .search-container .autocomplete_box ul {
  padding: 1em;
  max-height: 22.5rem;
  overflow-y: auto;
}
header .search-container .autocomplete_box_close {
  background: #f6f6f6;
  padding: 0.313rem;
  text-align: right;
}
header .search-container .autocomplete_box_close button {
  position: relative !important;
  padding: 0;
  margin: 0;
  top: 0 !important;
  right: 0 !important;
  width: auto !important;
  height: 100% !important;
  color: #777;
}
header.on {
  background: #fff;
  box-shadow: rgba(0, 0, 0, .02) 0 4px 5px;
}
header.on h1 img:first-of-type {
  opacity: 0;
}
header.on h1 img:last-of-type {
  opacity: 1;
}
header.on .nav-pc > ul > li > a {
	color: var(--txt-sub);
    height: 78.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.on .nav-pc > ul > li:last-of-type > a div img:first-of-type {
  opacity: 0;
}
header.on .nav-pc > ul > li:last-of-type > a div img:last-of-type {
  opacity: 1;
}
header.on .util-ic img:first-of-type {
  opacity: 0;
}
header.on .util-ic img:last-of-type {
  opacity: 1;
}
header.on .util .lang li.on::after {
  background: var(--color-primary);
}
header.on .util .lang li.on a {
  color: var(--color-primary);
}

.nav-pc > ul {
  display: flex;
  align-items: center;
  height: 76.5px;
}
.nav-pc > ul li{
    display: flex;
    align-items: center;
	height: 76.5px;
}
.nav-pc > ul > li > a {
    padding: 1.625rem 2rem;
    font-weight: 500;
    transition: 0.2s;
    color: #fff;
    font-size: 18px;
    width: 125px;
}
.nav-pc > ul > li:last-of-type > a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.nav-pc > ul > li:last-of-type > a div {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}
.nav-pc > ul > li:last-of-type > a div img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.nav-pc > ul > li:last-of-type > a div img:last-of-type {
  opacity: 0;
}

.submenu-pc {
  position: absolute;
  display: none;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-primary);
}
.submenu-pc .inner > ul {
  display: flex;
  justify-content: center;
}
.submenu-pc .inner > ul > li {
  position: relative;
  width: 14.375rem;
  padding: 1.25rem 1.875rem;
}
.submenu-pc .inner > ul > li:not(:last-of-type) {
  border-right: 1px solid var(--color-border);
}
.submenu-pc .inner > ul > li > p {
  padding-bottom: 0.875rem;
  text-align: center;
  font-size: 1.063rem;
  font-weight: 500;
  color: var(--color-primary);
}
.submenu-pc .inner > ul > li > ul > li {
  padding: 0.5rem 0;
}
.submenu-pc .inner > ul > li > ul > li > a {
  position: relative;
  font-size: 0.938rem;
}
.submenu-pc .inner > ul > li > ul > li ul {
  padding: 0.375rem 0 0.625rem;
}
.submenu-pc .inner > ul > li > ul > li ul li a {
  position: relative;
  display: block;
  padding: 0.5rem 0 0 0.625rem;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #333;
  transition: 0.2s;
}
.submenu-pc .inner > ul > li > ul > li ul li a::before {
  content: "";
  position: absolute;
  width: 0.25rem;
  height: 1px;
  top: 0.875rem;
  left: 0;
  background: #a3a3a3;
}


.submenu-m {
  position: absolute;
  width: 25rem;
  height: 100vh;
  top: 0;
  right: 0;
  background: #fff;
  transition: transform ease 0.5s, visibility ease 0.5s;
  transform: translateX(100%);
  visibility: hidden;
  z-index: 99;
}
.submenu-m .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.875rem;
  background: var(--color-primary);
}
.submenu-m .top .lang {
  display: flex;
  gap: 10px;
}
.submenu-m .top .lang li {
  position: relative;
}
.submenu-m .top .lang li.on::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #fff;
}
.submenu-m .top .lang li.on a {
  color: #fff;
}
.submenu-m .top .lang li a {
  color: #b0b7db;
}
.submenu-m .top .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.938rem;
  height: 0.938rem;
  cursor: pointer;
}
.submenu-m .top .close img {
  width: 100%;
}
.submenu-m .menu-list {
  display: flex;
  height: 100%;
  border-left: 1px solid #dbdbdb;
}
.submenu-m .left {
  width: 8.125rem;
  height: 100%;
}
.submenu-m .left li {
  padding: 0.938rem 1.25rem;
  z-index: 9;
  font-weight: 500;
  color: #555;
  cursor: pointer;
}
.submenu-m .left li:last-of-type a {
  position: relative;
  color: var(--color-primary);
}
.submenu-m .left li:last-of-type a::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 1px;
  right: -1.25rem;
  background: url(../images/01_shortcut_ic.svg) center/cover no-repeat;
}
.submenu-m .left li.on:not(:last-of-type) {
  position: relative;
  font-weight: 600;
  color: var(--color-primary);
}
.submenu-m .left li.on::after {
  content: "";
  position: absolute;
  width: 3.5rem;
  height: 0.625rem;
  bottom: 0.75rem;
  left: 1.188rem;
  background: #cadfff;
  z-index: -1;
}
.submenu-m .right {
  position: relative;
  width: calc(100% - 8.125rem);
  height: 100%;
  background: #f7f9fb;
}
.submenu-m .right > ul {
  position: absolute;
  display: none;
  width: 100%;
  top: 0;
  left: 0;
}
.submenu-m .right > ul.on {
  display: block;
}
.submenu-m .right > ul > li > a {
  display: block;
  padding: 1.25rem 1.25rem 0.625rem 1.25rem;
}
.submenu-m .right > ul > li > ul {
  padding: 0 1.875rem;
}
.submenu-m .right > ul > li > ul li {
  position: relative;
  padding-left: 0.813rem;
}
.submenu-m .right > ul > li > ul li::after {
  content: "";
  position: absolute;
  width: 0.313rem;
  height: 1px;
  background: #555;
  top: 0.938rem;
  left: 0;
}
.submenu-m .right > ul > li > ul li a {
  display: block;
  padding: 0.313rem 0;
  font-size: 0.875rem;
  color: #444;
}





/*footer*/
footer {
  border-top: 1px solid var(--color-border);
  background:#e6eaec;
  padding-bottom: 70px;
  font-size:18px;
}
footer .inner {
	display: flex;
    align-items: flex-start;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    justify-content: center;
}
footer .inner .site {
  font-size: 0.875rem;
  color: #535353;
}
footer .info p,footer .info span{
	color:rgba(0,0,0,0.4);
	line-height:20px;
}
footer address {
  margin-bottom: 0.875rem;
  font-style: normal;
}
footer address p {
  color: #535353;
  margin-bottom: 0.375rem;
}
footer address span {
  color: #535353;
}
footer .logo {
  width: 21rem;
  margin-bottom: 15px;
  text-align: center;
  margin: 0px auto 15px;
}
footer .logo img{
  width: 210px;
}
footer .inner {
  text-align:center;
}

footer .site {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 14.375rem;
  padding: 0.813rem 1.25rem;
  border: 1px solid #DEDEDE;
  cursor: pointer;
}
footer .site::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  top: 50%;
  right: 1.25rem;
  transform: translate(0, -50%);
  background: url(../images/01_arrow_top.svg) center/cover no-repeat;
}
footer .site.on::after {
  background: url(../images/01_arrow_bottom.svg) center/cover no-repeat;
}
footer .site p {
  font-size: 0.875rem;
  color: #333;
}
footer .site > div {
  display: none;
  position: absolute;
  width: calc(100% + 2px);
  left: -1px;
  bottom: 100%;
  border: 1px solid #DEDEDE;
  background: #fff;
}
footer .site > div a {
  display: block;
  padding: 0.875rem 0.938rem;
  font-size: 0.875rem;
  color: #333;
  transition: 0.2s;
}
footer .menu{border-bottom:1px solid rgba(0,0,0,0.07);}
footer .menu ul li{
	padding-right:30px;
	font-weight:bold;
}
footer .menu ul li a{
	opacity: 0.6;
}

.top-btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  right: 2.5rem;
  bottom: 2.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 9999;
  border: 1px solid #dbdbdb;
  transition: 0.5s;
  transform: translateX(200%);
  cursor: pointer;
}
.top-btn.on {
  transform: translateX(0);
}

.container .subvisualtop {
  animation: topBg 5s forwards;
}
.container .subvisualtop1 {
  background: linear-gradient(rgba(0, 32, 81, 0.2), rgba(0, 32, 81, 0.2)), url(../images/sub/subvisual01.jpg) center no-repeat;
  background-size: 110%;
}
.container .subvisualtop2 {
  background: linear-gradient(rgba(0, 32, 81, 0.2), rgba(0, 32, 81, 0.2)), url(../images/sub/subvisual02.jpg) center no-repeat;
  background-size: 110%;
}
.container .subvisualtop3 {
  background: linear-gradient(rgba(0, 32, 81, 0.2), rgba(0, 32, 81, 0.2)), url(../images/sub/subvisual03.jpg) center no-repeat;
  background-size: 110%;
}
.container .subvisualtop4 {
  background: linear-gradient(rgba(0, 32, 81, 0.2), rgba(0, 32, 81, 0.2)), url(../images/sub/subvisual04.jpg) center no-repeat;
  background-size: 110%;
}
.container .subvisualtop5 {
  background: linear-gradient(rgba(0, 32, 81, 0.2), rgba(0, 32, 81, 0.2)), url(../images/sub/subvisual05.jpg) center no-repeat;
  background-size: 110%;
}
.container .inner {
	padding-top: 14rem;
    padding-bottom: 10rem;
	text-align:center;
}
.container .breadcrumb {
  display:none;
  opacity: 0;
  transform: translateY(20px);
  animation: toTop 0.8s forwards;
}
.container .breadcrumb li {
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
}
.container .breadcrumb li:not(:last-of-type) {
  position: relative;
  margin-right: 1.75rem;
  color: #D9D9D9;
}
.container .breadcrumb li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 1px;
  top: 9px;
  right: -22px;
  transform: rotate(-45deg);
  background: #D9D9D9;
}

@keyframes topBg {
  to {
    background-size: 100%;
  }
}
.page-title {
	display: inline-block;
    font-size: 2.813rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: toTop 0.8s 0.5s forwards;
}

.top-txt {
  display:none;
  margin-top: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(20px);
  animation: toTop 0.8s 0.8s forwards;
}

@keyframes toTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.subcont {
  position: relative;
  min-height: calc(100vh - 36.75rem);
  line-height: 1.8rem;
}
.subcont .inner {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
.subcont .cont-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 3.125rem 0;
  border-bottom: 1px solid #DBDBDB;
}
.subcont .cont-box:first-of-type {
  padding-top: 0;
}
.subcont h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.subcont h3 p {
  margin-top: 0.313rem;
  font-size: 0.938rem;
  font-weight: 400;
  color: #333;
}
.subcont .cont {
  width: calc(80% - 2.5rem);
}
.subcont .cont dl dd:not(:last-of-type) {
  margin-bottom: 1.125rem;
}
.subcont .cont > p:not(:last-of-type) {
  margin-bottom: 0.375rem;
}
.subcont .cont .btn-wrap .btn {
  width: 310px;
}
.subcont .cont > img {
  width: 100%;
}
.subcont .tit1 {
  font-size: 1.25rem;
  font-weight: 600;
}
.subcont .tx1 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0043A8;
}
.subcont .tx1:last-child {
  margin-bottom: 0;
}
.subcont .tx1.black {
  color: #000;
}
.subcont .tx2 {
  margin-bottom: 0.375rem;
  font-weight: 500;
  color: var(--color-primary);
}
.subcont .note {
  font-size: 0.875rem;
  color: #444;
}
.subcont .note:not(:last-of-type) {
  margin-bottom: 0.375rem;
}
.subcont .list1 > li:not(:last-of-type) {
  margin-bottom: 0.375rem;
}
.subcont .list1 .list2 {
  padding: 0.625rem 0 1rem 1rem;
}
.subcont .list2 {
  padding: 0.625rem 0 0 1rem;
}
.subcont .list2 > li:not(:last-of-type) {
  margin-bottom: 0.375rem;
}
.subcont .list2 .list3 {
  margin-top: 0.375rem;
}
.subcont .list3 {
  padding-left: 1rem;
}
.subcont .list3 > li:not(:last-of-type) {
  margin-bottom: 0.375rem;
}
.subcont .table-container:not(:first-child) {
  margin-top: 1.25rem;
}

.table-container {
  position: relative;
}
.table-container .scroll {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  margin: 0 auto 5px;
  padding: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(126, 155, 197, 0.3);
  z-index: 9;
}
.table-container .scroll p {
  font-weight: 600;
  color: #2d71d6;
}
.table-container img:first-of-type {
  position: relative;
  transform: translateX(-3px);
  animation: scroll 1s infinite alternate;
  z-index: 999;
}
.table-container img:last-of-type {
  position: absolute;
  width: 23px;
  top: 3px;
  left: 10px;
  z-index: 9;
}


table {
  width: 100%;
  border-top: 3px solid #0085cd;
}
table tr {
  border-bottom: 1px solid var(--color-border);
}
table th, table td {
  vertical-align: middle;
}

table th.border-r, table td.border-r {
  border-right: 1px solid var(--color-border);
}
table th.border-none, table td.border-none {
  border-right: 0;
}
table th {
	padding: 14px;
    text-align: center;
    font-size: inherit;
    font-weight: 700;
    background: var(--bg-gray);
    color: #222222;
}
table td {
  padding: 0.938rem;
  text-align: center;
}
table td .tx1 {
  font-size: 1rem !important;
}
table td.center {
  text-align: center;
}
table .list {
  font-size: 0.938rem;
}
.tableA tr td{
  border-right: 1px solid var(--color-border);
}


/*border*/
.border-rN{
	border-right:0px !important;
}


.yearList{
	width: 900px;
    border-top: 0px;
	margin:0px auto;
}
.yearList tr {
    border-bottom: 0px;
}
.yearList th:not(:last-of-type), .yearList td:not(:last-of-type) {
    border-right: 0px;
}
.yearList .year {
	position: relative;
    color: #1a5bb1;
    font-size: 1.5rem;
    vertical-align: top;
    width: 50%;
    border-right: 2px solid #1a5bb1 !important;
    text-align: right;
    padding-right:1.625rem;
	font-weight:bold;
}
.yearList .year:after {
    content: '';
    position: absolute;
    right: -37px;
    top: 5px;
    width: 50px;
    height: 50px;
    background: url(../images/common/icon_point.png) no-repeat;
}
.yearList .year .icon {
    position: absolute;
    right: -15px;
    top: 0px;
}
.yearList .date span {
    color: #1a5bb1;
    padding-left: 35px;
    margin-right: 20px;
    font-size: 1.25rem;
	font-weight:bold;
}
.yearList .title span {
    color: #475056;
    font-size:1.25rem;
}
.yearList .date{width:10%;vertical-align: top;}
.yearList .title{width:40%;text-align:left;}
.yearList td{padding: 0px 0px 30px;}



@keyframes scroll {
  to {
    transform: translateX(3px);
  }
}


.nodata {
  width: 100% !important;
  padding: 50px 0 !important;
  color: #666 !important;
  text-align: center !important;
}

.subcont ul.list {
  margin-bottom: 1.125rem;
}
.subcont ul.list:last-child {
  margin-bottom: 0;
}
.subcont ul.list li {
  position: relative;
  padding-left: 0.813rem;
}
.subcont ul.list li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 1px;
  top: 10px;
  left: 0;
  background: #727272;
}
.subcont ul.list li:not(:last-of-type) {
  margin-bottom: 5px;
}

.tab-btn {
  display: block;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
}
.tab-btn.on {
  font-weight: 600;
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 10px #cde1ff;
  background: #fff;
  color: var(--color-primary);
}

.tabcont {
  display: none;
}
.tabcont.on {
  display: block;
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.board-top .page-total span {
  margin: 0 2px 0 4px;
  color: var(--color-primary);
}

.board-search form {
  display: flex;
  gap: 0.625rem;
}
.board-search .search {
  position: relative;
}
.board-search select, .board-search input, .board-search button {
  height: 2.625rem;
  vertical-align: top;
  border: 0;
  font-size: 0.938rem;
}
.board-search select, .board-search input {
  border-bottom: 1px solid var(--color-border);
}
.board-search select {
  width: 7.5rem;
  background: url(../images/01_arrow_bottom.svg) 100% 50%/0.625rem 0.625rem no-repeat;
}
.board-search input {
  width: 15rem;
}
.board-search button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.board-list table th, .board-list table td {
  text-align: center;
}
.board-list table th:not(:last-of-type), .board-list table td:not(:last-of-type) {
  border-right: 0;
}
.board-list table td img {
  margin: 0 auto;
  width: 0.875rem;
}
.board-list table td:nth-of-type(2) {
  text-align: left;
}
.board-list table td:first-of-type img {
  width: 2rem;
}

.board-detail table td a {
  transition: color ease 0.2s;
}
.board-detail table td a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.board-detail table td a img {
  display: inline-block;
  width: 0.75rem;
  margin: 0 0.25rem -0.125rem 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.pagination ul {
  margin-top: 2.5rem;
}
.pagination li {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pagination li.on {
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.board-detail table th:not(:last-of-type), .board-detail table td:not(:last-of-type) {
  border-right: 0;
}
.board-detail table td.main-cont {
  padding: 1.875rem;
}

.wrap.en {
  letter-spacing: 0;
}
.wrap.en .submenu-pc .inner > ul > li {
  width: 18.75rem;
}

#bo_w .bo_w_tit #btn_autosave,.cke_sc,#bo_v_top ul li:nth-child(2){
	display:none;
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 30px;
    height: 30px;
}
#bo_v_img a.view_image{text-align:center;}
.btn_bo_user li:nth-child(1){}
.bo_sch form {
    padding: 20px !important;
}
.bo_sch {
    border-radius: 20px !important;
}
.bo_sch select {
    padding-left: 10px !important;
}
.bo_sch .sch_input {
    padding-left: 5px !important;
}
#bo_w .btn_cancel {
    padding: 5px 20px !important;
    font-size: 17px !important;
    line-height: 40px !important;
    height: auto !important;
    border-radius: 8px !important;
    width: 120px !important;
	background: rgba(0, 0, 0, 0.25) !important;
}
#bo_w .bo_w_flie .file_wr {
    height: auto !important;
}
#bo_w .btn_submit {
    padding: 5px 20px !important;
    font-size: 17px !important;
    line-height: 40px !important;
    height: auto !important;
    border-radius: 8px !important;
    width: 120px !important;
}
#bo_w .bo_w_flie .frm_file {
    margin-top: 0px !important;
}
#bo_gall {
    margin-bottom: 20px !important;
}
.tbl_wrap table {
    border-top: 3px solid #0085cd !important;
}
#bo_v_info .profile_info .pf_img {
    display: none;
}
#bo_v_info .profile_info .profile_info_ct {
    display: flex;
}
#bo_v header.on{
	box-shadow: unset;
}

.btn_bo_user{
	display: flex;
    align-items: center;
}
.btn_bo_user li {
    width: auto !important;
}
.btnDel,.btnEdit{
	border: 0px;display: flex; 
	padding: 5px 0px 0px 7px;
	width: auto;
}

.fa-trash-o:before,.fa-edit:before, .fa-pencil-square-o:before {
    font-size: 25px;
}
.gall_row .col-gn-4 {
    padding-right:0px !important;
	padding-left:0px !important;
}
a.btn_admin, .btn_admin {
	display:none !important;
}
#bo_v_con p span{
	font-family: "Pretendard", "Noto Sans KR", sans-serif !important;
}
.bo_notice td {
    background: rgba(22,155, 228, 0.2) !important;
    border-bottom: 1px solid #f8e6ee;
}
.fa{opacity: 0.3;}
.fa:hover{opacity: 0.8;}

/*¿À¸¥ÂÊ ¿µ¿ª¹öÆ°*/
#fp-nav ul li .fp-tooltip.right{text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);}


/*¸ð´ÞÃ¢*/
.ui-widget-overlay {
    background: #666 !important;
    opacity: .5;
    filter: Alpha(Opacity = .3);
}
.ui-dialog .ui-dialog-title {
    font-size: 25px !important;
    padding: 0px;
    font-weight: bold;
    text-align: center;
    padding: 30px !important;
}


@media only screen and (max-width: 1280px) {
  html {
    font-size: 15px;
  }



@media only screen and (max-width: 1024px) {
	body, input, select, textarea, button {
		line-height: 25px;
		font-size: 1.2rem !important;
	}
	body {
		background: none !important;
	}
	.page-title{font-size: 2.5rem;}
	.subcont .main-txt {
		font-size: 2rem;
	}
	.top-btn {
		right: 1rem;
		bottom: 1rem;
	}

	.inner .pc,.content-wrap .pc{
		display:none;
	}
	.inner .mobile,.content-wrap .mobile{
		display:block;
	}


	/*»ó´Ü*/
	#user_btn,.container .breadcrumb,.subvisualtop .top-txt,
	#hd_nb,#section5 .gnb_1dli,.pic_lt .lt_more{
        display:none;
    }
	#hd {
		position: fixed !important;
        background: unset !important;
	}
	#hd #hd_wrapper #logo a{
	    background: url(/theme/basic/scholarship/images/top/top_logo.png) no-repeat;
		width: 200px;
		height: 50px;
		display: block;
		background-size: 100%;
		margin-top: 10px;
	}
	#hd.mobile.on #hd_wrapper #logo{
	    background: #ffffff;
	}
	#hd.mobile.on #hd_wrapper #gnb_open svg{
	   fill:rgba(0, 0, 0, 0.7);
	}
	header.on {
		background: #fff;
		box-shadow: rgba(0, 0, 0, .05) 0 4px 5px;
		border-bottom:0px;
	}
	#hd.mobile.on #hd_wrapper #logo a{
	    background: url(/theme/basic/scholarship/images/top/top_logo_h.png) no-repeat !important;
		width: 200px;
		height: 50px;
		display: block;
		background-size: 100% !important;
		margin-top: 10px;
	}
	#gnb {
		background: var(--color-primary) !important;
        max-width: unset !important;
        height: 100%;
        position: absolute;
        width: 100%;
        top: 0px;
	}
	#logo {
		padding: 10px 10px 10px 15px !important;
		height: 60px !important;
		text-align: left !important;
	}
	#logo img {
		margin-top: 10px !important;
        width: 210px !important;
	}
	#gnb #container{
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	#gnb_open {
        right: 10px;
        font-size: 2em;
        left: unset !important;
	}
	#gnb_open .fa{
	    font-size: 25px;
	}
	.btn_top{
        position: unset !important;
	}
	#gnb_1dul {
        background: none;
        padding: 30px;
        width: 90%;
	}
	#gnb_1dul li{
		padding: 30px 0px 20px;
        font-size: 20px;
        font-weight: bold;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        margin-bottom: 10px;
        text-align: center;
	}
	#ol_before {
		background: unset !important;
		padding: 10px 30px !important;
		text-align: left !important;
	}
	#ol_before a.btn_b02, #ol_before .btn_b02{
		display:none;
	}
	#gnb_close {
        font-size: 2em !important;
        color: #fff;
        border: 0px;
        position: absolute;
        right: 15px;
        top: 15px;
	}


	/*¸ÞÀÎ*/
	.btnType01 {
		margin: 20px auto;
		font-size: 18px;
		line-height: 50px;
		margin-top: 20px;
	}
	.btnType01::after {
		left: -35px;
		background-position: left bottom;
	}
	#section2 .inner, #section3 .inner, #section4 .inner, #section5 .inner, #section6 .inner {
		padding: 4rem 1rem !important;
	}
	#section4 .inner .cont .grid a, #section6 .inner .cont .grid a {
		border-radius: 15px !important;
		margin-bottom: 10px !important;
		padding: 2rem;
	}

	 #section6 .inner .cont .grid a,#section2 .inner, #section3 .inner, #section4 .inner, #section6 .inner,
	 #section4 .inner .cont .grid a{
	     height: auto !important;
	}
	#section6 .inner .cont .grid a div,#section4 .inner .cont .grid a div {
		font-size: 1.6rem !important;
	}
	#section6 .inner .cont .grid a img,#section4 .inner .cont .grid a img{
		width:50%;
	}
	.pic_li_lt {
		width: 100%;
	}
	#section5 .notice,.media,.sv_member,
	.pic_li_lt .lt_more{
		display:none;
	}
	#section2 h2, #section3 h2, #section4 h2, #section5 h2, #section6 h2 {
		font-size: 2.5rem !important;
	}

	#section5 h3 {
		font-weight: bold;
        font-size: 1.7rem !important;
        padding: 15px 0px !important;
	    border-bottom: 1px solid rgba(0, 0, 0, 0.7);
	}
	#section5 h3 a{
	    font-size: 1rem;
	    color: rgba(0, 0, 0, 0.4);
	}
	#section5  .pic_lt,#section5 .pic_li_lt{
		background:unset;
		padding:0px;
	}
	#section5 .pic_li_lt li {
		border-bottom: 1px solid #e5ecee;
		margin-bottom: 10px;
		padding: 5px 0px 25px;
	}
	#section5  .pic_lt ul {
		margin: 10px 0px;
        display: flex;
	}
	#section5 .lt_info {
		padding: 10px 0;
		opacity: 0.5;
		font-size: 1rem;
	}
	#section5 .inner .cont .latest_wr{
		overflow-x:scroll;
		margin-bottom:50px;
	}
	#section5 .pic_li_lt li .pic_li_tit {
		font-size: inherit;
	}
	#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(1){
		height: auto;
	}
	#section5 .fp-tableCell .inner .cont .media .pic_lt ul li {
		min-width: 250px;
	}
	#section5 .fp-tableCell .inner .cont .media .pic_lt ul li a:nth-child(2) {
		padding: 10px 20px 0px 20px;
	}
	#section5 .fp-tableCell .inner .cont .media .pic_lt ul li .lt_info {
		padding: 5px 20px 10px 20px;
	}


	/*Àç´Ü¼Ò°³*/
	#section2 .flex02 div .copy01 {
		font-size: 30px !important;
		line-height: 40px !important;
		letter-spacing: -3px !important;
	}
	#section2 .inner .cont .flex02{
		display:block !important;
	}
	#section2 .flex02 div div {
		line-height: 30px !important;
		font-size: 20px !important;
	}
	#section2 .flex02 div .btnType01 {
		margin: 0px auto !important;
	}
	#section2 .inner .cont .flex02 div:nth-child(2) img{
		width:90%;
		max-width:450px;
	}
	#section2 .inner .cont .flex02 div:nth-child(2){
		text-align:center;
	}
	#section2 {
		height: auto !important;
	}



	/*Á¤º¸°ø°³*/
	#section4 .inner .cont .grid a:nth-child(1) div:after,#section4 .inner .cont .grid a:nth-child(2) div:after{
		right: -20px !important;
		width: 30px !important;
		height: 30px !important;
		top: -2px !important;
		background-size: 45% !important;
	}
	.totalPrice{
		font-size: 2.2rem !important;
	}
	.BusinessPerformance .box01 {
		padding: 40px 20px 20px 20px !important;
		overflow-x: auto;
	}



	/*»ç¾÷¼Ò°³*/
	.BusinessIntroduction.margin07{
		margin:0px !important;
	}
	.BusinessIntroduction .tapType01{
		overflow-x: scroll;
	}
	.BusinessIntroduction .tapType01 .flex06{
		display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 1rem;
        margin-left: 0px;
        width: max-content;
		gap: 30px;
	}
	.BusinessIntroduction .box-wrap .tapType01 ul li a span:nth-child(2) {
		text-align: center;
	}
	.BusinessIntroduction .box-wrap .tapType01 ul li a span:nth-child(1) {
		width: 80px;
		height: 80px;
	}
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(1) .bg,
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(2) .bg,
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(3) .bg,
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li:nth-child(4) .bg{
		height: 70vw;
	}
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div {
		position: unset;
		width: 100%;
		height: auto;
		padding: 20px;
		color: #ffffff;
	}
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div h3 {
		font-size: 2rem;
		color: rgba(255, 255, 255, 1);
		font-weight: bold;
		border-bottom: 2px solid rgba(255, 255, 255, 1);
		padding: 10px 0px 20px;
		margin-bottom: 20px;
		line-height: 3rem;
	}
	.BusinessIntroduction .box-wrap .tabMenuViewWrap ul li .text div div {
		background: unset;
		position: unset;
		right: unset;
		bottom: unset;
		width: unset;
		height: unset;
		padding: 0px;
		font-size: 1.2rem;
		line-height: 2.2rem;
	}
	.BusinessIntroduction .tabMenuViewWra .panela .panel_li{
		display: contents !important;
	}


	.subcont .inner{
	    padding-left: 15px;
	    padding-right: 15px;
	}
	.com_layout {
		width: 100% !important;
		min-width: unset;
	}
	.content-wrap .txt-wrap h3.title {
		margin-left: 10px;
		margin-right: 0px;
		padding-left: 4.5rem;
	}
	.subBarMenuWrap ul.grid {
		grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
	}


	.container .subvisualtop {
		animation: unset;
		background-size: 230%;
	}

	#visit,#top_btn,#ft{
		display:none;
	}
	.content-wrap .txt-wrap h3.title::before {
        width: 60px;
        height: 60px;
        background-size: 60px;
		top: -15px;
	}
	.container .inner {
        padding-top: 8rem;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        padding-bottom: 8rem;
	}
	.foundingPhilosophy .img-wrap img{
        width:100%;
    }
	.yearList{
		width:100%;
	}
	.foundingPhilosophy .box-wrap {
		padding: 5rem 0rem;
	}


	/*°Ô½ÃÆÇ*/
	.bo_v_nb li a {
		padding: 0px !important;
	}
	.bo_v_tit{
		line-height: 2.4rem;
	}
	.bo_v_nb li {
	 font-size: 1.2rem !important;
	}
	.bo_info {
		opacity: 0.5;
		font-size: 1rem;
	    padding-top: 0px !important;
	}
	#bo_gall .gall_li {
		float: unset !important;
		width: 100% !important;
		padding: 0px !important;
	}
	#bo_gall {
		margin-bottom: 20px !important;
	}
	#bo_list_total {
		margin: 0px 0px 20px !important;
		text-align: center;
		padding: 0px !important;
		background: unset !important;
		color: #8b8b8b;
		border-radius: 0px !important;
	}
	#bo_list_total {
		padding-top: 0px !important;
		font-size: unset !important;
		color: #bbbbbb;
		border-bottom: 0px !important;
	}
	#bo_sch{
		margin-bottom:60px !important;
	    margin-left: 10px;
        margin-right: 10px;
        border-radius: 5px;
    }
	}
	#bo_list {
		padding-bottom: 1rem;
	}
	#bo_sch form{
		display:flex;
	}
	#bo_gall li.empty_list {
		opacity: 0.5;
	}
	#bo_sch select,#bo_sch .sch_input,#bo_sch .sch_btn {
		height: 45px !important;
	}



	/*footer*/
	footer{
		padding:0px 20px;
		text-align:center;
	}
	footer .logo {
		width: 21rem;
		margin-bottom: 15px;
		margin: 0px auto 15px;
	}
	footer .logo img{
		width: 70%;
	}
	footer .menu ul li a,footer .info p, footer .info span{
		font-size:1.1rem;
	}
	footer .menu ul li {
		padding: 0px 10px;
		font-weight: bold;
	}
  
  .container .top1 {
    background-position: center;
  }

/*¸ð¹ÙÀÏ*/
	#ctt_con {
		padding: 0px;
	}
	#ctt {
		margin: 0px;
		padding: 0px;
		background: none;
		min-height: unset;
		webkit-box-shadow: none;
		-moz-box-shadow: 0 1px 4px #cbd1df;
		box-shadow: unset;
	}
	  .subcont{
	    line-height: 2.2rem;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
		padding-left: 15px;
		padding-right: 15px;
	  }
	  .subcont .inner {
		 padding-top: 0rem;
		 padding-bottom: 0rem;
		 padding-left: 0px;
		 padding-right: 0px;
		}

	  .subcont .content-wrap{
		padding-bottom: 4.375rem;
	  }
	  #ol_after_private,.profile_img,.fa-cog,#ol_after_hd .profile_img{
		display:none;
	   }
	  #ol_after_btn {
		position: absolute;
		top: 15px;
		right: 45px;
	  }
	#ol_after_hd {
		background: #169be4;
	}
	#ol_after_btn a {
		display: block;
		padding: 0 10px;
		line-height: 30px;
		color: #fff;
		border-radius: 30px;
		font-weight: bold;
		border: 1px solid rgba(255, 255, 255, 0.6);
		font-size: 1rem;
	}
	#ol_after_logout {
		background: none;
		color: #fff;
	}
	#ol_after_hd .btn_admin,#mb_login .mb_login_join {
		display:none;
	}
	#gnb .fa {
		color: rgba(0, 0, 0, 0.3);
	}
	#gnb_1dul a {
		display: block;
		color: rgba(255, 255, 255, 1);
	}
	a.btn_b01, .btn_b01 {
		background: none;
		color: #3a8afd;
		border-radius: 30px;
		padding: 5px 15px;
		border: 1px solid #3a8afd;
		font-size: 1.2rem;
	}
	#ol_before{display:none}


	#section4 .inner .cont .grid a:nth-child(2) div:after, #section6 .inner .cont .grid a div:after {
		content: '';
		position: absolute;
		right: -20px !important;
		background: url(../images/common/icon_nero.png) no-repeat;
		width: 30px !important;
		height: 30px !important;
		background-position: right;
		top: -2px !important;
		opacity: 0.6;
		background-size: 45% !important;
	}


	/*µµ³ÓÂ÷Æ®*/
	.chartWrap{
		display: block;
	}
	.s-chart-h6 {
		width: 100%;
        position: unset;
        right: 250px;
        margin-bottom: 40px;
        border: 8px solid rgba(0, 0, 0, 0.05);
        padding: 15px;
    }
	.s-chart-h6 div {
		margin: 10px 0px;
		font-weight: bold;
		font-size: 20px;
	}
	.s-chart-h6 div span{
		border-radius:50%;
	}

}


@media only screen and (max-width: 960px) {
	header h1 a{position: unset;}

	  .foundingPhilosophy {
		flex-wrap: wrap;
	  }
	  .foundingPhilosophy .txt-wrap {
		width: 100%;
		padding-top: 0;
	  }
	  .foundingPhilosophy .img-wrap {
		margin: 0 auto;
	  }

	 .ui-widget.ui-widget-content {
		width: 95% !important;
		margin: 0px auto !important;
	}
	.modal-content{
		border-radius: 0px;
		overflow-x: auto;
	}
	.ui-dialog .ui-dialog-content{padding:0px !important;}
	.ui-dialog .ui-dialog-title {
		font-size: 20px !important;
		margin: 0px;
		font-weight: bold;
		text-align: center;
		padding: 10px 0px !important;
		white-space: unset;
		width: 100%;
	}
	.ui-dialog .ui-dialog-title{width:100% !important;}
	.business-slide .hover .title {
		font-size: 33px !important;
		margin-bottom: 20px !important;
		margin-top: 20px !important;
	}
	.business-slide .hover .txt {
		font-size: 1.2rem !important;
		line-height: 1.8rem !important;
		margin-bottom: 1rem !important;
	}
	.business-slide .hover .btn {
		transform: translateY(20%);
		transition: transform 0.4s;
		font-size: 16px;
		border: 1px solid rgba(255, 255, 255, 0.5);
		width: fit-content;
		border-radius: 30px;
		margin: 0px auto;
		padding: 1px 15px !important;
		color: #ffffff;
		height: auto;
		display: flex;
		align-items: center;
	}
	.business-slide .swiper-slide .title {
		font-size: 33px;


	}
}


@media only screen and (max-width: 768px) {

	header.mobile{display:block;}
	header.pc{display:none;}
	.nav-pc > ul > li > a {
		padding: 1.625rem 0.6rem;
		width: unset;
	}


	.yearList td {
		padding: 0px 0px 20px;
	}
	.yearList .year {
		width: 27%;
	}
	.yearList span.date {
		color: #1a5bb1;
		padding-left: 20px;
		margin-right: 20px;
		font-size: 1.25rem;
		font-weight: bold;
		display:block;
	}
	.yearList .title {
		display:block;
        width: 100%;
        text-align: left;
        padding-left: 20px;
	}
	.diagramType01 div div {
		border: 1px solid rgba(26, 166, 243, 0.5);
		padding: 10px 30px;
		border-radius: 20px;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		background: rgba(255, 255, 255, 1);
		justify-content: center;
	}
	.diagramType01 div.flex{
		width: max-content;
		display: flex;
		align-items: stretch;
	}
	.MethodSupport .section04 .box01 div div:nth-child(2),
	.MethodSupport .section04 .box01 div div:nth-child(4),
	.MethodSupport .section04 .box01 div div:nth-child(6) {
		width: 1.3%;
		margin: 14px;
	}
	.MethodSupport01 .section04 .box-wrap.grid01{
		display: grid;
		grid-template-columns: repeat(1, 100%);
		grid-column-gap: 2%;
	}
	.noticetype01,.noticetype02{
		padding:25px;
	}
	.noticetype02 h4,.noticetype01 h4 {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	h3 span, h4 span {
		display: block;
		line-height: 25px;
		margin-top:6px;
	}
	table td {
		padding: 0.7rem;
	}
	.downloadtype01.grid01{
		display: grid;
		grid-template-columns: unset;
		grid-column-gap: unset;
	}

	.business-slide .swiper-slide .title {
        font-size: 27px !important;
    }
	.business-slide .hover .txt {
        font-size: 1.1rem !important;
        line-height: 1.6rem !important;
    }
	.business-slide .swiper-slide {
		width: 70% !important;
		margin-right: 20px !important;
	}


	 /*¸ð´ÞÃ¢*/
	 .modal-dialog .notificationType01{
		margin:20px 0px;
		background: #f7f9fa;
		padding: 20px;
		border: 1px solid #e1eaef;
		border-radius: 10px;
	 }
	 .modal-dialog .notificationType01 ul li{
		display:block;
		margin-bottom:15px;
	 }
}



@media only screen and (max-width: 600px) {
   .subcont .cont .btn-wrap .btn {
		width: 100%;
	}
 	#section6 .inner .cont .grid,#section4 .inner .cont .grid{
		display:block;
	} 
}


@media only screen and (max-width: 480px) {
	html {
		font-size: 14px;
	}
	.tableA{
		width: max-content;
	}
	.padding00 {
		padding: 20px 0px;
	}
	.notificationType01 .margin06{
		margin:0px;
	}
	.business-slide .hover{
		display:none;
	}
	.business-slide .swiper-slide .title {
		left: 20px;
		font-size: 30px;
	}
	.business-slide .swiper-slide {
		width: 100% !important;
	}

}
