﻿.Company {
  margin-top: 150px;
}



.Company-logo {
    width: 300px;           /* 로고 가로 크기 */
    margin: 100px auto 0;   /* 위 여백 100px, 좌우 가운데 정렬 */
}

.Company-logo img {
    width: 100%;            /* 부모 div 폭에 맞춤 */
    height: auto;           /* 세로 비율 유지 */
    display: block;         /* 중앙 배치용 */
}

.Company h1 {
  text-align: center;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.5;
  margin-top: 80px;
  margin-bottom: 100px;
  color: #5873fe;
}

.Company h2 {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  margin-top: -40px;
  margin-bottom: 100px;
}

.Company-text-2 {
  text-align: center;
  font-weight: 600;
}

.Company p{
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 100px;
  color: rgb(68, 68, 68);
}

/*표*/

.company-table {
    width: 750px;
    max-width: 90%;
    margin: 0 auto; /*가운데정렬*/
    border-collapse: collapse;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    margin-bottom: 130px;
}

/* 모든 td 기본 테두리 */
.company-table td {
    border-top: 1px solid #b3b3b3;
    border-bottom: 1px solid #e2e2e2;
    padding: 15px;
}

.company-table tbody tr:last-child td {
    border-top: 1px solid #b3b3b3;    /* 위 테두리 */
    border-bottom: 1px solid #b3b3b3; /* 아래 테두리 */
}

/* 왼쪽 열 세로선 제거 */
.company-table td:first-child {
    width: 30%;           /* 왼쪽 열 폭 지정, 원하는 퍼센트나 px 가능 */
    border-left: none;
    background-color: #f8f8f8;
}

/* 오른쪽 열 세로선 제거 */
.company-table td:last-child {
    width: 70%;           /* 오른쪽 열은 나머지 */
    border-right: none;
    background-color: #ffffff;
}


/*비전*/

.vision-section {
    width: 1100px;            /* 1200px보다 살짝 작게 */
    margin: 0 auto;           /* 가운데 정렬 */
    display: flex;
    justify-content: center;   /* 원 전체를 화면 가운데 정렬 */
    align-items: center;
    position: relative;
    margin-top: 100px;
}

.vision-circle {
    width: 250px;             /* 원 크기 */
    height: 250px;
    border: 2px solid #5873fe; /* 테두리만 */
    background-color: transparent; /* 배경 없음 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    margin-left: -20px;       /* 원 겹치게 */
    margin-bottom: 30px;
    z-index: 1;
    text-align: center;
}

/* 첫 번째 원은 겹치지 않게 */
.vision-circle:first-child {
    margin-left: 0;
}


.vision-highlight {
    font-size: 18px;       /* 영어 글씨 크기 조정 */
    color: #5873fe;        /* 영어만 색상 적용 */
    font-weight: 700;      /* 굵게 */
    display: block;
    margin-bottom: 5px;    /* 아래쪽 여백 */
}

.vision-highlight {
    font-size: 18px;       
    color: #5873fe;        
    font-weight: 700;      
    display: block;
    margin-bottom: 5px;    /* 아래쪽 여백 */
}


/*사훈*/
/* 비전 전체 묶음 */
.vision-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 130px;
}

/* 개별 비전 카드 */
.vision-card {
    width: 360px;
    height: 300px;              /* 카드 높이 지정 */
    padding: 40px 30px;
    border: 1px solid #b3b3b3;
    border-radius: 12px;
    background: #f8f8f8;
    display: flex;              /* Flexbox 적용 */
    flex-direction: column;     /* 세로 정렬 */
    justify-content: center;    /* 세로 중앙 정렬 */
    align-items: center;        /* 가로 중앙 정렬 */
    text-align: center;
    margin-top: -40px;
}
.vision-card  p{
    font-size: 100px;
}

/* 아이콘 박스 */
.vision-icon {
    width: 40%; /* 원하는 비율 */
    height: auto; /* 비율 유지 */
    border-radius: 12px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-icon img {
    width: 80%;
    height: auto;
    display: block;
}

/* 카드 제목 */
.vision-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

/* 카드 설명 */
.vision-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

/*비즈니스*/
/*사업개요*/

.Company-Business {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.cb-container {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cb-box {
  background: #f8f8f8;
  border: 1px solid #b3b3b3;
  border-radius: 14px;
  padding: 30px 10px;
  text-align: center;
  transition: all 0.25s ease;
}

/*.cb-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-4px);
}*/

/* 아이콘 이미지 */
.cb-icon img {
  width: 45px;
  height: auto;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.cb-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cb-box p {
  font-size: 18px;
  color: #666;
}

/*비즈니스-서비스*/

.Company-Business_Service {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.cb-container_Service {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3줄 */
  gap: 25px;
}

.cb-box_Service {
  background: #f8f8f8;
  border: 1px solid #b3b3b3;
  border-radius: 14px;
  padding: 40px 10px;
  text-align: center;
  transition: all 0.25s ease;
  line-height: 1.5;
}

.cb-box_Service h3{
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.cb-box_Service p{
  margin: 0;
  font-size: 15px;
  color: #555;
}




/*사업구조*/
.hub-structure {
  margin: 80px auto;
  text-align: center;
}

.hub-title h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
}

.hub-title .highlight {
  color: #5773ff;
  font-weight: 700;
}

.hub-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 60px auto 0;
  height: 420px;
  margin-top: 250px;
  margin-bottom: 250px;
}

.hub-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;        /* 원 형태 유지 */
  background: url('이미지경로.png') no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hub-center .hub-icon svg {
  width: 56px;
  height: 56px;
  fill: #fff;
  margin-bottom: 8px;
}

.hub-img {
  width: 70%;
  height: 70%;
  object-fit: cover;  /* 이미지 비율 유지하며 꽉 채움 */
}

.hub-node {
  width: 180px;
  height: 180px;
  padding: 16px 0;
  background: #f8f8f8;  
  border: 1px solid #b3b3b3;
  border-radius: 12px;
  position: absolute;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;        
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}


.node-top {
  top: -150px;       /* 기존 20px -> 0으로 조금 위로 */
  left: 50%;
  transform: translateX(-50%);
}

.node-top h3{
  text-align: center;
  margin: 0;
  color: #464646;
}

.hub-node p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.3;
}

.node-right {
  right: 0;     /* 기존 20px -> 0으로 더 오른쪽 */
  top: 50%;
  transform: translateY(-50%);
}

.node-bottom {
  bottom: -150px;    /* 기존 20px -> 0으로 더 아래 */
  left: 50%;
  transform: translateX(-50%);
}

.node-left {
  left: 0;      /* 기존 20px -> 0으로 더 왼쪽 */
  top: 50%;
  transform: translateY(-50%);
}

.hub-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 550px;   /* 원 지름 = 중앙 허브 + 노드 거리 */
  height: 550px;
  border: 0.5px solid #dddddd;
  border-radius: 50%; /* 원형 */
  transform: translate(-50%, -50%);
  z-index: 0;      /* 중앙 허브 뒤로 */
}


/*애니아이 사용 안경원 증가 추이*/

/* 그래프 전체 영역 */
.bar-chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 35px;
  padding: 40px 20px 60px;
  height: 350px;
  margin-top: 180px;
}

/* 단색 바 */
.bar {
  width: 45px;
  height: var(--h);
  background-color: var(--color);
  border-radius: 6px;
  position: relative;
  transition: .3s;
}

.bar:hover {
  transform: translateY(-6px);
  opacity: .9;
}

/* 연도 */
.bar span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 600;
  color: #444;
  
}



/* 그래프 아래 제목 ▼▼▼ */
.chart-title-bottom {
  margin-top: 5px;
  text-align: center;
  font-size: 18px;
  color: #929292;
}

/*애니아이를 선택한 체인*/



/*연혁*/


  /* 연혁 전체 영역 */
  section.company-history {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
    margin-bottom: 130px;
  }

  /* 세로 라인 (끊기지 않음) */
  section.company-history::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
  }

  /* 각 연혁 아이템 */
  section.company-history .history-item {
    position: relative;
    margin-bottom: 50px;
  }

  /* 연도 점 */
  section.company-history .history-item::before {
    content: "";
    position: absolute;
    left: -44.5px;
    top: 10px;
    width: 12px;
    height: 12px;
    background-color: #5873fe;
    border-radius: 50%;
  }

  /* 연도 */
  section.company-history .history-year {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #5873fe;
    line-height: 1; 
  }

  /* 리스트 */
  section.company-history .history-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.9;

  }

    section.company-history .history-list span {
     font-weight: 700;
     margin-right: 10px;

  }




/* 조직도 이미지 영역 */
.orgchart-img {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
  margin-top: -80px;
  margin-bottom: 130px;
}

/* 이미지 크기 */
.orgchart-img img {
  width: 70%;
  max-width: 1200px;
  height: auto;
  display: inline-block;
}


/*지도*/
.map-section {
  text-align: center;
  margin-top: -20px;
  margin-bottom: 60px;
}

.map-img-link {
  display: inline-block;   /* 이미지 크기만큼만 영역 생성 */
}

.map-img-link img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  display: block;
  margin: 0 auto;
}

.map-section .map-bottom {
  max-width: 504px;
  margin: 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }



.map-logo {
  height: 16px;
}


.map-text {
  margin-bottom: 130px;
}

.map-text h2{
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.map-text p{
  text-align: center;
  font-size: 18x;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 0.8;
}

.map-text span {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}