@charset "utf-8";

.sub_con h4 {font-size:2em;margin-bottom: 1em;}
.info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info h3 {font-size: var(--font-size50);margin-bottom: 3rem;font-weight: 600;}
.info ul{
    display: flex;
    margin-bottom: 1em;
    gap: 3rem;
}
.info li {
    /* margin-right: 3em; */
}

/* PC */ 
@media only screen and (min-width:1025px) and (max-width: 1500px)  {
}
/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (max-width:1024px) {
    .info ul {flex-wrap:wrap; gap:1rem}
    .info li {margin:0}
    .map_con iframe{height:40vh;}
}
/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media screen and (max-width:767px) {
	.info ul { flex-wrap: wrap; gap:.5rem;}
    .map_con iframe{height:50vh;}
	.info h3 {font-size: 2.2em;}
}

