/* style-c9.css */
/* ====================== C9 ====================== */
.c9{
  background:#ffffff;
  padding: clamp(80px, 9vw, 120px) 0;
  word-break: keep-all;
}

.c9__inner{
  max-width: 1360px;
  margin:0 auto;
  padding:0 24px;
}

.c9__top{
  display:flex;
  gap: 50px;
  margin-bottom:30px;
}

.c9__block{
  flex:1;
}

.c9__title{
  font-size: 38px;
  font-weight:800;
  margin-bottom: 28px;
}

.c9__rows{
  /* border-top:1px solid #e1e1e1; */
  width: 90%;
}

.c9__row{
  display:flex;
  border-top: 1px solid #e1e1e1;
  padding: 16px 30px;
  font-size: 19px;
  line-height:1.7;
  align-items: center;
}
.c9__block--left{
  flex:0 0 60%;
}

.c9__block--right{
  flex:0 0 40%;
}


.c9__label{
  flex: 0 0 110px;
  font-weight:700;
  font-size: 26px;
}

.c9__value{
  flex:1;
  color:#333;
  text-align: left;
  /* display:flex; */
  align-items:center;
  letter-spacing: -0.3px;
  flex-direction: column;
}


.c9__value--time{
  justify-content:flex-end;  
  text-align:right;
  right:auto;               
}
.c9__note{
  margin:10px 0 18px;
  font-size: 20px;
  color:#999;
  /* text-align: center; */
  text-align: center;
}

.c9__telbtn{
  display:inline-block;
  border:none;
  background: #f47321;
  color:#fff;
  font-size: 26px;
  font-weight:700;
  padding:12px 32px;
  border-radius: 100px;
  cursor:pointer;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.c9__map{
  margin-top:26px;
  border:1px solid #e2e2e2;
}

/* 지도 iframe */
.c9__map iframe{
  display:block;
  width:100%;
  height:420px;
}

@media (max-width: 900px){
  .c9__map iframe{
    height:320px;
  }
}

@media(max-width:768px){
  .c9__top{
    display:flex;
    gap: 50px;
    margin-bottom:30px;
    flex-direction: column;
  }
  .c9__rows{
    /* border-top:1px solid #e1e1e1; */
    width: 100%;
  }
  .c9__title{
    text-align: center;
  }
}

@media(max-width:410px){
  .c9__title{
    font-size: clamp(28px, 5vw, 52px) ;
  }
  .c9__row{
    font-size: 17px;
  }
  .c9__telbtn{
    font-size: 20px;
  }
  .c9__note{
    font-size: 16px;
  }
}

@media(max-width:360px){
  .c9 {
    padding: clamp(60px, 9vw, 120px) 0;
  }
  .c9__title{
    font-size: clamp(24px, 5vw, 52px) ;
  }
  .c9__label{
    flex: 0 0 90px;
    font-size: 17px;
  }
  .c9__row{
    font-size: 13px;
  }
  .c9__telbtn{
    font-size: 15px;
  }
}