@charset "utf-8";

/* 취소선 처리 */
.line-through-with-color {
	text-decoration: line-through;
	text-decoration-color: red; /* 선의 색상을 지정하세요 */
	color: initial; /* 텍스트의 색상을 초기값으로 설정 (기본 색상으로) */
}

/* 테이블 디자인 */
.table_box {
	display: block;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
	height:auto;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.row-table {
    width: 100%;
    border-top: 2px solid #000;
    margin-top: 0.5rem;
}
.row-table thead tr {
    border-bottom: 1px solid #ededed;
}
.row-table thead tr th {
    padding: 1.1rem 0.5rem ;
    background-color: #f9f9f9;
    font-size:  1.1rem;
    color: #000;
    border-right: 1px solid #ededed;
    vertical-align: middle;
}
.row-table thead tr th:last-child {
    border: 0;
}
.row-table thead tr td {
    padding: 1.1rem 0.5rem ;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    border-right: 1px solid #ededed;
    vertical-align: middle;
}
.row-table tbody tr {
    border-bottom: 1px solid #ededed;
}
.row-table tbody tr th {
    background-color: #f9f9f9;
    padding: 1.1rem 1rem ;
    vertical-align: top;
    border-right: 1px solid #ededed;
    font-size: 1rem;
    line-height: 1.3;
    color: #000;
    vertical-align: middle;
    word-break: keep-all;
	font-weight:600;
}
.row-table tbody tr th:last-child {
    border: 0;
}
.row-table tbody tr th.line-r {
    border-right: 1px solid #ededed !important;
}
.row-table tbody tr td {
    padding: 0.5rem 0.4rem ;
    vertical-align: top;
    border-right: 1px solid #ededed;
    font-family: var(--f400);
    font-size: 16px;
    line-height: 1.3;
    color: #363636;
    vertical-align: middle;
    word-break: keep-all;
}
.row-table tbody tr td:last-child {
    border: 0;
}
@media (max-width: 500px) {
	.row-table tbody tr th, .row-table tbody tr td {
		padding: 1.1rem 0.5rem ;
	}
}
/* 할인안내 */
.program01 .row-table tbody tr {
    text-align:center;
}


/*  강습신청 */
.cl_ti {
	font-weight:500;
    font-size: 1.1rem;
    letter-spacing: -0.1rem;
}
.cl_ti .material-symbols-outlined {
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 2.4rem;
	min-width: 2.4rem;
    height: 2.4rem;
    display: inline-flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0rem;
    font-size: 1.4rem;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 200;
}
.box_style01 {
    border: 1px solid #e3e3e3;
    box-shadow: 10px 20px 25px -15px rgba(0, 0, 0, 0.1);
    border-radius: 0.3rem;
    height: 100%;
	overflow:hidden;
}
.box_bg01{
	background: url(../images/common/bg01.jpg) repeat 50% 0px !important;
}
.border-top01{
	border-top: 1px solid #ededed;
	margin-top:0.9rem;
	padding-top:0.9rem;
}
.border-top02{
	border-top: 1px solid #e3e3e3;
	margin-top:1.5rem;
	padding-top:1.5rem;
}
.form_style01 label {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.14rem;
	padding-top: 0.2rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}
.form-design select {
    width: 100%;
    height: calc(2.25rem + 6px);
    padding: 0.375rem 3rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.03rem;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 0.42rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/common/select_arrow.png) no-repeat;
    background-position: right 1rem;
    background-size: 1.5rem 4rem;
    vertical-align: middle;
}
.form-design input {
    width: 100%;
    height: calc(2.25rem + 6px);
    padding: 0.375rem 0.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.03rem;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 0.42rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    vertical-align: middle;
}
/* radio */
.form-design input[type="radio"]{
  display: none;
  }
  .form-design .radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0;
}
.form-design .radio>input:checked~span:after {
    background-color: #fff;
    border-color: #fff;
}
.form-design .radio>input:checked~span:after {
    display: block;
}
.form-design .radio>input:checked~span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: none;
	border: none;
}
.form-design .radio>input:checked~span {
    background-color: #3699ff;
}
.form-design .radio-inline .radio span {
    margin-right: 0.75rem;
}
.form-design .radio>span:after {
    width: 8px;
    height: 8px;
}
.form-design .radio>span {
    border-radius: 50%;
    background-color: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #ebedf3;
    border: 1px solid #e1e1e1;
    height: 22px;
    width: 22px;
}
.form-design .radio>span:after {
    content: '';
    display: none;
    border-radius: 100%!important;
}
.btn {
    border-radius: 0.1875rem;
	box-shadow:10px 20px 25px -10px rgba(0, 0, 0, 0.08);
	padding: 0.5rem rem;
    font-size: 1.1rem;
    font-weight: 500;
}
.btn.btn-outline-secondary {
    color: #000;
}
.btn.btn-outline-secondary:hover {
  color: #fff;
}
a.class_name{
	color: #059f43;
    font-weight: 500;
}
a.class_name:hover{
	color: #059f43;
	text-decoration: underline !important;
}




/* 공통 */
.sub_b_title h3 {
	font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.2rem;
    color: #000;
	position: relative;
	display: inline-block;
	z-index: 0;
}
.sub_b_title h3:after {
	content:"";
	position: absolute;
	width: 100%;
	height: 15px;
	background: #69f590;
	left: 0;
	bottom: -2px;
	z-index: -1;
}
.sub_b_title02 {
    color: #222;
    letter-spacing: -0.1rem;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 10px;
}
.sub_b_title03 {
    color: #222;
    letter-spacing: -0.1rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 10px;
}
.sub_b_title03 span{
    font-size: 1.2rem;
    font-weight: 400 !important;
}
@media (max-width: 576px) {
	.sub_b_title03 span{
		display:block;
		margin-top:0.3em;
	}
}
.sub_b_title04 {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.1rem;
}
.intro_bann_box  {
	background: url(../images/sub/bann_bg.gif) repeat;
	border-radius: 1.5rem;
	min-height: 200px;
}
.intro_bann_box .bann_img {
	height: 110px;
    background: #fff;
    width: 184px;
    text-align: center;
    border-top-right-radius: 1.3rem;
    border-bottom-right-radius: 1.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro_bann_box .bann_in_txt .txt-01 {
	font-size: 1.39rem;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.1rem;
}
.intro_bann_box .bann_in_txt .txt-02 {
	color: #7b7b7b;
    font-size: 1rem;
    letter-spacing: -0.06rem;
    font-weight: 500;
	margin-bottom: 0;
}
.point-c {
	color: #00ad3f;
}

ul.box01 li div{
	border: 1px solid #ececec;
	border-radius: 1.3rem;
	box-shadow: 6px 6px 18px rgba(0,0,0,.05);
	padding: 0 2rem;
	height: 100%;
	font-size:1.1em;
	text-align:center;
}

ul.box01 li span{
	font-weight:900;
	font-size:1.5em;
	display:block;
	position:relative;
}
ul.box01 li span::after{
	background: #25aa5a none repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 100%;
    margin-left: 5px;
}

@media (max-width: 575px) {
	ul.box01 li div{
		text-align:left;
		padding-left: 6em;
		position:relative;
	}
	ul.box01 li span{
		display:inline-block;
		margin-bottom:0;
		margin-right:1em;
		position:absolute;
		left:2.3em;
		top: 40%;
		margin-top: -0.5em;
	}

}


@media (max-width: 500px) {
	.intro_bann_box .bann_img {
		width: 84px;
		padding-right:10px;
	}
}


/*=======================
강습관안내
=========================*/
/* ---------- 이용안내 ---------- */
.free-facil_bx .usage-time_ban {
	background: url(../images/sub/usage_time_img.jpg) no-repeat center center;
	background-size: cover;
	border-radius: 1.3rem;
	color: #fff;
}
@media (min-width: 769px) {
	.free-facil_bx .usage-time_ban {
		min-height: 305px;
	}
}


/*이미지 로고*/
.lesson_logo_img{
	height:23px;
	margin-left:0.5em;
}


/*=======================
 대관안내
=========================*/
/* ---------- 이용안내 ---------- */
.guide_step{}

.guide_step li{position:relative;}
.guide_step li::after{
	content: '';
	position: absolute;
	right: -2%;
	top: 50%;
	width: 15px;
	height: 15px;
	border-right: 3px solid #999;
	border-top: 3px solid #999;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.guide_step li:last-child::after{
	display:none;
}

.guide_step li div{
	border: 1px solid #e8e8e8;
	border-radius: 15px;
	height: 100%;
	box-shadow: 0px 10px 20px 0px rgb(28 35 69 / 4%);
}
.guide_step .font-weight-black{
	font-size:1.5em;
}
.guide_step li div span{
	display:block;
	font-size:1.5em;
}
.guide_step li div span::after{
	background: #25aa5a none repeat scroll 0 0;
	content: "";
	display: inline-block;
	height: 7px;
	width: 7px;
	border-radius: 100%;
	margin-left: 5px;
}

.subscript p{
	position:relative;
	margin-bottom:0.2em;
	padding-left:1em;
}
.subscript p::before{
	content: "*";
	color:#cb0100;
	font-weight:600;
	font-size:1.2em;
	margin-right: 5px;
	position:absolute;
	left:0;
	top:-0.15em;
}

@media (max-width: 576px) {
	.guide_step li span{
		display:inline-block !important;
	}
	.guide_step li::after{
		display:none;
	}

}


/* ---------- 대관신청 ---------- */
.gu_tab a{
	display:block;
    margin-bottom: -1px;
    border: 1px solid #25aa5a;
    margin-right: 5px;
	width:100%;
	padding:0.8rem 0.2rem;
    font-weight: 500;
	font-size:1.1rem;
	color:#25aa5a ;
}
.gu_tab .on a, .gu_tab a:hover{
	color: #fff;
	background:#25aa5a ;
    font-weight: 600;
	box-shadow: 10px 20px 25px -15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px){
	.border-md {
		padding: 1.5rem 0;
		border-top: 1px #ededed solid;
		border-bottom: 1px #ededed solid;
	}
}







/*=======================
 센터소개
=========================*/


/* ---------- 편의시설 ---------- */

.free-facil_bx .free-facil_ban {
	background: url(../images/sub/conven_facil_img.jpg) no-repeat center center;
	background-size: cover;
	border-radius: 1.3rem;
	color: #fff;
}
.free-facil_bx .b_txt_01 {
	font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.2rem;
}
.free-facil_bx .b_txt_01 span {
	color: #00ca34;
}
.free-facil_bx .b_txt_02 {
	font-family: 'Play';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-size: 0.8rem;
    opacity: .4;
}
.free-facil_bx .facil_con {
	border: 1px solid #ececec;
    border-radius: 1.3rem;
    box-shadow: 6px 6px 18px rgba(0,0,0,.05);
	padding: 0 2rem;
	height: 100%;
}
.free-facil_bx .facil_con.fc-01 {
	background: url(../images/sub/facil_icon_01.png) no-repeat 100% bottom;
}
.free-facil_bx .facil_con.fc-02 {
	background: url(../images/sub/facil_icon_02.png) no-repeat 100% bottom;
}
.free-facil_bx .facil_con.fc-03 {
	background: url(../images/sub/facil_icon_03.png) no-repeat 100% 80%;
}
.free-facil_bx .facil_con.fc-04 {
	background: url(../images/sub/facil_icon_04.png) no-repeat 100% bottom;
}
.free-facil_bx .con_tit_b {
	color: #000;
    font-size: 1.38rem;
    font-weight: 700;
    letter-spacing: -0.1rem;
/* 	display: flex;
	    align-items: center; */
}
.free-facil_bx .con_tit_b .num-b {
	color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #3b3b3b;
    text-align: center;
    display: inline-block;
    font-family: 'Play';
    font-size: 0.9rem;
    letter-spacing: 0;
	vertical-align: middle;
}
.con_tit_s {
	color: #000;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.1rem;
}
.con_st_01 > li:before {
	content:"";
	position: absolute;
	width: 4px;
	height: 4px;
	background: #000;
	left: 0;
	top: 0.5rem;
}
.con_st_01 > li {
	color: #4b4a4a;
    font-size: 1rem;
    position: relative;
    padding-left: 14px;
    font-weight: 500;
	margin: 6px 0;
	letter-spacing: -0.05rem;
	line-height: 1.3;
}
.con_st_02 > li {
	color: #4b4a4a;
    font-size: 0.95rem;
    position: relative;
	margin: 4px 0;
	letter-spacing: -0.05rem;
	line-height: 1.3;
    font-weight: 400;
}

@media (max-width: 768px) {
	.free-facil_bx .free-facil_ban {
		min-height: 160px;
	}
	.free-facil_bx .b_txt_01 {
		font-size: 2rem;
	}
	.free-facil_bx .facil_con.fc-01 {
		background-size: auto 8rem;
	}
	.free-facil_bx .facil_con.fc-02 {
		background-size: auto 9rem;
	}
	.free-facil_bx .facil_con.fc-03 {
		background-size: auto 7rem;
	}
	.free-facil_bx .facil_con.fc-04 {
		background-size: auto 8rem;
	}
}
@media (min-width: 769px) {
	.free-facil_bx .free-facil_ban {
		min-height: 305px;
	}
}


/* ---------- 직원소개 ---------- */

.staff_wrap .staff_con {
	padding: 1.5rem;
	/*border-right: 2px solid #24b75f;*/
	background: url("../images/common/bg01.jpg") repeat  50% 0px !important;
	border-radius: 1.2rem;
	height:100%
}
.staff_wrap .sff-img  {
	border-radius: 1.2rem;
	overflow:hidden;
	box-shadow: 10px 20px 25px -15px rgba(0, 0, 0, 0.2);
	width:140px;
}
.staff_con .in-txt01 span{
	color:#00880a;
	border-bottom:1px solid #00880a;
}
.staff_con .in-txt02{
	font-size:1.5rem;
	font-weight:600;
	margin-top:1.2rem;
}
.staff_con .in-txt03{
	color:#9b9b9b;
	margin-top:0.8rem;
}
@media (max-width: 500px) {
	.staff_wrap .sff-img  {
		width:120px;
	}
}
/* ---------- 오시는길 ---------- */

.map_info .text01 {
	font-size: 1.5rem;
    font-weight: 500;
}
.map_img_wrap a {
	margin: 0 0.5rem;
    display: inline-block;
    border-radius: 1.2rem;
    overflow: hidden;
}
.intro_map {
	background: url("../images/common/bg01.jpg") repeat  50% 0px !important;
}
@media (max-width: 500px) {
	.intro_map iframe { height: 300px !important; }
}

@media (min-width: 501px) {
	.intro_map iframe { height: 520px !important; }
}