@charset "utf-8";

/*----------------------------------------------------------------------------
   company
------------------------------------------------------------------------------*/
/* greeting */
#company #greeting {
  padding-top: 48px;
  
  p {
    span {
      color: #01c65f;
      font-weight: 700;
    }
  }
  
  .photo {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    
    img {
      width: calc(50% - 12px);
      height: auto;
    }
  }
  
  @media (max-width:640px) {  
    .photo {
      flex-wrap: wrap;

      img {
        width: 100%;
      }
    }
  }
}

/* profile */
#company #profile {
  padding: 84px 0;
  
  .table-content th {
    width: 11em;
  }
  
  .table-content strong {
    font-weight: 700;
  }
  
  @media (max-width:640px) {
    .table-content th {
      width: 7em;
      white-space: normal;
      font-size: 16px;
    } 
    .table-content td {
      white-space: normal;
      font-size: 16px;
    } 
  }
}



