/* osms only!! */

.info_tab_box_wrap{
  display: flex;
  padding: 4px;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: var(--Gray-200, #E1E4E8);
}
.info_tab_box_wrap > .info_tab_box {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 6px;
  color: var(--Gray-600, #4F5459);
}
/* 
.info_tab_box_wrap > .info_tab_box:hover{
  background: #333;
  color: #fff;
}
 */
.info_tab_box_wrap > .info_tab_box_on{
  background: var(--Base-white, #FFF);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.10);
  color: var(--Gray-900, #161718);
}

.info_tab{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}

.info_tab_block{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.info_tab_block_title{
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.info_tab_block_content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.info_tab_block_content2{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.info_tab_item_box_wrap{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.info_tab_item_box{
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #CFD4D8);
  background: var(--Base-white, #FFF);
}

.info_tab_button{
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #CFD4D8);
  background: var(--Gray-50, #F3F5F7);
}

.info_tab_info_box{
  display: flex;
  padding: 16px 24px 24px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 8px;
  background: var(--Gray-50, #F3F5F7);
}


.info_history_block{
  display: flex;
  padding-bottom: 80px;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
}

.info_history_block:not(:last-of-type){
  border-bottom: 1px solid var(--Gray-200, #E1E4E8);
}

.info_hisory_wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}

.info_history{
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  color: var(--Gray-800, #26282A);
}

.info_history_content{
  display: flex;
  padding: 5px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}

.info_history_data{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.info_history_data ul{
  margin: 0;
  padding-left: 30px;
  list-style: disc;
}

.info_history_data ul > li:not(:last-of-type){
  margin-bottom: 12px;
}

.info_history_data .month{
  color: #D41E25;
  text-align: right;
  width: 30px;
}

.info_history_data .data{
  width: calc(100% - 30px - 12px);
}



/* 조직도 */
.org_chart{
  display:flex;
  flex-direction: column;
  margin: 60px auto;
}

.org_chart .director_wrap{
  display:flex;
  justify-content: center;
  gap: 56px;
}

.org_chart .director {
  color: #fff;
  border-radius: 999px;
  border: 1px solid var(--Contrast-20, rgba(17, 18, 19, 0.20));
  background: #B71A20;
  
  display: flex;
  width: 240px;
  height: 120px;
  padding: 39px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.org_chart .director_wrap > :first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 56px;
  border-top: 1.5px dashed #99A1A8;
  transform: translateX(-50%);
}

.org_chart .manager {
  color: #fff;
  border-radius: 999px;
  border: 1px solid var(--Contrast-20, rgba(17, 18, 19, 0.20));
  opacity: 0.99;
  background: var(--Gray-800, #26282A);

  width: 328px;
  height: 60px;
  margin: 40px auto 40px;
  position: relative;  
  display: flex;
  padding: 18px 0;
  justify-content: center;
  align-items: center;
}


.org_chart .manager::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  height: 40px;
  border-left: 1.5px dashed #99A1A8;
  transform: translateX(-50%);
}

 .org_chart .manager::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -100px;
  height: 100px;
  border-left: 1.5px dashed #99A1A8;
  transform: translateX(-50%);
}

.org_chart .line_box {
  display:flex;
}

.org_chart .blank{
  content: "";
  width: 135px;
  height: 40px;
}

.org_chart .line{
  content: "";
  flex: 1;
  height: 40px;
  border: 1.5px solid #99A1A8;
  border-radius: 28px 28px 0 0;
  border-top: 1.5px dashed var(--Gray-400, #99A1A8);
  border-right: 1.5px dashed var(--Gray-400, #99A1A8);
  border-left: 1.5px dashed var(--Gray-400, #99A1A8);
  border-bottom: none;
  
}

.org_chart .departments {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.org_chart .dept {
  width: 270px;
  height: 70px;
  border-radius: 10px;
  border: 1px solid var(--Contrast-10, rgba(17, 18, 19, 0.10));
  background: #FDEDEE;
  position: relative;
  color: rgba(183, 26, 32, 1);
  
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
}


/* 가운데 dept 세로 점선 */
.org_chart .dept:not(:first-child):not(:last-child)::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  height: 40px;
  border-left: 1.5px dashed #99A1A8;
  transform: translateX(-50%);
  z-index: 999;
}

.org_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.org_table .main_viewType1 col:first-child {
  width: 18%;
}

.org_table .main_viewType1 col:last-child {
  width: 21%;
}

.org_table .col_work {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.org_table .col_work ul{
  margin: 0;
  padding-left: 25px;
  list-style: disc;
}

.org_table .col_tel .tel_wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

.org_tab_block {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-self: stretch;
  justify-content: space-between;
}

.org_tab {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.org_tab_sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.org_tab_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.tab_bar {
  content: "";
  width: 4px;
  height: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 999px;
  background: var(--Gray-300, #CFD4D8);
}

/* 시설안내*/
.facility_card_block{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, max-content));
  row-gap: 40px;
  justify-content: space-between;
}

.facility_card{
  display: flex;
  min-width: 340px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  
  overflow: hidden;
}

.facility_card_image{
  height: 196px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.facility_card_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility_card_text_block{
  display: flex;
  padding: 0 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;  
}

.facility_card_text_wrap{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.facility_card_text_meta_field{
  color: var(--Gray-500, #6C747A);
}

/* 일반과정(평생스쿨)*/
.layout_flex_column_gap_100{
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.layout_flex_column_gap_80{
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.layout_flex_column_gap_60{
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.layout_flex_column_gap_40{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.layout_flex_column_gap_16{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layout_flex_column_gap_24{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.layout_flex_column_gap_12{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.layout_flex_column_gap_8{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layout_flex_column_gap_6{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.layout_flex_info_card_gap_12{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  align-self: stretch;
}

.lifelong_school_info_card{
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #CFD4D8);
}

.lifelong_school_info_card_title{
  display: flex;
  padding: 16px;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid var(--Gray-200, #E1E4E8);
  background: var(--Gray-50, #F3F5F7);
}

.lifelong_school_info_card_content{
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  
  min-width: 0;
  word-break: break-all;
}

.course_chage_alert{
  color: var(--Gray-600, #4F5459);
  
}

/* 일반과정(평생스쿨)*/
.card_text_align_center{
  text-align: center;
}

/* 총장명의 민간자격 */
.hyperlink_text {
  color: var(--Blue-600, #1570EF);
}

.cert_table .main_viewType1 col:first-child {
  width: 26%;
}

.cert_table .main_viewType1 col:nth-child(2) {
  width: 16%;
}

.cert_table .main_viewType1 col:nth-child(3) {
  width: 16%;
}

.cert_table .main_viewType1 col:last-child {
  width: 42%;
}

/*    요양보호사 교육     */

.care_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}

.care_info_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.care_info_block_title {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.care_info_block_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.care_info_block_content2{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.care_info_item_box_wrap{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.care_info_item_box{
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #CFD4D8);
  background: var(--Base-white, #FFF);
  text-align: center;
}

.caregiver_data ul{
  margin: 0;
  padding-left: 30px;
  list-style: disc;
}

.caregiver_data .list{
	margin-top: 40px;
}

.caregiver_data .data{
	margin-top: 8px;
	margin-bottom: 8px;
}

.data a {
  color: var(--Blue-600, #1570EF);
  text-decoration: underline;
}
.caregiver_data ul > li:not(:last-of-type){
  margin-bottom: 12px;
}

table.care_table {
  position: relative;
  clear: both;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #333;
  border-spacing: 0;
}

table.care_table th,
table.care_table td {
  padding: 16px;
  border-right: 1px solid var(--Gray-200, #E1E4E8);
  border-bottom: 1px solid var(--Gray-200, #E1E4E8);
  border-collapse: collapse;
}

table.care_table th {
  background: var(--Gray-50, #F3F5F7);
}

table.care_table th:last-child,
table.care_table td:last-child {
  border-right: none;
}

table.care_table select {
  border: 1px solid var(--Gray-200, #E1E4E8);
  padding: 4px 5px;
}

table.care_table input[type=text],
table.care_table input[type=number],
table.care_table textarea {
  border: 1px solid var(--Gray-200, #E1E4E8);
  padding: 3.5px 5px;
}



table.edu_table {
	position: relative;
  clear: both;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--Gray-800, #26282A);
  border-spacing: 0;
}

table.edu_table th {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--Gray-200, #E1E4E8);
	border-bottom: 1px solid var(--Gray-200, #E1E4E8);
	background: var(--Gray-50, #F3F5F7);
}

table.edu_table td {
	text-align: center;
	padding: 16px;
	gap: 10px;
	align-self: stretch;
  vertical-align: middle;
  border-right: 1px solid var(--Gray-200, #E1E4E8);
	border-bottom: 1px solid var(--Gray-200, #E1E4E8);
	background: var(--Base-white, #FFF);
}

table.edu_table th:last-child,
table.edu_table td:last-child {
  border-right: none;
}

table.edu_table tbody td:last-child {
  text-align: left;
}

table.edu_table tbody tr td[colspan="2"] {
  text-align: center;
}

table.edu_table tbody td.time {
  text-align: center;
}

.caregiver_file{
	width: 100%;
	margin-top: 12px;
	display: flex;
	padding: 12px 16px;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex: 1 0 0;
}

.caregiver_file .care_info_button {
  flex: 1;
}

.care_info_button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #CFD4D8);
  background: var(--Gray-50, #F3F5F7);
}

/*    BLS(심폐소생) 교육    */

.bls_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}

.bls_info_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.bls_info_block_title{
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.bls_info_block_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

table.bls_table {
  position: relative;
  clear: both;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--Gray-800, #26282A);
  border-spacing: 0;
}

table.bls_table th,
table.bls_table td {
  padding: 16px;
  border-right: 1px solid var(--Gray-200, #E1E4E8);
  border-bottom: 1px solid var(--Gray-200, #E1E4E8);
  border-collapse: collapse;
}

table.bls_table th {
  background: var(--Gray-50, #F3F5F7);
}

table.bls_table th.row {
  background: var(--Base-white, #FFF);
}

table.bls_table th:last-child,
table.bls_table td:last-child {
  border-right: none;
}

table.bls_table select {
  border: 1px solid var(--Gray-200, #E1E4E8);
  padding: 4px 5px;
}

table.bls_table input[type=text],
table.bls_table input[type=number],
table.bls_table textarea {
  border: 1px solid var(--Gray-200, #E1E4E8);
  padding: 3.5px 5px;
}

.bls_info_materials {
	display: flex;
	flex-direction: column;
  gap: 8px;
  align-self: stretch;
}

.bls_info_title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bls_info_materials .training_materials_image_wrap {
	display: flex;
	margin-top: 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  height: 300px;
}

.bls_info_materials .training_materials_image_wrap .training_materials_image {
  width: 100%;
  height: 100%;
  display: block;
}

/* 학점은행제 */

.credit_bank_block{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.credit_bank_block_title{
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.credit_bank_block_content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  align-self: stretch;
}

.credit_bank_block_icontent{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.degree_content_wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.degree_content_box{
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}

.black_dot_img {
  display: flex;
  width: 26px;
  height: 26px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.operate_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.operate_wrap_title {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.operate_wrap_content2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.nursing_title_wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.nursing_title{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.rectangle_wrap{
  display: flex;
  padding: 5px 4px 5px 0;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.black_dot_pos{
  display: flex;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
}

.edu_content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.nursing_content_wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}

.oper_table {
  display: inline-table;
}

.oper_mobile_table{
  display: none;
}

.credit_col {
  display: none; 
}

.desktop_only { display: table; }
.mobile_only  { display: none; }


table.main_viewType1{
  position: relative;
  clear: both;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #333;
  border-spacing: 0;
}

/*학습가이드*/

.study_guide_block{
  display: flex;
  flex-direction: column;
  gap: 40px
}

.study_guide_block .study_guide_link{
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  
  border-radius: 6px;
  border: 1px solid var(--Gray-300, #CFD4D8);
}

.study_guide_li_disc ul{
  list-style: disc;
  margin-block-start: 0px;
  margin-block-end: 0px;
}

table.study_guide_table {
  position: relative;
  clear: both;
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--Gray-800, #26282A);
  border-spacing: 0;
}

table.study_guide_table th {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--Gray-200, #E1E4E8);
  border-bottom: 1px solid var(--Gray-200, #E1E4E8);
  background: var(--Gray-50, #F3F5F7);
}

table.study_guide_table td {
  text-align: center;
  padding: 16px;
  gap: 10px;
  align-self: stretch;
  vertical-align: middle;
  border-right: 1px solid var(--Gray-200, #E1E4E8);
  border-bottom: 1px solid var(--Gray-200, #E1E4E8);
  background: var(--Base-white, #FFF);
}

table.study_guide_table th:last-child {
  border-right: none;
}


.main_content_box .box_thumbnail {
  background-position: top center;
}

/* iPad Air : 820px */
@media (max-width: 1180px){
  
  .facility_card_block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .facility_card_image {
    height: 297px;
  }
}

/* iPad Pro : 1024px */
@media screen and (max-width: 1024px){
  .org_chart .director_wrap{
    gap: 12px;
  }
  
  .org_chart .director {
    width: 158px;
    height: 100px;
    padding: 32px 0;
  }
  
  .org_chart .director_wrap > :first-child::after {
    width: 12px;
  }
  
  .org_chart .manager {
    margin: 28px auto 28px;
    width: 328px;
  }
  
  .org_chart .manager::after {
    bottom: -28px;
    height: 28px;
  }
  
  .org_chart .manager::before {
    top: -78px;
    height: 78px;
  }
  
  .org_chart .line_box {
    display: none;
  }
  
  .org_chart .dept:not(:first-child):not(:last-child)::before {
    border-left: 0px;
  }
  
  .org_chart .departments{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .org_chart .dept {
    width: 328px;
  }
  
  /* 헤더 제거 */
  .org_table {
    table-layout: auto;
  }

  .org_table:not(.mobile_only) colgroup {
    display: none;
  }
  
  .org_table thead {
    display: none;
  }

  .org_table ,
  .org_table:not(.mobile_only) tbody,
  .org_table:not(.mobile_only) tr {
    display: block;
    width: 100%;
  }

  .org_table:not(.mobile_only) tr {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
  }

  .org_table table.main_viewType1 td {
    padding: 12px;
    border-right: none;
  }

  .org_table:not(.mobile_only) .col_type {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .org_table .col_work {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .org_table .col_tel {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
  
  .facility_card_block {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(
      auto-fit,
      minmax(min(100%, 328px), 1fr)
    );
    justify-items: center;
  }
  
  .facility_card_image {
    height: 184px;
  }
  
  .facility_card{
    min-width: 328px;
  }
  
  .layout_flex_info_card_gap_12{
    flex-direction: column;
  }
  
  .desktop_only { display: none; }
  .mobile_only  { display: table; }

  table.edu_table td {
    padding: 12px 8px;
    font-size: 13px;
    word-break: keep-all;
    vertical-align: middle;
    border-right: 1px solid var(--Gray-200, #E1E4E8);
    border-bottom: 1px solid var(--Gray-200, #E1E4E8);
  }

  table.edu_table td.col_division {
    background: var(--Gray-50, #F3F5F7);
    text-align: center;
    border-right: none;
  }

  table.edu_table td.col_subject {
    background: var(--Base-white, #FFF);
    text-align: center;
  }

  table.edu_table td:last-child {
    text-align: left;
    border-right: none;
  }

  table.edu_table td[colspan="2"]:not(.col_division) {
    text-align: center;
    border-right: none;
  }
	
	table.edu_table tbody td.time {
		border-left: 1px solid var(--Gray-200, #E1E4E8);
  	text-align: center;
	}
	
	 .caregiver_data .caregiver_file {
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }

  .caregiver_data .caregiver_file .care_info_button {
    width: 100%;
  }
  
  table.care_table th {
  	width: 45%;
  }

  table.bls_table th {
  	width: 40%;
  }
  
  /* ===== 모바일 운영과목 테이블 ===== */
  .oper_mobile_table tbody td:first-child {
    text-align: center;
  }
  
  .col-subject{
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
    align-self: stretch;
  }
  
  .oper_table {
    display: none;
  }
  
  .oper_mobile_table{
    display: inline-table;
  }
  
  .credit_row {
    display: none;
  }
  
  .credit_col {
    display: block; 
  }
  
  .main_content_wrap{
    margin: 60px 16px 120px 16px;
  }
  .study_guide_block .study_guide_link{
    gap: 10px;
  }
  
  .study_guide_gap_12{
    gap: 12px;
  }
  
  .study_guide_gap_28{
    gap: 28px;
  }
  
  table.study_guide_table td div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  
  table.study_guide_table td:first-child div {
    justify-content: flex-start;
  }
  
  table.study_guide_table td.col_division {
    background: var(--Gray-50, #F3F5F7);
    text-align: center;
    border-right: none;
  }
  
  table.study_guide_table td.no_right_border {
    border-right: none;
  }
  
}
/* iPad Air : 820px */
@media screen and (max-width: 820px){
  .study_guide_link_wrap{
    display: flex;
    flex-direction: column;
  }
}
/* iPad Mini : 768px */
@media screen and (max-width: 768px) {
  
}
@media screen and (max-width: 640px) {
  .info_history_block{
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 480px) {
  .info_tab_item_box_wrap{
    flex-direction: column;
  }
}